@pinwheel/react-native-pinwheel 3.2.1 → 3.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -0
- package/RNPinwheelSDK.podspec +0 -1
- package/android/src/main/java/com/rtnpinwheel/Pinwheel.kt +1 -1
- package/ios/RTNPinwheelView.h +7 -5
- package/ios/RTNPinwheelView.mm +2 -2
- package/package.json +1 -1
- package/PinwheelLinkSDKObjC/ObjCWrapper.xcframework/Info.plist +0 -44
- package/PinwheelLinkSDKObjC/ObjCWrapper.xcframework/ios-arm64/ObjCWrapper.framework/Headers/ObjCWrapper.h +0 -18
- package/PinwheelLinkSDKObjC/ObjCWrapper.xcframework/ios-arm64/ObjCWrapper.framework/Headers/PinwheelVCWrapper.h +0 -14
- package/PinwheelLinkSDKObjC/ObjCWrapper.xcframework/ios-arm64/ObjCWrapper.framework/Info.plist +0 -0
- package/PinwheelLinkSDKObjC/ObjCWrapper.xcframework/ios-arm64/ObjCWrapper.framework/Modules/module.modulemap +0 -6
- package/PinwheelLinkSDKObjC/ObjCWrapper.xcframework/ios-arm64/ObjCWrapper.framework/ObjCWrapper +0 -0
- package/PinwheelLinkSDKObjC/ObjCWrapper.xcframework/ios-arm64/ObjCWrapper.framework/README.md +0 -15
- package/PinwheelLinkSDKObjC/ObjCWrapper.xcframework/ios-arm64/ObjCWrapper.framework/_CodeSignature/CodeResources +0 -146
- package/PinwheelLinkSDKObjC/ObjCWrapper.xcframework/ios-arm64_x86_64-simulator/ObjCWrapper.framework/Headers/ObjCWrapper.h +0 -18
- package/PinwheelLinkSDKObjC/ObjCWrapper.xcframework/ios-arm64_x86_64-simulator/ObjCWrapper.framework/Headers/PinwheelVCWrapper.h +0 -14
- package/PinwheelLinkSDKObjC/ObjCWrapper.xcframework/ios-arm64_x86_64-simulator/ObjCWrapper.framework/Info.plist +0 -0
- package/PinwheelLinkSDKObjC/ObjCWrapper.xcframework/ios-arm64_x86_64-simulator/ObjCWrapper.framework/Modules/module.modulemap +0 -6
- package/PinwheelLinkSDKObjC/ObjCWrapper.xcframework/ios-arm64_x86_64-simulator/ObjCWrapper.framework/ObjCWrapper +0 -0
- package/PinwheelLinkSDKObjC/ObjCWrapper.xcframework/ios-arm64_x86_64-simulator/ObjCWrapper.framework/README.md +0 -15
- package/PinwheelLinkSDKObjC/ObjCWrapper.xcframework/ios-arm64_x86_64-simulator/ObjCWrapper.framework/_CodeSignature/CodeResources +0 -146
package/README.md
CHANGED
|
@@ -101,6 +101,14 @@ Callback for all significant events that happen during the modal flow. See all p
|
|
|
101
101
|
| -------- | -------- |
|
|
102
102
|
| function | No |
|
|
103
103
|
|
|
104
|
+
### `handleInsets`
|
|
105
|
+
|
|
106
|
+
Determines whether the SDK should respond to window insets on Android. This allows the modal to adjust automatically for areas such as the display cutout and system bars when displaying content [edge-to-edge](https://developer.android.com/develop/ui/views/layout/edge-to-edge).
|
|
107
|
+
|
|
108
|
+
| Type | Required | Default |
|
|
109
|
+
| ------- | -------- | ------- |
|
|
110
|
+
| boolean | No | true |
|
|
111
|
+
|
|
104
112
|
## Running The Example App Locally
|
|
105
113
|
|
|
106
114
|
You may want to run the example app locally to get started.
|
package/RNPinwheelSDK.podspec
CHANGED
|
@@ -59,7 +59,7 @@ class Pinwheel : FrameLayout {
|
|
|
59
59
|
private fun createFragment() {
|
|
60
60
|
Handler(Looper.getMainLooper()).post {
|
|
61
61
|
this.token?.let {
|
|
62
|
-
val pinwheelFragment = PinwheelFragment.newInstance(it, "react native", "3.2.
|
|
62
|
+
val pinwheelFragment = PinwheelFragment.newInstance(it, "react native", "3.2.2", getReactNativeVersion(), this.handleInsets)
|
|
63
63
|
pinwheelEventListener?.let { listener ->
|
|
64
64
|
pinwheelFragment.pinwheelEventListener = listener
|
|
65
65
|
}
|
package/ios/RTNPinwheelView.h
CHANGED
|
@@ -4,22 +4,24 @@
|
|
|
4
4
|
|
|
5
5
|
# endif
|
|
6
6
|
|
|
7
|
-
#import <
|
|
7
|
+
#import <WebKit/WebKit.h>
|
|
8
|
+
#import <PinwheelSDK/PinwheelSDK-Swift.h>
|
|
8
9
|
#import <UIKit/UIKit.h>
|
|
9
10
|
|
|
10
11
|
NS_ASSUME_NONNULL_BEGIN
|
|
11
12
|
|
|
12
13
|
#ifdef RCT_NEW_ARCH_ENABLED
|
|
13
14
|
|
|
14
|
-
@interface RTNPinwheelView : RCTViewComponentView <
|
|
15
|
+
@interface RTNPinwheelView : RCTViewComponentView <PinwheelWrapperDelegate>
|
|
15
16
|
|
|
16
|
-
#else
|
|
17
|
+
#else
|
|
17
18
|
|
|
18
|
-
@interface RTNPinwheelView : UIView <
|
|
19
|
+
@interface RTNPinwheelView : UIView <PinwheelWrapperDelegate>
|
|
19
20
|
|
|
20
21
|
#endif
|
|
21
22
|
|
|
22
|
-
|
|
23
|
+
|
|
24
|
+
@property (nonatomic, strong) PinwheelWrapperVC *pinwheelWrapperVC;
|
|
23
25
|
@property (nonatomic, assign) NSString *token;
|
|
24
26
|
|
|
25
27
|
- (instancetype)initWithFrame:(CGRect)frame token:(NSString *)token;
|
package/ios/RTNPinwheelView.mm
CHANGED
|
@@ -38,7 +38,7 @@ using namespace facebook::react;
|
|
|
38
38
|
|
|
39
39
|
- (void)initPinwheelWrapperVC {
|
|
40
40
|
if (self.token != nil && self.pinwheelWrapperVC == nil) {
|
|
41
|
-
self.pinwheelWrapperVC = [[
|
|
41
|
+
self.pinwheelWrapperVC = [[PinwheelWrapperVC alloc] initWithToken:self.token delegate:self sdk:@"react native" version: @"3.2.2"];
|
|
42
42
|
[self addSubview:self.pinwheelWrapperVC.view];
|
|
43
43
|
}
|
|
44
44
|
}
|
|
@@ -125,7 +125,7 @@ Class<RCTComponentViewProtocol> RTNPinwheelCls(void)
|
|
|
125
125
|
|
|
126
126
|
- (void)initPinwheelWrapperVC {
|
|
127
127
|
if (self.token != nil && self.pinwheelWrapperVC == nil) {
|
|
128
|
-
self.pinwheelWrapperVC = [[
|
|
128
|
+
self.pinwheelWrapperVC = [[PinwheelWrapperVC alloc] initWithToken:self.token delegate:self sdk:@"react native" version: @"3.2.2"];
|
|
129
129
|
[self addSubview:self.pinwheelWrapperVC.view];
|
|
130
130
|
}
|
|
131
131
|
}
|
package/package.json
CHANGED
|
@@ -1,44 +0,0 @@
|
|
|
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>AvailableLibraries</key>
|
|
6
|
-
<array>
|
|
7
|
-
<dict>
|
|
8
|
-
<key>BinaryPath</key>
|
|
9
|
-
<string>ObjCWrapper.framework/ObjCWrapper</string>
|
|
10
|
-
<key>LibraryIdentifier</key>
|
|
11
|
-
<string>ios-arm64_x86_64-simulator</string>
|
|
12
|
-
<key>LibraryPath</key>
|
|
13
|
-
<string>ObjCWrapper.framework</string>
|
|
14
|
-
<key>SupportedArchitectures</key>
|
|
15
|
-
<array>
|
|
16
|
-
<string>arm64</string>
|
|
17
|
-
<string>x86_64</string>
|
|
18
|
-
</array>
|
|
19
|
-
<key>SupportedPlatform</key>
|
|
20
|
-
<string>ios</string>
|
|
21
|
-
<key>SupportedPlatformVariant</key>
|
|
22
|
-
<string>simulator</string>
|
|
23
|
-
</dict>
|
|
24
|
-
<dict>
|
|
25
|
-
<key>BinaryPath</key>
|
|
26
|
-
<string>ObjCWrapper.framework/ObjCWrapper</string>
|
|
27
|
-
<key>LibraryIdentifier</key>
|
|
28
|
-
<string>ios-arm64</string>
|
|
29
|
-
<key>LibraryPath</key>
|
|
30
|
-
<string>ObjCWrapper.framework</string>
|
|
31
|
-
<key>SupportedArchitectures</key>
|
|
32
|
-
<array>
|
|
33
|
-
<string>arm64</string>
|
|
34
|
-
</array>
|
|
35
|
-
<key>SupportedPlatform</key>
|
|
36
|
-
<string>ios</string>
|
|
37
|
-
</dict>
|
|
38
|
-
</array>
|
|
39
|
-
<key>CFBundlePackageType</key>
|
|
40
|
-
<string>XFWK</string>
|
|
41
|
-
<key>XCFrameworkFormatVersion</key>
|
|
42
|
-
<string>1.0</string>
|
|
43
|
-
</dict>
|
|
44
|
-
</plist>
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
//
|
|
2
|
-
// ObjCWrapper.h
|
|
3
|
-
// ObjCWrapper
|
|
4
|
-
//
|
|
5
|
-
// Created by Robby Abaya on 10/15/24.
|
|
6
|
-
//
|
|
7
|
-
|
|
8
|
-
#import <Foundation/Foundation.h>
|
|
9
|
-
|
|
10
|
-
//! Project version number for ObjCWrapper.
|
|
11
|
-
FOUNDATION_EXPORT double ObjCWrapperVersionNumber;
|
|
12
|
-
|
|
13
|
-
//! Project version string for ObjCWrapper.
|
|
14
|
-
FOUNDATION_EXPORT const unsigned char ObjCWrapperVersionString[];
|
|
15
|
-
|
|
16
|
-
// In this header, you should import all the public headers of your framework using statements like #import <ObjCWrapper/PublicHeader.h>
|
|
17
|
-
|
|
18
|
-
#import <ObjCWrapper/PinwheelVCWrapper.h>
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
#import <Foundation/Foundation.h>
|
|
2
|
-
#import <UIKit/UIKit.h>
|
|
3
|
-
|
|
4
|
-
@protocol PinwheelVCWrapperDelegate <NSObject>
|
|
5
|
-
- (void)onEventWithName:(NSString *)name event:(NSDictionary *)event;
|
|
6
|
-
@end
|
|
7
|
-
|
|
8
|
-
@interface PinwheelVCWrapper : UIViewController
|
|
9
|
-
|
|
10
|
-
- (instancetype)initWithToken:(NSString *)token delegate:(id<PinwheelVCWrapperDelegate>)delegate;
|
|
11
|
-
- (instancetype)initWithToken:(NSString *)token delegate:(id<PinwheelVCWrapperDelegate>)delegate sdk:(NSString *)sdk version:(NSString *)version;
|
|
12
|
-
|
|
13
|
-
@end
|
|
14
|
-
|
package/PinwheelLinkSDKObjC/ObjCWrapper.xcframework/ios-arm64/ObjCWrapper.framework/Info.plist
DELETED
|
Binary file
|
package/PinwheelLinkSDKObjC/ObjCWrapper.xcframework/ios-arm64/ObjCWrapper.framework/ObjCWrapper
DELETED
|
Binary file
|
package/PinwheelLinkSDKObjC/ObjCWrapper.xcframework/ios-arm64/ObjCWrapper.framework/README.md
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
Build for iOS device
|
|
2
|
-
```
|
|
3
|
-
xcodebuild archive -scheme ObjCWrapper -configuration Release -destination 'generic/platform=iOS' -archivePath './build/ObjCWrapper.framework-iphoneos.xcarchive' SKIP_INSTALL=NO BUILD_LIBRARIES_FOR_DISTRIBUTION=YES
|
|
4
|
-
```
|
|
5
|
-
|
|
6
|
-
Build for simulator
|
|
7
|
-
```
|
|
8
|
-
xcodebuild archive -scheme ObjCWrapper -configuration Release -destination 'generic/platform=iOS Simulator' -archivePath './build/ObjCWrapper.framework-iphonesimulator.xcarchive' SKIP_INSTALL=NO BUILD_LIBRARIES_FOR_DISTRIBUTION=YES
|
|
9
|
-
```
|
|
10
|
-
|
|
11
|
-
Create a universal framework
|
|
12
|
-
```
|
|
13
|
-
xcodebuild -create-xcframework -framework './build/ObjCWrapper.framework-iphoneos.xcarchive/Products/Library/Frameworks/ObjCWrapper.framework' -framework './build/ObjCWrapper.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/ObjCWrapper.framework' -output './build/ObjCWrapper.xcframework'
|
|
14
|
-
```
|
|
15
|
-
|
|
@@ -1,146 +0,0 @@
|
|
|
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>files</key>
|
|
6
|
-
<dict>
|
|
7
|
-
<key>Headers/ObjCWrapper.h</key>
|
|
8
|
-
<data>
|
|
9
|
-
cnQhHMagZaiAQSOZZ7kB72ep+/Q=
|
|
10
|
-
</data>
|
|
11
|
-
<key>Headers/PinwheelVCWrapper.h</key>
|
|
12
|
-
<data>
|
|
13
|
-
HQA7FVRGiJLXzMO/pXBoQ0JrebY=
|
|
14
|
-
</data>
|
|
15
|
-
<key>Info.plist</key>
|
|
16
|
-
<data>
|
|
17
|
-
Hfq81ONIXXpBHGzBAzHgUpapvoc=
|
|
18
|
-
</data>
|
|
19
|
-
<key>Modules/module.modulemap</key>
|
|
20
|
-
<data>
|
|
21
|
-
L5o74vyASGEUJtmANJyWkKh9mGg=
|
|
22
|
-
</data>
|
|
23
|
-
<key>README.md</key>
|
|
24
|
-
<data>
|
|
25
|
-
qex4a1na6nurP3ELBb244NA322U=
|
|
26
|
-
</data>
|
|
27
|
-
</dict>
|
|
28
|
-
<key>files2</key>
|
|
29
|
-
<dict>
|
|
30
|
-
<key>Headers/ObjCWrapper.h</key>
|
|
31
|
-
<dict>
|
|
32
|
-
<key>hash2</key>
|
|
33
|
-
<data>
|
|
34
|
-
Fd6dsKVvjUvuiB3UzSYqMNfW3YjfDLkbTCuJOtEHHRw=
|
|
35
|
-
</data>
|
|
36
|
-
</dict>
|
|
37
|
-
<key>Headers/PinwheelVCWrapper.h</key>
|
|
38
|
-
<dict>
|
|
39
|
-
<key>hash2</key>
|
|
40
|
-
<data>
|
|
41
|
-
uWMc5XNHEFcpe1cr4l6z75zkNzGCszlRuFhv4YXBxFg=
|
|
42
|
-
</data>
|
|
43
|
-
</dict>
|
|
44
|
-
<key>Modules/module.modulemap</key>
|
|
45
|
-
<dict>
|
|
46
|
-
<key>hash2</key>
|
|
47
|
-
<data>
|
|
48
|
-
Fvd48rYZbujiraWxv91qNBMLFJk9lbxrp3O0Q2L5cik=
|
|
49
|
-
</data>
|
|
50
|
-
</dict>
|
|
51
|
-
<key>README.md</key>
|
|
52
|
-
<dict>
|
|
53
|
-
<key>hash2</key>
|
|
54
|
-
<data>
|
|
55
|
-
8M7PJiVMP9ZHKswCVX68+8rKMSlS6RN+QhAIsFvcAuo=
|
|
56
|
-
</data>
|
|
57
|
-
</dict>
|
|
58
|
-
</dict>
|
|
59
|
-
<key>rules</key>
|
|
60
|
-
<dict>
|
|
61
|
-
<key>^.*</key>
|
|
62
|
-
<true/>
|
|
63
|
-
<key>^.*\.lproj/</key>
|
|
64
|
-
<dict>
|
|
65
|
-
<key>optional</key>
|
|
66
|
-
<true/>
|
|
67
|
-
<key>weight</key>
|
|
68
|
-
<real>1000</real>
|
|
69
|
-
</dict>
|
|
70
|
-
<key>^.*\.lproj/locversion.plist$</key>
|
|
71
|
-
<dict>
|
|
72
|
-
<key>omit</key>
|
|
73
|
-
<true/>
|
|
74
|
-
<key>weight</key>
|
|
75
|
-
<real>1100</real>
|
|
76
|
-
</dict>
|
|
77
|
-
<key>^Base\.lproj/</key>
|
|
78
|
-
<dict>
|
|
79
|
-
<key>weight</key>
|
|
80
|
-
<real>1010</real>
|
|
81
|
-
</dict>
|
|
82
|
-
<key>^version.plist$</key>
|
|
83
|
-
<true/>
|
|
84
|
-
</dict>
|
|
85
|
-
<key>rules2</key>
|
|
86
|
-
<dict>
|
|
87
|
-
<key>.*\.dSYM($|/)</key>
|
|
88
|
-
<dict>
|
|
89
|
-
<key>weight</key>
|
|
90
|
-
<real>11</real>
|
|
91
|
-
</dict>
|
|
92
|
-
<key>^(.*/)?\.DS_Store$</key>
|
|
93
|
-
<dict>
|
|
94
|
-
<key>omit</key>
|
|
95
|
-
<true/>
|
|
96
|
-
<key>weight</key>
|
|
97
|
-
<real>2000</real>
|
|
98
|
-
</dict>
|
|
99
|
-
<key>^.*</key>
|
|
100
|
-
<true/>
|
|
101
|
-
<key>^.*\.lproj/</key>
|
|
102
|
-
<dict>
|
|
103
|
-
<key>optional</key>
|
|
104
|
-
<true/>
|
|
105
|
-
<key>weight</key>
|
|
106
|
-
<real>1000</real>
|
|
107
|
-
</dict>
|
|
108
|
-
<key>^.*\.lproj/locversion.plist$</key>
|
|
109
|
-
<dict>
|
|
110
|
-
<key>omit</key>
|
|
111
|
-
<true/>
|
|
112
|
-
<key>weight</key>
|
|
113
|
-
<real>1100</real>
|
|
114
|
-
</dict>
|
|
115
|
-
<key>^Base\.lproj/</key>
|
|
116
|
-
<dict>
|
|
117
|
-
<key>weight</key>
|
|
118
|
-
<real>1010</real>
|
|
119
|
-
</dict>
|
|
120
|
-
<key>^Info\.plist$</key>
|
|
121
|
-
<dict>
|
|
122
|
-
<key>omit</key>
|
|
123
|
-
<true/>
|
|
124
|
-
<key>weight</key>
|
|
125
|
-
<real>20</real>
|
|
126
|
-
</dict>
|
|
127
|
-
<key>^PkgInfo$</key>
|
|
128
|
-
<dict>
|
|
129
|
-
<key>omit</key>
|
|
130
|
-
<true/>
|
|
131
|
-
<key>weight</key>
|
|
132
|
-
<real>20</real>
|
|
133
|
-
</dict>
|
|
134
|
-
<key>^embedded\.provisionprofile$</key>
|
|
135
|
-
<dict>
|
|
136
|
-
<key>weight</key>
|
|
137
|
-
<real>20</real>
|
|
138
|
-
</dict>
|
|
139
|
-
<key>^version\.plist$</key>
|
|
140
|
-
<dict>
|
|
141
|
-
<key>weight</key>
|
|
142
|
-
<real>20</real>
|
|
143
|
-
</dict>
|
|
144
|
-
</dict>
|
|
145
|
-
</dict>
|
|
146
|
-
</plist>
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
//
|
|
2
|
-
// ObjCWrapper.h
|
|
3
|
-
// ObjCWrapper
|
|
4
|
-
//
|
|
5
|
-
// Created by Robby Abaya on 10/15/24.
|
|
6
|
-
//
|
|
7
|
-
|
|
8
|
-
#import <Foundation/Foundation.h>
|
|
9
|
-
|
|
10
|
-
//! Project version number for ObjCWrapper.
|
|
11
|
-
FOUNDATION_EXPORT double ObjCWrapperVersionNumber;
|
|
12
|
-
|
|
13
|
-
//! Project version string for ObjCWrapper.
|
|
14
|
-
FOUNDATION_EXPORT const unsigned char ObjCWrapperVersionString[];
|
|
15
|
-
|
|
16
|
-
// In this header, you should import all the public headers of your framework using statements like #import <ObjCWrapper/PublicHeader.h>
|
|
17
|
-
|
|
18
|
-
#import <ObjCWrapper/PinwheelVCWrapper.h>
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
#import <Foundation/Foundation.h>
|
|
2
|
-
#import <UIKit/UIKit.h>
|
|
3
|
-
|
|
4
|
-
@protocol PinwheelVCWrapperDelegate <NSObject>
|
|
5
|
-
- (void)onEventWithName:(NSString *)name event:(NSDictionary *)event;
|
|
6
|
-
@end
|
|
7
|
-
|
|
8
|
-
@interface PinwheelVCWrapper : UIViewController
|
|
9
|
-
|
|
10
|
-
- (instancetype)initWithToken:(NSString *)token delegate:(id<PinwheelVCWrapperDelegate>)delegate;
|
|
11
|
-
- (instancetype)initWithToken:(NSString *)token delegate:(id<PinwheelVCWrapperDelegate>)delegate sdk:(NSString *)sdk version:(NSString *)version;
|
|
12
|
-
|
|
13
|
-
@end
|
|
14
|
-
|
|
Binary file
|
|
Binary file
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
Build for iOS device
|
|
2
|
-
```
|
|
3
|
-
xcodebuild archive -scheme ObjCWrapper -configuration Release -destination 'generic/platform=iOS' -archivePath './build/ObjCWrapper.framework-iphoneos.xcarchive' SKIP_INSTALL=NO BUILD_LIBRARIES_FOR_DISTRIBUTION=YES
|
|
4
|
-
```
|
|
5
|
-
|
|
6
|
-
Build for simulator
|
|
7
|
-
```
|
|
8
|
-
xcodebuild archive -scheme ObjCWrapper -configuration Release -destination 'generic/platform=iOS Simulator' -archivePath './build/ObjCWrapper.framework-iphonesimulator.xcarchive' SKIP_INSTALL=NO BUILD_LIBRARIES_FOR_DISTRIBUTION=YES
|
|
9
|
-
```
|
|
10
|
-
|
|
11
|
-
Create a universal framework
|
|
12
|
-
```
|
|
13
|
-
xcodebuild -create-xcframework -framework './build/ObjCWrapper.framework-iphoneos.xcarchive/Products/Library/Frameworks/ObjCWrapper.framework' -framework './build/ObjCWrapper.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/ObjCWrapper.framework' -output './build/ObjCWrapper.xcframework'
|
|
14
|
-
```
|
|
15
|
-
|
|
@@ -1,146 +0,0 @@
|
|
|
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>files</key>
|
|
6
|
-
<dict>
|
|
7
|
-
<key>Headers/ObjCWrapper.h</key>
|
|
8
|
-
<data>
|
|
9
|
-
cnQhHMagZaiAQSOZZ7kB72ep+/Q=
|
|
10
|
-
</data>
|
|
11
|
-
<key>Headers/PinwheelVCWrapper.h</key>
|
|
12
|
-
<data>
|
|
13
|
-
HQA7FVRGiJLXzMO/pXBoQ0JrebY=
|
|
14
|
-
</data>
|
|
15
|
-
<key>Info.plist</key>
|
|
16
|
-
<data>
|
|
17
|
-
wfgn2v9O35DH9zI0iS53XohHTgI=
|
|
18
|
-
</data>
|
|
19
|
-
<key>Modules/module.modulemap</key>
|
|
20
|
-
<data>
|
|
21
|
-
L5o74vyASGEUJtmANJyWkKh9mGg=
|
|
22
|
-
</data>
|
|
23
|
-
<key>README.md</key>
|
|
24
|
-
<data>
|
|
25
|
-
qex4a1na6nurP3ELBb244NA322U=
|
|
26
|
-
</data>
|
|
27
|
-
</dict>
|
|
28
|
-
<key>files2</key>
|
|
29
|
-
<dict>
|
|
30
|
-
<key>Headers/ObjCWrapper.h</key>
|
|
31
|
-
<dict>
|
|
32
|
-
<key>hash2</key>
|
|
33
|
-
<data>
|
|
34
|
-
Fd6dsKVvjUvuiB3UzSYqMNfW3YjfDLkbTCuJOtEHHRw=
|
|
35
|
-
</data>
|
|
36
|
-
</dict>
|
|
37
|
-
<key>Headers/PinwheelVCWrapper.h</key>
|
|
38
|
-
<dict>
|
|
39
|
-
<key>hash2</key>
|
|
40
|
-
<data>
|
|
41
|
-
uWMc5XNHEFcpe1cr4l6z75zkNzGCszlRuFhv4YXBxFg=
|
|
42
|
-
</data>
|
|
43
|
-
</dict>
|
|
44
|
-
<key>Modules/module.modulemap</key>
|
|
45
|
-
<dict>
|
|
46
|
-
<key>hash2</key>
|
|
47
|
-
<data>
|
|
48
|
-
Fvd48rYZbujiraWxv91qNBMLFJk9lbxrp3O0Q2L5cik=
|
|
49
|
-
</data>
|
|
50
|
-
</dict>
|
|
51
|
-
<key>README.md</key>
|
|
52
|
-
<dict>
|
|
53
|
-
<key>hash2</key>
|
|
54
|
-
<data>
|
|
55
|
-
8M7PJiVMP9ZHKswCVX68+8rKMSlS6RN+QhAIsFvcAuo=
|
|
56
|
-
</data>
|
|
57
|
-
</dict>
|
|
58
|
-
</dict>
|
|
59
|
-
<key>rules</key>
|
|
60
|
-
<dict>
|
|
61
|
-
<key>^.*</key>
|
|
62
|
-
<true/>
|
|
63
|
-
<key>^.*\.lproj/</key>
|
|
64
|
-
<dict>
|
|
65
|
-
<key>optional</key>
|
|
66
|
-
<true/>
|
|
67
|
-
<key>weight</key>
|
|
68
|
-
<real>1000</real>
|
|
69
|
-
</dict>
|
|
70
|
-
<key>^.*\.lproj/locversion.plist$</key>
|
|
71
|
-
<dict>
|
|
72
|
-
<key>omit</key>
|
|
73
|
-
<true/>
|
|
74
|
-
<key>weight</key>
|
|
75
|
-
<real>1100</real>
|
|
76
|
-
</dict>
|
|
77
|
-
<key>^Base\.lproj/</key>
|
|
78
|
-
<dict>
|
|
79
|
-
<key>weight</key>
|
|
80
|
-
<real>1010</real>
|
|
81
|
-
</dict>
|
|
82
|
-
<key>^version.plist$</key>
|
|
83
|
-
<true/>
|
|
84
|
-
</dict>
|
|
85
|
-
<key>rules2</key>
|
|
86
|
-
<dict>
|
|
87
|
-
<key>.*\.dSYM($|/)</key>
|
|
88
|
-
<dict>
|
|
89
|
-
<key>weight</key>
|
|
90
|
-
<real>11</real>
|
|
91
|
-
</dict>
|
|
92
|
-
<key>^(.*/)?\.DS_Store$</key>
|
|
93
|
-
<dict>
|
|
94
|
-
<key>omit</key>
|
|
95
|
-
<true/>
|
|
96
|
-
<key>weight</key>
|
|
97
|
-
<real>2000</real>
|
|
98
|
-
</dict>
|
|
99
|
-
<key>^.*</key>
|
|
100
|
-
<true/>
|
|
101
|
-
<key>^.*\.lproj/</key>
|
|
102
|
-
<dict>
|
|
103
|
-
<key>optional</key>
|
|
104
|
-
<true/>
|
|
105
|
-
<key>weight</key>
|
|
106
|
-
<real>1000</real>
|
|
107
|
-
</dict>
|
|
108
|
-
<key>^.*\.lproj/locversion.plist$</key>
|
|
109
|
-
<dict>
|
|
110
|
-
<key>omit</key>
|
|
111
|
-
<true/>
|
|
112
|
-
<key>weight</key>
|
|
113
|
-
<real>1100</real>
|
|
114
|
-
</dict>
|
|
115
|
-
<key>^Base\.lproj/</key>
|
|
116
|
-
<dict>
|
|
117
|
-
<key>weight</key>
|
|
118
|
-
<real>1010</real>
|
|
119
|
-
</dict>
|
|
120
|
-
<key>^Info\.plist$</key>
|
|
121
|
-
<dict>
|
|
122
|
-
<key>omit</key>
|
|
123
|
-
<true/>
|
|
124
|
-
<key>weight</key>
|
|
125
|
-
<real>20</real>
|
|
126
|
-
</dict>
|
|
127
|
-
<key>^PkgInfo$</key>
|
|
128
|
-
<dict>
|
|
129
|
-
<key>omit</key>
|
|
130
|
-
<true/>
|
|
131
|
-
<key>weight</key>
|
|
132
|
-
<real>20</real>
|
|
133
|
-
</dict>
|
|
134
|
-
<key>^embedded\.provisionprofile$</key>
|
|
135
|
-
<dict>
|
|
136
|
-
<key>weight</key>
|
|
137
|
-
<real>20</real>
|
|
138
|
-
</dict>
|
|
139
|
-
<key>^version\.plist$</key>
|
|
140
|
-
<dict>
|
|
141
|
-
<key>weight</key>
|
|
142
|
-
<real>20</real>
|
|
143
|
-
</dict>
|
|
144
|
-
</dict>
|
|
145
|
-
</dict>
|
|
146
|
-
</plist>
|