@pinwheel/react-native-pinwheel 3.2.1 → 3.2.3

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.
Files changed (21) hide show
  1. package/README.md +8 -0
  2. package/RNPinwheelSDK.podspec +0 -1
  3. package/android/src/main/java/com/rtnpinwheel/Pinwheel.kt +1 -1
  4. package/ios/RTNPinwheelView.h +8 -6
  5. package/ios/RTNPinwheelView.mm +16 -6
  6. package/package.json +1 -1
  7. package/PinwheelLinkSDKObjC/ObjCWrapper.xcframework/Info.plist +0 -44
  8. package/PinwheelLinkSDKObjC/ObjCWrapper.xcframework/ios-arm64/ObjCWrapper.framework/Headers/ObjCWrapper.h +0 -18
  9. package/PinwheelLinkSDKObjC/ObjCWrapper.xcframework/ios-arm64/ObjCWrapper.framework/Headers/PinwheelVCWrapper.h +0 -14
  10. package/PinwheelLinkSDKObjC/ObjCWrapper.xcframework/ios-arm64/ObjCWrapper.framework/Info.plist +0 -0
  11. package/PinwheelLinkSDKObjC/ObjCWrapper.xcframework/ios-arm64/ObjCWrapper.framework/Modules/module.modulemap +0 -6
  12. package/PinwheelLinkSDKObjC/ObjCWrapper.xcframework/ios-arm64/ObjCWrapper.framework/ObjCWrapper +0 -0
  13. package/PinwheelLinkSDKObjC/ObjCWrapper.xcframework/ios-arm64/ObjCWrapper.framework/README.md +0 -15
  14. package/PinwheelLinkSDKObjC/ObjCWrapper.xcframework/ios-arm64/ObjCWrapper.framework/_CodeSignature/CodeResources +0 -146
  15. package/PinwheelLinkSDKObjC/ObjCWrapper.xcframework/ios-arm64_x86_64-simulator/ObjCWrapper.framework/Headers/ObjCWrapper.h +0 -18
  16. package/PinwheelLinkSDKObjC/ObjCWrapper.xcframework/ios-arm64_x86_64-simulator/ObjCWrapper.framework/Headers/PinwheelVCWrapper.h +0 -14
  17. package/PinwheelLinkSDKObjC/ObjCWrapper.xcframework/ios-arm64_x86_64-simulator/ObjCWrapper.framework/Info.plist +0 -0
  18. package/PinwheelLinkSDKObjC/ObjCWrapper.xcframework/ios-arm64_x86_64-simulator/ObjCWrapper.framework/Modules/module.modulemap +0 -6
  19. package/PinwheelLinkSDKObjC/ObjCWrapper.xcframework/ios-arm64_x86_64-simulator/ObjCWrapper.framework/ObjCWrapper +0 -0
  20. package/PinwheelLinkSDKObjC/ObjCWrapper.xcframework/ios-arm64_x86_64-simulator/ObjCWrapper.framework/README.md +0 -15
  21. 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.
@@ -18,5 +18,4 @@ Pod::Spec.new do |s|
18
18
  install_modules_dependencies(s)
19
19
 
20
20
  s.dependency 'PinwheelSDK', '3.1.1'
21
- s.vendored_frameworks = "PinwheelLinkSDKObjC/ObjCWrapper.xcframework"
22
21
  end
@@ -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.1", getReactNativeVersion(), this.handleInsets)
62
+ val pinwheelFragment = PinwheelFragment.newInstance(it, "react native", "3.2.3", getReactNativeVersion(), this.handleInsets)
63
63
  pinwheelEventListener?.let { listener ->
64
64
  pinwheelFragment.pinwheelEventListener = listener
65
65
  }
@@ -4,23 +4,25 @@
4
4
 
5
5
  # endif
6
6
 
7
- #import <ObjCWrapper/PinwheelVCWrapper.h>
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 <PinwheelVCWrapperDelegate>
15
+ @interface RTNPinwheelView : RCTViewComponentView <PinwheelWrapperDelegate>
15
16
 
16
- #else
17
+ #else
17
18
 
18
- @interface RTNPinwheelView : UIView <PinwheelVCWrapperDelegate>
19
+ @interface RTNPinwheelView : UIView <PinwheelWrapperDelegate>
19
20
 
20
21
  #endif
21
22
 
22
- @property (nonatomic, strong) PinwheelVCWrapper *pinwheelWrapperVC;
23
- @property (nonatomic, assign) NSString *token;
23
+
24
+ @property (nonatomic, strong, nullable) PinwheelWrapperVC *pinwheelWrapperVC;
25
+ @property (nonatomic, strong) NSString *token;
24
26
 
25
27
  - (instancetype)initWithFrame:(CGRect)frame token:(NSString *)token;
26
28
 
@@ -37,8 +37,13 @@ using namespace facebook::react;
37
37
  }
38
38
 
39
39
  - (void)initPinwheelWrapperVC {
40
- if (self.token != nil && self.pinwheelWrapperVC == nil) {
41
- self.pinwheelWrapperVC = [[PinwheelVCWrapper alloc] initWithToken:self.token delegate:self sdk:@"react native" version: @"3.2.1"];
40
+ if (self.pinwheelWrapperVC != nil) {
41
+ [self.pinwheelWrapperVC.view removeFromSuperview];
42
+ self.pinwheelWrapperVC = nil;
43
+ }
44
+
45
+ if (self.token != nil) {
46
+ self.pinwheelWrapperVC = [[PinwheelWrapperVC alloc] initWithToken:self.token delegate:self sdk:@"react native" version: @"3.2.3"];
42
47
  [self addSubview:self.pinwheelWrapperVC.view];
43
48
  }
44
49
  }
@@ -46,7 +51,6 @@ using namespace facebook::react;
46
51
  - (void)setToken:(NSString *)newToken {
47
52
  if (![_token isEqualToString:newToken]) {
48
53
  _token = newToken;
49
- [self initPinwheelWrapperVC];
50
54
  }
51
55
  }
52
56
 
@@ -59,14 +63,20 @@ using namespace facebook::react;
59
63
  NSString* convertedToken = [NSString stringWithUTF8String:newViewProps.token.c_str()];
60
64
  [self setToken:convertedToken];
61
65
  }
66
+ // Ensures that the view is always re-initialized whenever the props change, or the React Native component is
67
+ // re-mounted. On the new architecture, there are optimizations which causes the view to be re-used in these
68
+ // scenarios, whereas the ideal functionality here is to have the Link modal reset to the starting state.
69
+ [self initPinwheelWrapperVC];
62
70
 
63
71
  [super updateProps:props oldProps:oldProps];
64
72
  }
65
73
 
66
74
  - (void)layoutSubviews
67
75
  {
68
- [super layoutSubviews];
69
- self.pinwheelWrapperVC.view.frame = self.bounds;
76
+ [super layoutSubviews];
77
+ if (self.pinwheelWrapperVC != nil) {
78
+ self.pinwheelWrapperVC.view.frame = self.bounds;
79
+ }
70
80
  }
71
81
 
72
82
  - (void)onEventWithName:(NSString *)name event:(NSDictionary<NSString *, id> *)event {
@@ -125,7 +135,7 @@ Class<RCTComponentViewProtocol> RTNPinwheelCls(void)
125
135
 
126
136
  - (void)initPinwheelWrapperVC {
127
137
  if (self.token != nil && self.pinwheelWrapperVC == nil) {
128
- self.pinwheelWrapperVC = [[PinwheelVCWrapper alloc] initWithToken:self.token delegate:self sdk:@"react native" version: @"3.2.1"];
138
+ self.pinwheelWrapperVC = [[PinwheelWrapperVC alloc] initWithToken:self.token delegate:self sdk:@"react native" version: @"3.2.3"];
129
139
  [self addSubview:self.pinwheelWrapperVC.view];
130
140
  }
131
141
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pinwheel/react-native-pinwheel",
3
- "version": "3.2.1",
3
+ "version": "3.2.3",
4
4
  "type": "module",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",
@@ -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
-
@@ -1,6 +0,0 @@
1
- framework module ObjCWrapper {
2
- umbrella header "ObjCWrapper.h"
3
- export *
4
-
5
- module * { export * }
6
- }
@@ -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
-
@@ -1,6 +0,0 @@
1
- framework module ObjCWrapper {
2
- umbrella header "ObjCWrapper.h"
3
- export *
4
-
5
- module * { export * }
6
- }
@@ -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>