react-native-acoustic-connect-beta 16.0.5 → 16.0.6
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/Example/nativebase-v3-kitchensink/android/app/build.gradle +103 -82
- package/Example/nativebase-v3-kitchensink/android/app/src/debug/AndroidManifest.xml +1 -2
- package/Example/nativebase-v3-kitchensink/android/app/src/debug/java/com/geekyants/kitchensinkappnativebase/ReactNativeFlipper.java +10 -4
- package/Example/nativebase-v3-kitchensink/android/app/src/main/AndroidManifest.xml +3 -3
- package/Example/nativebase-v3-kitchensink/android/app/src/main/java/com/geekyants/kitchensinkappnativebase/MainActivity.java +14 -12
- package/Example/nativebase-v3-kitchensink/android/app/src/main/java/com/geekyants/kitchensinkappnativebase/MainApplication.java +41 -55
- package/Example/nativebase-v3-kitchensink/android/build.gradle +14 -24
- package/Example/nativebase-v3-kitchensink/android/gradle.properties +20 -3
- package/Example/nativebase-v3-kitchensink/android/settings.gradle +4 -1
- package/Example/nativebase-v3-kitchensink/babel.config.js +7 -1
- package/Example/nativebase-v3-kitchensink/ios/.xcode.env +11 -0
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/AppDelegate.h +2 -3
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/AppDelegate.m +10 -69
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/Images.xcassets/AppIcon.appiconset/Contents.json +7 -116
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/Info.plist +4 -0
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase.xcodeproj/project.pbxproj +47 -37
- package/Example/nativebase-v3-kitchensink/ios/Podfile +105 -53
- package/Example/nativebase-v3-kitchensink/ios/Podfile.properties.json +2 -1
- package/Example/nativebase-v3-kitchensink/metro.config.js +12 -14
- package/Example/nativebase-v3-kitchensink/package.json +21 -18
- package/Example/nativebase-v3-kitchensink/src/components/RootComponent.tsx +3 -3
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/core/NativeBaseProvider.tsx +2 -2
- package/GroovyUtils/psgrep.sh +1 -0
- package/Jenkinsfile +27 -25
- package/android/build.gradle +1 -1
- package/package.json +1 -1
- package/Example/nativebase-v3-kitchensink/android/app/BUCK +0 -55
- package/Example/nativebase-v3-kitchensink/android/app/build_defs.bzl +0 -19
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/noop-file.swift +0 -4
- package/Example/nativebase-v3-kitchensink/iosSDKDebug/KitchenSinkappnativebase.xcodeproj/project.pbxproj +0 -543
- package/Example/nativebase-v3-kitchensink/iosSDKDebug/KitchenSinkappnativebase.xcodeproj/xcshareddata/xcschemes/KitchenSinkappnativebase.xcscheme +0 -100
- package/Example/nativebase-v3-kitchensink/iosSDKDebug/KitchenSinkappnativebase.xcworkspace/contents.xcworkspacedata +0 -13
- package/Example/nativebase-v3-kitchensink/iosSDKDebug/KitchenSinkappnativebaseDebugSDK.xcworkspace/contents.xcworkspacedata +0 -10
- package/Example/nativebase-v3-kitchensink/iosSDKDebug/KitchenSinkappnativebaseDebugSDK.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -8
- package/Example/nativebase-v3-kitchensink/iosSDKDebug/Podfile +0 -51
- package/Example/nativebase-v3-kitchensink/node/.expo/README.md +0 -17
- package/Example/nativebase-v3-kitchensink/node/.expo/settings.json +0 -8
- package/Example/nativebase-v3-kitchensink/yarn.lock +0 -13679
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# This `.xcode.env` file is versioned and is used to source the environment
|
|
2
|
+
# used when running script phases inside Xcode.
|
|
3
|
+
# To customize your local environment, you can create an `.xcode.env.local`
|
|
4
|
+
# file that is not versioned.
|
|
5
|
+
|
|
6
|
+
# NODE_BINARY variable contains the PATH to the node executable.
|
|
7
|
+
#
|
|
8
|
+
# Customize the NODE_BINARY variable here.
|
|
9
|
+
# For example, to use nvm with brew, add the following line
|
|
10
|
+
# . "$(brew --prefix nvm)/nvm.sh" --no-use
|
|
11
|
+
export NODE_BINARY=$(command -v node)
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
#import <
|
|
2
|
-
#import <React/RCTBridgeDelegate.h>
|
|
1
|
+
#import <RCTAppDelegate.h>
|
|
3
2
|
#import <UIKit/UIKit.h>
|
|
4
3
|
|
|
5
4
|
#import <Expo/Expo.h>
|
|
6
5
|
|
|
7
|
-
@interface AppDelegate : EXAppDelegateWrapper
|
|
6
|
+
@interface AppDelegate : EXAppDelegateWrapper
|
|
8
7
|
@property (nonatomic, strong) UIWindow *window;
|
|
9
8
|
@end
|
|
@@ -1,85 +1,26 @@
|
|
|
1
1
|
#import "AppDelegate.h"
|
|
2
|
-
|
|
3
|
-
#import <React/RCTBridge.h>
|
|
4
2
|
#import <React/RCTBundleURLProvider.h>
|
|
5
|
-
#import <React/RCTRootView.h>
|
|
6
|
-
#import <React/RCTLinkingManager.h>
|
|
7
|
-
#import <React/RCTConvert.h>
|
|
8
|
-
|
|
9
|
-
#if defined(FB_SONARKIT_ENABLED) && __has_include(<FlipperKit/FlipperClient.h>)
|
|
10
|
-
#import <FlipperKit/FlipperClient.h>
|
|
11
|
-
#import <FlipperKitLayoutPlugin/FlipperKitLayoutPlugin.h>
|
|
12
|
-
#import <FlipperKitUserDefaultsPlugin/FKUserDefaultsPlugin.h>
|
|
13
|
-
#import <FlipperKitNetworkPlugin/FlipperKitNetworkPlugin.h>
|
|
14
|
-
#import <SKIOSNetworkPlugin/SKIOSNetworkAdapter.h>
|
|
15
|
-
#import <FlipperKitReactPlugin/FlipperKitReactPlugin.h>
|
|
16
|
-
|
|
17
|
-
static void InitializeFlipper(UIApplication *application) {
|
|
18
|
-
FlipperClient *client = [FlipperClient sharedClient];
|
|
19
|
-
SKDescriptorMapper *layoutDescriptorMapper = [[SKDescriptorMapper alloc] initWithDefaults];
|
|
20
|
-
[client addPlugin:[[FlipperKitLayoutPlugin alloc] initWithRootNode:application withDescriptorMapper:layoutDescriptorMapper]];
|
|
21
|
-
[client addPlugin:[[FKUserDefaultsPlugin alloc] initWithSuiteName:nil]];
|
|
22
|
-
[client addPlugin:[FlipperKitReactPlugin new]];
|
|
23
|
-
[client addPlugin:[[FlipperKitNetworkPlugin alloc] initWithNetworkAdapter:[SKIOSNetworkAdapter new]]];
|
|
24
|
-
[client start];
|
|
25
|
-
}
|
|
26
|
-
#endif
|
|
27
3
|
|
|
28
4
|
@implementation AppDelegate
|
|
29
5
|
|
|
30
6
|
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
|
|
31
7
|
{
|
|
32
|
-
|
|
33
|
-
InitializeFlipper(application);
|
|
34
|
-
#endif
|
|
35
|
-
|
|
36
|
-
RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions];
|
|
37
|
-
|
|
38
|
-
RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge moduleName:@"main" initialProperties:nil];
|
|
39
|
-
|
|
40
|
-
id rootViewBackgroundColor = [[NSBundle mainBundle] objectForInfoDictionaryKey:@"RCTRootViewBackgroundColor"];
|
|
41
|
-
if (rootViewBackgroundColor != nil) {
|
|
42
|
-
rootView.backgroundColor = [RCTConvert UIColor:rootViewBackgroundColor];
|
|
43
|
-
} else {
|
|
44
|
-
rootView.backgroundColor = [UIColor whiteColor];
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
|
|
8
|
+
self.moduleName = @"main";
|
|
48
9
|
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
self.
|
|
52
|
-
[self.window makeKeyAndVisible];
|
|
10
|
+
// You can add your custom initial props in the dictionary below.
|
|
11
|
+
// They will be passed down to the ViewController used by React Native.
|
|
12
|
+
self.initialProps = @{};
|
|
53
13
|
|
|
54
|
-
[super application:application didFinishLaunchingWithOptions:launchOptions];
|
|
55
|
-
|
|
56
|
-
return YES;
|
|
14
|
+
return [super application:application didFinishLaunchingWithOptions:launchOptions];
|
|
57
15
|
}
|
|
58
16
|
|
|
59
|
-
- (
|
|
17
|
+
- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge
|
|
60
18
|
{
|
|
61
|
-
|
|
62
|
-
return
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge {
|
|
66
|
-
#ifdef DEBUG
|
|
67
|
-
return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index"];
|
|
68
|
-
#else
|
|
19
|
+
#if DEBUG
|
|
20
|
+
return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@".expo/.virtual-metro-entry"];
|
|
21
|
+
#else
|
|
69
22
|
return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"];
|
|
70
|
-
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
// Linking API
|
|
74
|
-
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options {
|
|
75
|
-
return [RCTLinkingManager application:application openURL:url options:options];
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
// Universal Links
|
|
79
|
-
- (BOOL)application:(UIApplication *)application continueUserActivity:(nonnull NSUserActivity *)userActivity restorationHandler:(nonnull void (^)(NSArray<id<UIUserActivityRestoring>> * _Nullable))restorationHandler {
|
|
80
|
-
return [RCTLinkingManager application:application
|
|
81
|
-
continueUserActivity:userActivity
|
|
82
|
-
restorationHandler:restorationHandler];
|
|
23
|
+
#endif
|
|
83
24
|
}
|
|
84
25
|
|
|
85
26
|
@end
|
|
@@ -1,122 +1,13 @@
|
|
|
1
1
|
{
|
|
2
|
-
"images": [
|
|
2
|
+
"images" : [
|
|
3
3
|
{
|
|
4
|
-
"idiom": "
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"filename": "App-Icon-20x20@2x.png"
|
|
8
|
-
},
|
|
9
|
-
{
|
|
10
|
-
"idiom": "iphone",
|
|
11
|
-
"size": "20x20",
|
|
12
|
-
"scale": "3x",
|
|
13
|
-
"filename": "App-Icon-20x20@3x.png"
|
|
14
|
-
},
|
|
15
|
-
{
|
|
16
|
-
"idiom": "iphone",
|
|
17
|
-
"size": "29x29",
|
|
18
|
-
"scale": "1x",
|
|
19
|
-
"filename": "App-Icon-29x29@1x.png"
|
|
20
|
-
},
|
|
21
|
-
{
|
|
22
|
-
"idiom": "iphone",
|
|
23
|
-
"size": "29x29",
|
|
24
|
-
"scale": "2x",
|
|
25
|
-
"filename": "App-Icon-29x29@2x.png"
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
"idiom": "iphone",
|
|
29
|
-
"size": "29x29",
|
|
30
|
-
"scale": "3x",
|
|
31
|
-
"filename": "App-Icon-29x29@3x.png"
|
|
32
|
-
},
|
|
33
|
-
{
|
|
34
|
-
"idiom": "iphone",
|
|
35
|
-
"size": "40x40",
|
|
36
|
-
"scale": "2x",
|
|
37
|
-
"filename": "App-Icon-40x40@2x.png"
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
"idiom": "iphone",
|
|
41
|
-
"size": "40x40",
|
|
42
|
-
"scale": "3x",
|
|
43
|
-
"filename": "App-Icon-40x40@3x.png"
|
|
44
|
-
},
|
|
45
|
-
{
|
|
46
|
-
"idiom": "iphone",
|
|
47
|
-
"size": "60x60",
|
|
48
|
-
"scale": "2x",
|
|
49
|
-
"filename": "App-Icon-60x60@2x.png"
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
"idiom": "iphone",
|
|
53
|
-
"size": "60x60",
|
|
54
|
-
"scale": "3x",
|
|
55
|
-
"filename": "App-Icon-60x60@3x.png"
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
"idiom": "ipad",
|
|
59
|
-
"size": "20x20",
|
|
60
|
-
"scale": "1x",
|
|
61
|
-
"filename": "App-Icon-20x20@1x.png"
|
|
62
|
-
},
|
|
63
|
-
{
|
|
64
|
-
"idiom": "ipad",
|
|
65
|
-
"size": "20x20",
|
|
66
|
-
"scale": "2x",
|
|
67
|
-
"filename": "App-Icon-20x20@2x.png"
|
|
68
|
-
},
|
|
69
|
-
{
|
|
70
|
-
"idiom": "ipad",
|
|
71
|
-
"size": "29x29",
|
|
72
|
-
"scale": "1x",
|
|
73
|
-
"filename": "App-Icon-29x29@1x.png"
|
|
74
|
-
},
|
|
75
|
-
{
|
|
76
|
-
"idiom": "ipad",
|
|
77
|
-
"size": "29x29",
|
|
78
|
-
"scale": "2x",
|
|
79
|
-
"filename": "App-Icon-29x29@2x.png"
|
|
80
|
-
},
|
|
81
|
-
{
|
|
82
|
-
"idiom": "ipad",
|
|
83
|
-
"size": "40x40",
|
|
84
|
-
"scale": "1x",
|
|
85
|
-
"filename": "App-Icon-40x40@1x.png"
|
|
86
|
-
},
|
|
87
|
-
{
|
|
88
|
-
"idiom": "ipad",
|
|
89
|
-
"size": "40x40",
|
|
90
|
-
"scale": "2x",
|
|
91
|
-
"filename": "App-Icon-40x40@2x.png"
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
"idiom": "ipad",
|
|
95
|
-
"size": "76x76",
|
|
96
|
-
"scale": "1x",
|
|
97
|
-
"filename": "App-Icon-76x76@1x.png"
|
|
98
|
-
},
|
|
99
|
-
{
|
|
100
|
-
"idiom": "ipad",
|
|
101
|
-
"size": "76x76",
|
|
102
|
-
"scale": "2x",
|
|
103
|
-
"filename": "App-Icon-76x76@2x.png"
|
|
104
|
-
},
|
|
105
|
-
{
|
|
106
|
-
"idiom": "ipad",
|
|
107
|
-
"size": "83.5x83.5",
|
|
108
|
-
"scale": "2x",
|
|
109
|
-
"filename": "App-Icon-83.5x83.5@2x.png"
|
|
110
|
-
},
|
|
111
|
-
{
|
|
112
|
-
"idiom": "ios-marketing",
|
|
113
|
-
"size": "1024x1024",
|
|
114
|
-
"scale": "1x",
|
|
115
|
-
"filename": "ItunesArtwork@2x.png"
|
|
4
|
+
"idiom" : "universal",
|
|
5
|
+
"platform" : "ios",
|
|
6
|
+
"size" : "1024x1024"
|
|
116
7
|
}
|
|
117
8
|
],
|
|
118
|
-
"info": {
|
|
119
|
-
"version": 1,
|
|
120
|
-
"author": "expo"
|
|
9
|
+
"info" : {
|
|
10
|
+
"version" : 1,
|
|
11
|
+
"author" : "expo"
|
|
121
12
|
}
|
|
122
13
|
}
|
package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase.xcodeproj/project.pbxproj
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
archiveVersion = 1;
|
|
4
4
|
classes = {
|
|
5
5
|
};
|
|
6
|
-
objectVersion =
|
|
6
|
+
objectVersion = 54;
|
|
7
7
|
objects = {
|
|
8
8
|
|
|
9
9
|
/* Begin PBXBuildFile section */
|
|
@@ -11,7 +11,6 @@
|
|
|
11
11
|
13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; };
|
|
12
12
|
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
|
|
13
13
|
13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
|
|
14
|
-
231543DBEC1643F1B8C275CF /* noop-file.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27DF043343BA46B690BFE418 /* noop-file.swift */; };
|
|
15
14
|
3DA35E8634E7316FF6BB3B55 /* ExpoModulesProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF09D7362E6D3FFAB70A0B62 /* ExpoModulesProvider.swift */; };
|
|
16
15
|
3E461D99554A48A4959DE609 /* SplashScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */; };
|
|
17
16
|
45C05EFCCA55A54C318E6308 /* libPods-KitchenSinkappnativebase.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00F9471C22FED02C22BF5C95 /* libPods-KitchenSinkappnativebase.a */; };
|
|
@@ -36,7 +35,6 @@
|
|
|
36
35
|
/* End PBXContainerItemProxy section */
|
|
37
36
|
|
|
38
37
|
/* Begin PBXFileReference section */
|
|
39
|
-
008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = "<group>"; };
|
|
40
38
|
00F9471C22FED02C22BF5C95 /* libPods-KitchenSinkappnativebase.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-KitchenSinkappnativebase.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
41
39
|
13B07F961A680F5B00A75B9A /* KitchenSinkappnativebase.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = KitchenSinkappnativebase.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
42
40
|
13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = KitchenSinkappnativebase/AppDelegate.h; sourceTree = "<group>"; };
|
|
@@ -45,7 +43,6 @@
|
|
|
45
43
|
13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = KitchenSinkappnativebase/Images.xcassets; sourceTree = "<group>"; };
|
|
46
44
|
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = KitchenSinkappnativebase/Info.plist; sourceTree = "<group>"; };
|
|
47
45
|
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = main.m; path = KitchenSinkappnativebase/main.m; sourceTree = "<group>"; };
|
|
48
|
-
27DF043343BA46B690BFE418 /* noop-file.swift */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 4; includeInIndex = 0; lastKnownFileType = sourcecode.swift; name = "noop-file.swift"; path = "KitchenSinkappnativebase/noop-file.swift"; sourceTree = "<group>"; };
|
|
49
46
|
6D7AF87E2CD1ED9000C39C63 /* RNCxa.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RNCxa.xcodeproj; path = "../node_modules/react-native-acoustic-connect-beta/ios/RNCxa.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
|
50
47
|
6E27428F9B32BA1022E882A8 /* Pods-KitchenSinkappnativebase.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-KitchenSinkappnativebase.release.xcconfig"; path = "Target Support Files/Pods-KitchenSinkappnativebase/Pods-KitchenSinkappnativebase.release.xcconfig"; sourceTree = "<group>"; };
|
|
51
48
|
AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = SplashScreen.storyboard; path = KitchenSinkappnativebase/SplashScreen.storyboard; sourceTree = "<group>"; };
|
|
@@ -81,7 +78,6 @@
|
|
|
81
78
|
isa = PBXGroup;
|
|
82
79
|
children = (
|
|
83
80
|
BB2F792B24A3F905000567C9 /* Supporting */,
|
|
84
|
-
008F07F21AC5B25A0029DE68 /* main.jsbundle */,
|
|
85
81
|
13B07FAF1A68108700A75B9A /* AppDelegate.h */,
|
|
86
82
|
13B07FB01A68108700A75B9A /* AppDelegate.m */,
|
|
87
83
|
13B07FB51A68108700A75B9A /* Images.xcassets */,
|
|
@@ -89,7 +85,6 @@
|
|
|
89
85
|
13B07FB11A68108700A75B9A /* LaunchScreen.xib */,
|
|
90
86
|
13B07FB71A68108700A75B9A /* main.m */,
|
|
91
87
|
AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */,
|
|
92
|
-
27DF043343BA46B690BFE418 /* noop-file.swift */,
|
|
93
88
|
F15B9492E9F5478AA9495FA3 /* KitchenSinkappnativebase-Bridging-Header.h */,
|
|
94
89
|
);
|
|
95
90
|
name = KitchenSinkappnativebase;
|
|
@@ -180,6 +175,7 @@
|
|
|
180
175
|
buildPhases = (
|
|
181
176
|
4D0E1B093BDE1CCE1DA5AF70 /* [CP] Check Pods Manifest.lock */,
|
|
182
177
|
FD10A7F022414F080027D42C /* Start Packager */,
|
|
178
|
+
200B18847C20B7FCDCB39157 /* [Expo] Configure project */,
|
|
183
179
|
13B07F871A680F5B00A75B9A /* Sources */,
|
|
184
180
|
13B07F8C1A680F5B00A75B9A /* Frameworks */,
|
|
185
181
|
13B07F8E1A680F5B00A75B9A /* Resources */,
|
|
@@ -272,13 +268,34 @@
|
|
|
272
268
|
files = (
|
|
273
269
|
);
|
|
274
270
|
inputPaths = (
|
|
271
|
+
"$(SRCROOT)/.xcode.env.local",
|
|
272
|
+
"$(SRCROOT)/.xcode.env",
|
|
275
273
|
);
|
|
276
274
|
name = "Bundle React Native code and images";
|
|
277
275
|
outputPaths = (
|
|
278
276
|
);
|
|
279
277
|
runOnlyForDeploymentPostprocessing = 0;
|
|
280
278
|
shellPath = /bin/sh;
|
|
281
|
-
shellScript = "export
|
|
279
|
+
shellScript = "if [[ -f \"$PODS_ROOT/../.xcode.env\" ]]; then\n source \"$PODS_ROOT/../.xcode.env\"\nfi\nif [[ -f \"$PODS_ROOT/../.xcode.env.local\" ]]; then\n source \"$PODS_ROOT/../.xcode.env.local\"\nfi\n\n# The project root by default is one level up from the ios directory\nexport PROJECT_ROOT=\"$PROJECT_DIR\"/..\n\nif [[ \"$CONFIGURATION\" = *Debug* ]]; then\n export SKIP_BUNDLING=1\nfi\nif [[ -z \"$ENTRY_FILE\" ]]; then\n # Set the entry JS file using the bundler's entry resolution.\n export ENTRY_FILE=\"$(\"$NODE_BINARY\" -e \"require('expo/scripts/resolveAppEntry')\" \"$PROJECT_ROOT\" ios absolute | tail -n 1)\"\nfi\n\nif [[ -z \"$CLI_PATH\" ]]; then\n # Use Expo CLI\n export CLI_PATH=\"$(\"$NODE_BINARY\" --print \"require.resolve('@expo/cli')\")\"\nfi\nif [[ -z \"$BUNDLE_COMMAND\" ]]; then\n # Default Expo CLI command for bundling\n export BUNDLE_COMMAND=\"export:embed\"\nfi\n\n`\"$NODE_BINARY\" --print \"require('path').dirname(require.resolve('react-native/package.json')) + '/scripts/react-native-xcode.sh'\"`\n\n";
|
|
280
|
+
};
|
|
281
|
+
200B18847C20B7FCDCB39157 /* [Expo] Configure project */ = {
|
|
282
|
+
isa = PBXShellScriptBuildPhase;
|
|
283
|
+
alwaysOutOfDate = 1;
|
|
284
|
+
buildActionMask = 2147483647;
|
|
285
|
+
files = (
|
|
286
|
+
);
|
|
287
|
+
inputFileListPaths = (
|
|
288
|
+
);
|
|
289
|
+
inputPaths = (
|
|
290
|
+
);
|
|
291
|
+
name = "[Expo] Configure project";
|
|
292
|
+
outputFileListPaths = (
|
|
293
|
+
);
|
|
294
|
+
outputPaths = (
|
|
295
|
+
);
|
|
296
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
297
|
+
shellPath = /bin/sh;
|
|
298
|
+
shellScript = "# This script configures Expo modules and generates the modules provider file.\nbash -l -c \"./Pods/Target\\ Support\\ Files/Pods-KitchenSinkappnativebase/expo-configure-project.sh\"\n";
|
|
282
299
|
};
|
|
283
300
|
4D0E1B093BDE1CCE1DA5AF70 /* [CP] Check Pods Manifest.lock */ = {
|
|
284
301
|
isa = PBXShellScriptBuildPhase;
|
|
@@ -309,19 +326,13 @@
|
|
|
309
326
|
);
|
|
310
327
|
inputPaths = (
|
|
311
328
|
"${PODS_ROOT}/Target Support Files/Pods-KitchenSinkappnativebase/Pods-KitchenSinkappnativebase-resources.sh",
|
|
312
|
-
"${PODS_ROOT}/ConnectReactNativeDebug/SDKs/iOS/DebugConnectReactNative/ConnectResources.bundle",
|
|
313
|
-
"${PODS_ROOT}/EOCoreDebug/SDKs/iOS/Debug/EOCoreSettings.bundle",
|
|
314
329
|
"${PODS_CONFIGURATION_BUILD_DIR}/EXConstants/EXConstants.bundle",
|
|
315
330
|
"${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle",
|
|
316
|
-
"${PODS_ROOT}/TealeafReactNativeDebug/SDKs/iOS/DebugTealeafReactNative/TLFResources.bundle",
|
|
317
331
|
);
|
|
318
332
|
name = "[CP] Copy Pods Resources";
|
|
319
333
|
outputPaths = (
|
|
320
|
-
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/ConnectResources.bundle",
|
|
321
|
-
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EOCoreSettings.bundle",
|
|
322
334
|
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EXConstants.bundle",
|
|
323
335
|
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle",
|
|
324
|
-
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/TLFResources.bundle",
|
|
325
336
|
);
|
|
326
337
|
runOnlyForDeploymentPostprocessing = 0;
|
|
327
338
|
shellPath = /bin/sh;
|
|
@@ -335,15 +346,11 @@
|
|
|
335
346
|
);
|
|
336
347
|
inputPaths = (
|
|
337
348
|
"${PODS_ROOT}/Target Support Files/Pods-KitchenSinkappnativebase/Pods-KitchenSinkappnativebase-frameworks.sh",
|
|
338
|
-
"${PODS_XCFRAMEWORKS_BUILD_DIR}/
|
|
339
|
-
"${PODS_XCFRAMEWORKS_BUILD_DIR}/EOCoreDebug/EOCore.framework/EOCore",
|
|
340
|
-
"${PODS_XCFRAMEWORKS_BUILD_DIR}/TealeafReactNativeDebug/Core/TealeafReactNative.framework/TealeafReactNative",
|
|
349
|
+
"${PODS_XCFRAMEWORKS_BUILD_DIR}/hermes-engine/Pre-built/hermes.framework/hermes",
|
|
341
350
|
);
|
|
342
351
|
name = "[CP] Embed Pods Frameworks";
|
|
343
352
|
outputPaths = (
|
|
344
|
-
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/
|
|
345
|
-
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/EOCore.framework",
|
|
346
|
-
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/TealeafReactNative.framework",
|
|
353
|
+
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/hermes.framework",
|
|
347
354
|
);
|
|
348
355
|
runOnlyForDeploymentPostprocessing = 0;
|
|
349
356
|
shellPath = /bin/sh;
|
|
@@ -366,7 +373,7 @@
|
|
|
366
373
|
);
|
|
367
374
|
runOnlyForDeploymentPostprocessing = 0;
|
|
368
375
|
shellPath = /bin/sh;
|
|
369
|
-
shellScript = "
|
|
376
|
+
shellScript = "if [[ -f \"$PODS_ROOT/../.xcode.env\" ]]; then\n source \"$PODS_ROOT/../.xcode.env\"\nfi\nif [[ -f \"$PODS_ROOT/../.xcode.env.local\" ]]; then\n source \"$PODS_ROOT/../.xcode.env.local\"\nfi\n\nexport RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > `$NODE_BINARY --print \"require('path').dirname(require.resolve('react-native/package.json')) + '/scripts/.packager.env'\"`\nif [ -z \"${RCT_NO_LAUNCH_PACKAGER+xxx}\" ] ; then\n if nc -w 5 -z localhost ${RCT_METRO_PORT} ; then\n if ! curl -s \"http://localhost:${RCT_METRO_PORT}/status\" | grep -q \"packager-status:running\" ; then\n echo \"Port ${RCT_METRO_PORT} already in use, packager is either not running or not running correctly\"\n exit 2\n fi\n else\n open `$NODE_BINARY --print \"require('path').dirname(require.resolve('expo/package.json')) + '/scripts/launchPackager.command'\"` || echo \"Can't start packager automatically\"\n fi\nfi\n\n";
|
|
370
377
|
showEnvVarsInLog = 0;
|
|
371
378
|
};
|
|
372
379
|
/* End PBXShellScriptBuildPhase section */
|
|
@@ -379,7 +386,6 @@
|
|
|
379
386
|
13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
|
|
380
387
|
13B07FC11A68108700A75B9A /* main.m in Sources */,
|
|
381
388
|
3DA35E8634E7316FF6BB3B55 /* ExpoModulesProvider.swift in Sources */,
|
|
382
|
-
231543DBEC1643F1B8C275CF /* noop-file.swift in Sources */,
|
|
383
389
|
);
|
|
384
390
|
runOnlyForDeploymentPostprocessing = 0;
|
|
385
391
|
};
|
|
@@ -481,7 +487,10 @@
|
|
|
481
487
|
);
|
|
482
488
|
INFOPLIST_FILE = KitchenSinkappnativebase/Info.plist;
|
|
483
489
|
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
|
484
|
-
LD_RUNPATH_SEARCH_PATHS =
|
|
490
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
491
|
+
"$(inherited)",
|
|
492
|
+
"@executable_path/Frameworks",
|
|
493
|
+
);
|
|
485
494
|
ONLY_ACTIVE_ARCH = YES;
|
|
486
495
|
OTHER_LDFLAGS = (
|
|
487
496
|
"$(inherited)",
|
|
@@ -577,7 +586,10 @@
|
|
|
577
586
|
);
|
|
578
587
|
INFOPLIST_FILE = KitchenSinkappnativebase/Info.plist;
|
|
579
588
|
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
|
580
|
-
LD_RUNPATH_SEARCH_PATHS =
|
|
589
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
590
|
+
"$(inherited)",
|
|
591
|
+
"@executable_path/Frameworks",
|
|
592
|
+
);
|
|
581
593
|
ONLY_ACTIVE_ARCH = YES;
|
|
582
594
|
OTHER_LDFLAGS = (
|
|
583
595
|
"$(inherited)",
|
|
@@ -628,7 +640,7 @@
|
|
|
628
640
|
COPY_PHASE_STRIP = NO;
|
|
629
641
|
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
630
642
|
ENABLE_TESTABILITY = YES;
|
|
631
|
-
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" =
|
|
643
|
+
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386;
|
|
632
644
|
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
633
645
|
GCC_DYNAMIC_NO_PIC = NO;
|
|
634
646
|
GCC_NO_COMMON_BLOCKS = YES;
|
|
@@ -646,7 +658,10 @@
|
|
|
646
658
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
647
659
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
648
660
|
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
|
649
|
-
LD_RUNPATH_SEARCH_PATHS =
|
|
661
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
662
|
+
/usr/lib/swift,
|
|
663
|
+
"$(inherited)",
|
|
664
|
+
);
|
|
650
665
|
LIBRARY_SEARCH_PATHS = (
|
|
651
666
|
"$(SDKROOT)/usr/lib/swift",
|
|
652
667
|
"\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
|
|
@@ -656,11 +671,7 @@
|
|
|
656
671
|
ONLY_ACTIVE_ARCH = YES;
|
|
657
672
|
OTHER_CFLAGS = "$(inherited)";
|
|
658
673
|
OTHER_CPLUSPLUSFLAGS = "$(inherited)";
|
|
659
|
-
OTHER_LDFLAGS = (
|
|
660
|
-
"$(inherited)",
|
|
661
|
-
"-Wl",
|
|
662
|
-
"-ld_classic",
|
|
663
|
-
);
|
|
674
|
+
OTHER_LDFLAGS = "$(inherited)";
|
|
664
675
|
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
|
|
665
676
|
SDKROOT = iphoneos;
|
|
666
677
|
};
|
|
@@ -700,7 +711,7 @@
|
|
|
700
711
|
COPY_PHASE_STRIP = YES;
|
|
701
712
|
ENABLE_NS_ASSERTIONS = NO;
|
|
702
713
|
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
703
|
-
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" =
|
|
714
|
+
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386;
|
|
704
715
|
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
705
716
|
GCC_NO_COMMON_BLOCKS = YES;
|
|
706
717
|
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
@@ -714,7 +725,10 @@
|
|
|
714
725
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
715
726
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
716
727
|
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
|
717
|
-
LD_RUNPATH_SEARCH_PATHS =
|
|
728
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
729
|
+
/usr/lib/swift,
|
|
730
|
+
"$(inherited)",
|
|
731
|
+
);
|
|
718
732
|
LIBRARY_SEARCH_PATHS = (
|
|
719
733
|
"$(SDKROOT)/usr/lib/swift",
|
|
720
734
|
"\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
|
|
@@ -723,11 +737,7 @@
|
|
|
723
737
|
MTL_ENABLE_DEBUG_INFO = NO;
|
|
724
738
|
OTHER_CFLAGS = "$(inherited)";
|
|
725
739
|
OTHER_CPLUSPLUSFLAGS = "$(inherited)";
|
|
726
|
-
OTHER_LDFLAGS = (
|
|
727
|
-
"$(inherited)",
|
|
728
|
-
"-Wl",
|
|
729
|
-
"-ld_classic",
|
|
730
|
-
);
|
|
740
|
+
OTHER_LDFLAGS = "$(inherited)";
|
|
731
741
|
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
|
|
732
742
|
SDKROOT = iphoneos;
|
|
733
743
|
VALIDATE_PRODUCT = YES;
|