Skip to content

Commit 1b38e45

Browse files
committed
Update xcframework for Xcode 15.2 (5.3.4.0-2024.03.25-2ceb3dd37)
1 parent 645309b commit 1b38e45

File tree

55 files changed

+858
-542
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+858
-542
lines changed

Frameworks/PlanetKit.xcframework/Info.plist

+18-8
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
<key>AvailableLibraries</key>
66
<array>
77
<dict>
8+
<key>BinaryPath</key>
9+
<string>PlanetKit.framework/PlanetKit</string>
810
<key>LibraryIdentifier</key>
911
<string>ios-arm64</string>
1012
<key>LibraryPath</key>
@@ -17,8 +19,10 @@
1719
<string>ios</string>
1820
</dict>
1921
<dict>
22+
<key>BinaryPath</key>
23+
<string>PlanetKit.framework/PlanetKit</string>
2024
<key>LibraryIdentifier</key>
21-
<string>macos-arm64_x86_64</string>
25+
<string>tvos-arm64_x86_64-simulator</string>
2226
<key>LibraryPath</key>
2327
<string>PlanetKit.framework</string>
2428
<key>SupportedArchitectures</key>
@@ -27,36 +31,42 @@
2731
<string>x86_64</string>
2832
</array>
2933
<key>SupportedPlatform</key>
30-
<string>macos</string>
34+
<string>tvos</string>
35+
<key>SupportedPlatformVariant</key>
36+
<string>simulator</string>
3137
</dict>
3238
<dict>
39+
<key>BinaryPath</key>
40+
<string>PlanetKit.framework/Versions/A/PlanetKit</string>
3341
<key>LibraryIdentifier</key>
34-
<string>tvos-arm64</string>
42+
<string>macos-arm64_x86_64</string>
3543
<key>LibraryPath</key>
3644
<string>PlanetKit.framework</string>
3745
<key>SupportedArchitectures</key>
3846
<array>
3947
<string>arm64</string>
48+
<string>x86_64</string>
4049
</array>
4150
<key>SupportedPlatform</key>
42-
<string>tvos</string>
51+
<string>macos</string>
4352
</dict>
4453
<dict>
54+
<key>BinaryPath</key>
55+
<string>PlanetKit.framework/PlanetKit</string>
4556
<key>LibraryIdentifier</key>
46-
<string>tvos-arm64_x86_64-simulator</string>
57+
<string>tvos-arm64</string>
4758
<key>LibraryPath</key>
4859
<string>PlanetKit.framework</string>
4960
<key>SupportedArchitectures</key>
5061
<array>
5162
<string>arm64</string>
52-
<string>x86_64</string>
5363
</array>
5464
<key>SupportedPlatform</key>
5565
<string>tvos</string>
56-
<key>SupportedPlatformVariant</key>
57-
<string>simulator</string>
5866
</dict>
5967
<dict>
68+
<key>BinaryPath</key>
69+
<string>PlanetKit.framework/PlanetKit</string>
6070
<key>LibraryIdentifier</key>
6171
<string>ios-arm64_x86_64-simulator</string>
6272
<key>LibraryPath</key>
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,16 @@
1+
// Copyright 2015 LINE Plus Corporation
12
//
2-
// BCCUtils.h
3-
// BroadcastClient
3+
// LINE Plus Corporation licenses this file to you under the Apache License,
4+
// version 2.0 (the "License"); you may not use this file except in compliance
5+
// with the License. You may obtain a copy of the License at:
46
//
5-
// Created by LinePlus on 2015. 11. 16..
6-
// Copyright © 2015년 LINE. All rights reserved.
7+
// https://www.apache.org/licenses/LICENSE-2.0
78
//
8-
9-
//#if DEBUG_MENU_ENABLED
10-
11-
#define ColorFromRGB(rgbValue) [UIColor colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 green:((float)((rgbValue & 0xFF00) >> 8))/255.0 blue:((float)(rgbValue & 0xFF))/255.0 alpha:1.0]
12-
#define BCCLocalizedString(key) NSLocalizedStringFromTable(key, @"Localizable", nil)
13-
#define BCCDocumentURL() [[[NSFileManager defaultManager] URLsForDirectory:NSDocumentDirectory inDomains:NSUserDomainMask] lastObject];
14-
15-
#define SYSTEM_VERSION_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedSame)
16-
#define SYSTEM_VERSION_GREATER_THAN(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedDescending)
17-
#define SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedAscending)
18-
#define SYSTEM_VERSION_LESS_THAN(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedAscending)
19-
#define SYSTEM_VERSION_LESS_THAN_OR_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedDescending)
20-
21-
#define SWAP(x, y, T) { T SWAP = x; x = y; y = SWAP; }
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11+
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12+
// License for the specific language governing permissions and limitations
13+
// under the License.
2214

2315
static NSString *const BCCUtilsKeyWWANSent = @"WWANSent";
2416
static NSString *const BCCUtilsKeyWWANReceived = @"WWANReceived";
@@ -36,11 +28,6 @@ static NSString *const BCCUtilsKeyWiFiReceived = @"WiFiReceived";
3628

3729
+ (BCCUtils *)sharedInstance NS_SWIFT_NAME(shared());
3830

39-
@property (class, readonly) NSString *thumbnailDirectoryPath;
40-
41-
+ (BOOL)isRecorderAlreadyLaunchedOnce;
42-
43-
+ (uint64_t)getFreeDiskspace;
4431
- (Float32)getCpuUsage;
4532
- (uint64_t)getMemoryUsage;
4633
- (NSDictionary*)getNetworkUsage;
@@ -52,6 +39,3 @@ static NSString *const BCCUtilsKeyWiFiReceived = @"WiFiReceived";
5239
+ (uint64_t)getTickCount;
5340

5441
@end
55-
56-
extern void dispatch_repeated(double intervalInSeconds, dispatch_queue_t queue, void(^work)(BOOL *stop));
57-
//#endif

Frameworks/PlanetKit.xcframework/ios-arm64/PlanetKit.framework/Headers/PlanetKit-Swift.h

+21-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#if 0
22
#elif defined(__arm64__) && __arm64__
3-
// Generated by Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100)
3+
// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5)
44
#ifndef PLANETKIT_SWIFT_H
55
#define PLANETKIT_SWIFT_H
66
#pragma clang diagnostic push
@@ -42,12 +42,18 @@
4242
#include <string.h>
4343
#endif
4444
#if defined(__cplusplus)
45-
#if __has_include(<ptrauth.h>)
45+
#if defined(__arm64e__) && __has_include(<ptrauth.h>)
4646
# include <ptrauth.h>
4747
#else
48+
#pragma clang diagnostic push
49+
#pragma clang diagnostic ignored "-Wreserved-macro-identifier"
4850
# ifndef __ptrauth_swift_value_witness_function_pointer
4951
# define __ptrauth_swift_value_witness_function_pointer(x)
5052
# endif
53+
# ifndef __ptrauth_swift_class_method_pointer
54+
# define __ptrauth_swift_class_method_pointer(x)
55+
# endif
56+
#pragma clang diagnostic pop
5157
#endif
5258
#endif
5359

@@ -246,6 +252,17 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
246252
#else
247253
# define SWIFT_NOEXCEPT
248254
#endif
255+
#if !defined(SWIFT_C_INLINE_THUNK)
256+
# if __has_attribute(always_inline)
257+
# if __has_attribute(nodebug)
258+
# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug))
259+
# else
260+
# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline))
261+
# endif
262+
# else
263+
# define SWIFT_C_INLINE_THUNK inline
264+
# endif
265+
#endif
249266
#if defined(_WIN32)
250267
#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
251268
# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport)
@@ -4110,12 +4127,12 @@ SWIFT_CLASS("_TtC9PlanetKit20PlanetKitVolumeLevel")
41104127
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
41114128
@end
41124129

4113-
#endif
4114-
#if defined(__cplusplus)
41154130
#endif
41164131
#if __has_attribute(external_source_symbol)
41174132
# pragma clang attribute pop
41184133
#endif
4134+
#if defined(__cplusplus)
4135+
#endif
41194136
#pragma clang diagnostic pop
41204137
#endif
41214138

Binary file not shown.

Frameworks/PlanetKit.xcframework/ios-arm64/PlanetKit.framework/Modules/PlanetKit.swiftmodule/arm64-apple-ios.swiftinterface

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// swift-interface-format-version: 1.0
2-
// swift-compiler-version: Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100)
3-
// swift-module-flags: -target arm64-apple-ios11.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name PlanetKit
2+
// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5)
3+
// swift-module-flags: -target arm64-apple-ios12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name PlanetKit
44
// swift-module-flags-ignorable: -enable-bare-slash-regex
55
import AVFoundation
66
import CallKit
@@ -17,6 +17,7 @@ import SystemConfiguration
1717
import UIKit
1818
import _Concurrency
1919
import _StringProcessing
20+
import _SwiftConcurrencyShims
2021
@objc public class PlanetKitCallKitParam : ObjectiveC.NSObject {
2122
@objc final public let appName: Swift.String?
2223
@objc final public let callerName: Swift.String

Frameworks/PlanetKit.xcframework/ios-arm64/PlanetKit.framework/Modules/module.modulemap

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
framework module PlanetKit {
22
umbrella header "PlanetKit.h"
3-
43
export *
4+
55
module * { export * }
66
}
77

Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>NSPrivacyTracking</key>
6+
<false/>
7+
<key>NSPrivacyTrackingDomains</key>
8+
<array/>
9+
<key>NSPrivacyCollectedDataTypes</key>
10+
<array>
11+
<dict>
12+
<key>NSPrivacyCollectedDataType</key>
13+
<string>NSPrivacyCollectedDataTypeUserID</string>
14+
<key>NSPrivacyCollectedDataTypeLinked</key>
15+
<true/>
16+
<key>NSPrivacyCollectedDataTypeTracking</key>
17+
<false/>
18+
<key>NSPrivacyCollectedDataTypePurposes</key>
19+
<array>
20+
<string>NSPrivacyCollectedDataTypePurposeAppFunctionality</string>
21+
</array>
22+
</dict>
23+
</array>
24+
<key>NSPrivacyAccessedAPITypes</key>
25+
<array>
26+
<dict>
27+
<key>NSPrivacyAccessedAPIType</key>
28+
<string>NSPrivacyAccessedAPICategorySystemBootTime</string>
29+
<key>NSPrivacyAccessedAPITypeReasons</key>
30+
<array>
31+
<string>35F9.1</string>
32+
</array>
33+
</dict>
34+
<dict>
35+
<key>NSPrivacyAccessedAPIType</key>
36+
<string>SPrivacyAccessedAPICategoryFileTimestamp</string>
37+
<key>NSPrivacyAccessedAPITypeReasons</key>
38+
<array>
39+
<string>C617.1</string>
40+
</array>
41+
</dict>
42+
</array>
43+
</dict>
44+
</plist>
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,16 @@
1+
// Copyright 2015 LINE Plus Corporation
12
//
2-
// BCCUtils.h
3-
// BroadcastClient
3+
// LINE Plus Corporation licenses this file to you under the Apache License,
4+
// version 2.0 (the "License"); you may not use this file except in compliance
5+
// with the License. You may obtain a copy of the License at:
46
//
5-
// Created by LinePlus on 2015. 11. 16..
6-
// Copyright © 2015년 LINE. All rights reserved.
7+
// https://www.apache.org/licenses/LICENSE-2.0
78
//
8-
9-
//#if DEBUG_MENU_ENABLED
10-
11-
#define ColorFromRGB(rgbValue) [UIColor colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 green:((float)((rgbValue & 0xFF00) >> 8))/255.0 blue:((float)(rgbValue & 0xFF))/255.0 alpha:1.0]
12-
#define BCCLocalizedString(key) NSLocalizedStringFromTable(key, @"Localizable", nil)
13-
#define BCCDocumentURL() [[[NSFileManager defaultManager] URLsForDirectory:NSDocumentDirectory inDomains:NSUserDomainMask] lastObject];
14-
15-
#define SYSTEM_VERSION_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedSame)
16-
#define SYSTEM_VERSION_GREATER_THAN(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedDescending)
17-
#define SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedAscending)
18-
#define SYSTEM_VERSION_LESS_THAN(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedAscending)
19-
#define SYSTEM_VERSION_LESS_THAN_OR_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedDescending)
20-
21-
#define SWAP(x, y, T) { T SWAP = x; x = y; y = SWAP; }
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11+
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12+
// License for the specific language governing permissions and limitations
13+
// under the License.
2214

2315
static NSString *const BCCUtilsKeyWWANSent = @"WWANSent";
2416
static NSString *const BCCUtilsKeyWWANReceived = @"WWANReceived";
@@ -36,11 +28,6 @@ static NSString *const BCCUtilsKeyWiFiReceived = @"WiFiReceived";
3628

3729
+ (BCCUtils *)sharedInstance NS_SWIFT_NAME(shared());
3830

39-
@property (class, readonly) NSString *thumbnailDirectoryPath;
40-
41-
+ (BOOL)isRecorderAlreadyLaunchedOnce;
42-
43-
+ (uint64_t)getFreeDiskspace;
4431
- (Float32)getCpuUsage;
4532
- (uint64_t)getMemoryUsage;
4633
- (NSDictionary*)getNetworkUsage;
@@ -52,6 +39,3 @@ static NSString *const BCCUtilsKeyWiFiReceived = @"WiFiReceived";
5239
+ (uint64_t)getTickCount;
5340

5441
@end
55-
56-
extern void dispatch_repeated(double intervalInSeconds, dispatch_queue_t queue, void(^work)(BOOL *stop));
57-
//#endif

0 commit comments

Comments
 (0)