react-native-config 1.4.11 → 1.5.0
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 +3 -3
- package/android/src/main/AndroidManifest.xml +1 -1
- package/android/src/main/java/com/lugg/{ReactNativeConfig/ReactNativeConfigModule.java → RNCConfig/RNCConfigModule.java} +4 -4
- package/android/src/main/java/com/lugg/{ReactNativeConfig/ReactNativeConfigPackage.java → RNCConfig/RNCConfigPackage.java} +3 -3
- package/index.js +2 -2
- package/ios/ReactNativeConfig/BuildDotenvConfig.rb +1 -1
- package/ios/ReactNativeConfig/GeneratedDotEnv.m +1 -0
- package/ios/ReactNativeConfig/{ReactNativeConfig.h → RNCConfig.h} +1 -1
- package/ios/ReactNativeConfig/{ReactNativeConfig.m → RNCConfig.m} +2 -2
- package/ios/ReactNativeConfig/{ReactNativeConfigModule.h → RNCConfigModule.h} +1 -1
- package/ios/ReactNativeConfig/RNCConfigModule.m +25 -0
- package/ios/ReactNativeConfig.xcodeproj/project.pbxproj +24 -24
- package/package.json +1 -1
- package/react-native-config.podspec +3 -2
- package/windows/code/RNCConfig.h +2 -2
- package/ios/ReactNativeConfig/ReactNativeConfigModule.m +0 -25
- package/ios/ReactNativeConfig.xcodeproj/project.xcworkspace/xcuserdata/pedro.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/ios/ReactNativeConfig.xcodeproj/xcuserdata/pedro.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +0 -5
- package/ios/ReactNativeConfig.xcodeproj/xcuserdata/pedro.xcuserdatad/xcschemes/Dotenv.xcscheme +0 -80
- package/ios/ReactNativeConfig.xcodeproj/xcuserdata/pedro.xcuserdatad/xcschemes/ReactNativeConfig.xcscheme +0 -80
- package/ios/ReactNativeConfig.xcodeproj/xcuserdata/pedro.xcuserdatad/xcschemes/xcschememanagement.plist +0 -36
package/README.md
CHANGED
|
@@ -179,13 +179,13 @@ Read variables declared in `.env` from your Obj-C classes like:
|
|
|
179
179
|
|
|
180
180
|
```objective-c
|
|
181
181
|
// import header
|
|
182
|
-
#import "
|
|
182
|
+
#import "RNCConfig.h"
|
|
183
183
|
|
|
184
184
|
// then read individual keys like:
|
|
185
|
-
NSString *apiUrl = [
|
|
185
|
+
NSString *apiUrl = [RNCConfig envFor:@"API_URL"];
|
|
186
186
|
|
|
187
187
|
// or just fetch the whole config
|
|
188
|
-
NSDictionary *config = [
|
|
188
|
+
NSDictionary *config = [RNCConfig env];
|
|
189
189
|
```
|
|
190
190
|
|
|
191
191
|
### Windows
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
package com.lugg.
|
|
1
|
+
package com.lugg.RNCConfig;
|
|
2
2
|
|
|
3
3
|
import android.content.Context;
|
|
4
4
|
import android.content.res.Resources;
|
|
@@ -13,14 +13,14 @@ import java.lang.reflect.Field;
|
|
|
13
13
|
import java.util.Map;
|
|
14
14
|
import java.util.HashMap;
|
|
15
15
|
|
|
16
|
-
public class
|
|
17
|
-
public
|
|
16
|
+
public class RNCConfigModule extends ReactContextBaseJavaModule {
|
|
17
|
+
public RNCConfigModule(ReactApplicationContext reactContext) {
|
|
18
18
|
super(reactContext);
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
@Override
|
|
22
22
|
public String getName() {
|
|
23
|
-
return "
|
|
23
|
+
return "RNCConfigModule";
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
@Override
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
package com.lugg.
|
|
1
|
+
package com.lugg.RNCConfig;
|
|
2
2
|
|
|
3
3
|
import com.facebook.react.ReactPackage;
|
|
4
4
|
import com.facebook.react.bridge.JavaScriptModule;
|
|
@@ -10,11 +10,11 @@ import java.util.Arrays;
|
|
|
10
10
|
import java.util.Collections;
|
|
11
11
|
import java.util.List;
|
|
12
12
|
|
|
13
|
-
public class
|
|
13
|
+
public class RNCConfigPackage implements ReactPackage {
|
|
14
14
|
@Override
|
|
15
15
|
public List<NativeModule> createNativeModules(ReactApplicationContext reactContext) {
|
|
16
16
|
return Arrays.<NativeModule>asList(
|
|
17
|
-
new
|
|
17
|
+
new RNCConfigModule(reactContext)
|
|
18
18
|
);
|
|
19
19
|
}
|
|
20
20
|
|
package/index.js
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
// Bridge to:
|
|
4
4
|
// Android: buildConfigField vars set in build.gradle, and exported via ReactConfig
|
|
5
|
-
// iOS: config vars set in xcconfig and exposed via
|
|
5
|
+
// iOS: config vars set in xcconfig and exposed via RNCConfig.m
|
|
6
6
|
import { NativeModules } from 'react-native';
|
|
7
7
|
|
|
8
|
-
export const Config = NativeModules.
|
|
8
|
+
export const Config = NativeModules.RNCConfigModule || {}
|
|
9
9
|
export default Config;
|
|
@@ -21,7 +21,7 @@ template = <<EOF
|
|
|
21
21
|
#define DOT_ENV @{ #{dotenv_objc} };
|
|
22
22
|
EOF
|
|
23
23
|
|
|
24
|
-
# write it so that
|
|
24
|
+
# write it so that RNCConfig.m can return it
|
|
25
25
|
path = File.join(m_output_path, 'GeneratedDotEnv.m')
|
|
26
26
|
File.open(path, 'w') { |f| f.puts template }
|
|
27
27
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
#define DOT_ENV @{ };
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
#import "RNCConfig.h"
|
|
2
|
+
#import "RNCConfigModule.h"
|
|
3
|
+
|
|
4
|
+
@implementation RNCConfigModule
|
|
5
|
+
|
|
6
|
+
RCT_EXPORT_MODULE()
|
|
7
|
+
|
|
8
|
+
+ (BOOL)requiresMainQueueSetup
|
|
9
|
+
{
|
|
10
|
+
return YES;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
+ (NSDictionary *)env {
|
|
14
|
+
return RNCConfig.env;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
+ (NSString *)envFor: (NSString *)key {
|
|
18
|
+
return [RNCConfig envFor:key];
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
- (NSDictionary *)constantsToExport {
|
|
22
|
+
return RNCConfig.env;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
@end
|
|
@@ -7,11 +7,11 @@
|
|
|
7
7
|
objects = {
|
|
8
8
|
|
|
9
9
|
/* Begin PBXBuildFile section */
|
|
10
|
-
07BF4DBD2476FBED00E59829 /*
|
|
11
|
-
3DF7F6B6203AA0C200D0EAB7 /*
|
|
12
|
-
3DF7F6B7203AA0D600D0EAB7 /*
|
|
13
|
-
EB2648E31C7BE17A00B8F155 /*
|
|
14
|
-
EBE4E8471C7D2456000F8875 /*
|
|
10
|
+
07BF4DBD2476FBED00E59829 /* RNCConfigModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 07BF4DBC2476FBED00E59829 /* RNCConfigModule.m */; };
|
|
11
|
+
3DF7F6B6203AA0C200D0EAB7 /* RNCConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = EBE4E8461C7D2456000F8875 /* RNCConfig.m */; };
|
|
12
|
+
3DF7F6B7203AA0D600D0EAB7 /* RNCConfig.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = EB2648E21C7BE17A00B8F155 /* RNCConfig.h */; };
|
|
13
|
+
EB2648E31C7BE17A00B8F155 /* RNCConfig.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = EB2648E21C7BE17A00B8F155 /* RNCConfig.h */; };
|
|
14
|
+
EBE4E8471C7D2456000F8875 /* RNCConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = EBE4E8461C7D2456000F8875 /* RNCConfig.m */; };
|
|
15
15
|
/* End PBXBuildFile section */
|
|
16
16
|
|
|
17
17
|
/* Begin PBXCopyFilesBuildPhase section */
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
dstPath = "include/$(PRODUCT_NAME)";
|
|
22
22
|
dstSubfolderSpec = 16;
|
|
23
23
|
files = (
|
|
24
|
-
3DF7F6B7203AA0D600D0EAB7 /*
|
|
24
|
+
3DF7F6B7203AA0D600D0EAB7 /* RNCConfig.h in CopyFiles */,
|
|
25
25
|
);
|
|
26
26
|
runOnlyForDeploymentPostprocessing = 0;
|
|
27
27
|
};
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
dstPath = "include/$(PRODUCT_NAME)";
|
|
41
41
|
dstSubfolderSpec = 16;
|
|
42
42
|
files = (
|
|
43
|
-
EB2648E31C7BE17A00B8F155 /*
|
|
43
|
+
EB2648E31C7BE17A00B8F155 /* RNCConfig.h in CopyFiles */,
|
|
44
44
|
);
|
|
45
45
|
runOnlyForDeploymentPostprocessing = 0;
|
|
46
46
|
};
|
|
@@ -57,15 +57,15 @@
|
|
|
57
57
|
/* End PBXCopyFilesBuildPhase section */
|
|
58
58
|
|
|
59
59
|
/* Begin PBXFileReference section */
|
|
60
|
-
07BF4DBB2476FBED00E59829 /*
|
|
61
|
-
07BF4DBC2476FBED00E59829 /*
|
|
62
|
-
3DF7F6AC203AA09B00D0EAB7 /*
|
|
60
|
+
07BF4DBB2476FBED00E59829 /* RNCConfigModule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RNCConfigModule.h; sourceTree = "<group>"; };
|
|
61
|
+
07BF4DBC2476FBED00E59829 /* RNCConfigModule.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RNCConfigModule.m; sourceTree = "<group>"; };
|
|
62
|
+
3DF7F6AC203AA09B00D0EAB7 /* libRNCConfig-tvOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libRNCConfig-tvOS.a"; path = "libReactNativeConfig-tvOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
63
63
|
50406729228CAD5A00E0438A /* ReadDotEnv.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = ReadDotEnv.rb; sourceTree = "<group>"; };
|
|
64
64
|
50830C45228DD3D000CEA8FC /* BuildXCConfig.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = BuildXCConfig.rb; sourceTree = "<group>"; };
|
|
65
|
-
EB2648DF1C7BE17A00B8F155 /*
|
|
66
|
-
EB2648E21C7BE17A00B8F155 /*
|
|
65
|
+
EB2648DF1C7BE17A00B8F155 /* libRNCConfig.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNCConfig.a; path = libReactNativeConfig.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
66
|
+
EB2648E21C7BE17A00B8F155 /* RNCConfig.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RNCConfig.h; sourceTree = "<group>"; };
|
|
67
67
|
EBE4E8291C7BF6DD000F8875 /* BuildDotenvConfig.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = BuildDotenvConfig.rb; sourceTree = "<group>"; };
|
|
68
|
-
EBE4E8461C7D2456000F8875 /*
|
|
68
|
+
EBE4E8461C7D2456000F8875 /* RNCConfig.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RNCConfig.m; sourceTree = "<group>"; };
|
|
69
69
|
/* End PBXFileReference section */
|
|
70
70
|
|
|
71
71
|
/* Begin PBXFrameworksBuildPhase section */
|
|
@@ -97,8 +97,8 @@
|
|
|
97
97
|
EB2648E01C7BE17A00B8F155 /* Products */ = {
|
|
98
98
|
isa = PBXGroup;
|
|
99
99
|
children = (
|
|
100
|
-
EB2648DF1C7BE17A00B8F155 /*
|
|
101
|
-
3DF7F6AC203AA09B00D0EAB7 /*
|
|
100
|
+
EB2648DF1C7BE17A00B8F155 /* libRNCConfig.a */,
|
|
101
|
+
3DF7F6AC203AA09B00D0EAB7 /* libRNCConfig-tvOS.a */,
|
|
102
102
|
);
|
|
103
103
|
name = Products;
|
|
104
104
|
sourceTree = "<group>";
|
|
@@ -107,10 +107,10 @@
|
|
|
107
107
|
isa = PBXGroup;
|
|
108
108
|
children = (
|
|
109
109
|
50830C45228DD3D000CEA8FC /* BuildXCConfig.rb */,
|
|
110
|
-
EB2648E21C7BE17A00B8F155 /*
|
|
111
|
-
EBE4E8461C7D2456000F8875 /*
|
|
112
|
-
07BF4DBB2476FBED00E59829 /*
|
|
113
|
-
07BF4DBC2476FBED00E59829 /*
|
|
110
|
+
EB2648E21C7BE17A00B8F155 /* RNCConfig.h */,
|
|
111
|
+
EBE4E8461C7D2456000F8875 /* RNCConfig.m */,
|
|
112
|
+
07BF4DBB2476FBED00E59829 /* RNCConfigModule.h */,
|
|
113
|
+
07BF4DBC2476FBED00E59829 /* RNCConfigModule.m */,
|
|
114
114
|
EBE4E8291C7BF6DD000F8875 /* BuildDotenvConfig.rb */,
|
|
115
115
|
50406729228CAD5A00E0438A /* ReadDotEnv.rb */,
|
|
116
116
|
);
|
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
);
|
|
137
137
|
name = "ReactNativeConfig-tvOS";
|
|
138
138
|
productName = "ReactNativeConfig-tvOS";
|
|
139
|
-
productReference = 3DF7F6AC203AA09B00D0EAB7 /*
|
|
139
|
+
productReference = 3DF7F6AC203AA09B00D0EAB7 /* libRNCConfig-tvOS.a */;
|
|
140
140
|
productType = "com.apple.product-type.library.static";
|
|
141
141
|
};
|
|
142
142
|
EB2648DE1C7BE17A00B8F155 /* ReactNativeConfig */ = {
|
|
@@ -155,7 +155,7 @@
|
|
|
155
155
|
);
|
|
156
156
|
name = ReactNativeConfig;
|
|
157
157
|
productName = ReactNativeConfig;
|
|
158
|
-
productReference = EB2648DF1C7BE17A00B8F155 /*
|
|
158
|
+
productReference = EB2648DF1C7BE17A00B8F155 /* libRNCConfig.a */;
|
|
159
159
|
productType = "com.apple.product-type.library.static";
|
|
160
160
|
};
|
|
161
161
|
/* End PBXNativeTarget section */
|
|
@@ -231,7 +231,7 @@
|
|
|
231
231
|
isa = PBXSourcesBuildPhase;
|
|
232
232
|
buildActionMask = 2147483647;
|
|
233
233
|
files = (
|
|
234
|
-
3DF7F6B6203AA0C200D0EAB7 /*
|
|
234
|
+
3DF7F6B6203AA0C200D0EAB7 /* RNCConfig.m in Sources */,
|
|
235
235
|
);
|
|
236
236
|
runOnlyForDeploymentPostprocessing = 0;
|
|
237
237
|
};
|
|
@@ -239,8 +239,8 @@
|
|
|
239
239
|
isa = PBXSourcesBuildPhase;
|
|
240
240
|
buildActionMask = 2147483647;
|
|
241
241
|
files = (
|
|
242
|
-
07BF4DBD2476FBED00E59829 /*
|
|
243
|
-
EBE4E8471C7D2456000F8875 /*
|
|
242
|
+
07BF4DBD2476FBED00E59829 /* RNCConfigModule.m in Sources */,
|
|
243
|
+
EBE4E8471C7D2456000F8875 /* RNCConfig.m in Sources */,
|
|
244
244
|
);
|
|
245
245
|
runOnlyForDeploymentPostprocessing = 0;
|
|
246
246
|
};
|
package/package.json
CHANGED
|
@@ -48,9 +48,10 @@ HOST_PATH="$SRCROOT/../.."
|
|
|
48
48
|
"${PODS_TARGET_SRCROOT}/ios/ReactNativeConfig/BuildDotenvConfig.rb" "$HOST_PATH" "${PODS_TARGET_SRCROOT}/ios/ReactNativeConfig"
|
|
49
49
|
),
|
|
50
50
|
execution_position: :before_compile,
|
|
51
|
-
input_files: ['$PODS_TARGET_SRCROOT/ios/ReactNativeConfig/BuildDotenvConfig.rb']
|
|
51
|
+
input_files: ['$PODS_TARGET_SRCROOT/ios/ReactNativeConfig/BuildDotenvConfig.rb'],
|
|
52
|
+
output_files: ['$PODS_TARGET_SRCROOT/ios/ReactNativeConfig/GeneratedDotEnv.m']
|
|
52
53
|
}
|
|
53
|
-
ext.source_files = ['ios/**/
|
|
54
|
+
ext.source_files = ['ios/**/RNCConfig.{h,m}', 'ios/**/GeneratedDotEnv.m']
|
|
54
55
|
end
|
|
55
56
|
|
|
56
57
|
end
|
package/windows/code/RNCConfig.h
CHANGED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
#import "ReactNativeConfig.h"
|
|
2
|
-
#import "ReactNativeConfigModule.h"
|
|
3
|
-
|
|
4
|
-
@implementation ReactNativeConfigModule
|
|
5
|
-
|
|
6
|
-
RCT_EXPORT_MODULE()
|
|
7
|
-
|
|
8
|
-
+ (BOOL)requiresMainQueueSetup
|
|
9
|
-
{
|
|
10
|
-
return YES;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
+ (NSDictionary *)env {
|
|
14
|
-
return ReactNativeConfig.env;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
+ (NSString *)envFor: (NSString *)key {
|
|
18
|
-
return [ReactNativeConfig envFor:key];
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
- (NSDictionary *)constantsToExport {
|
|
22
|
-
return ReactNativeConfig.env;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
@end
|
|
Binary file
|
package/ios/ReactNativeConfig.xcodeproj/xcuserdata/pedro.xcuserdatad/xcschemes/Dotenv.xcscheme
DELETED
|
@@ -1,80 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<Scheme
|
|
3
|
-
LastUpgradeVersion = "0720"
|
|
4
|
-
version = "1.3">
|
|
5
|
-
<BuildAction
|
|
6
|
-
parallelizeBuildables = "YES"
|
|
7
|
-
buildImplicitDependencies = "YES">
|
|
8
|
-
<BuildActionEntries>
|
|
9
|
-
<BuildActionEntry
|
|
10
|
-
buildForTesting = "YES"
|
|
11
|
-
buildForRunning = "YES"
|
|
12
|
-
buildForProfiling = "YES"
|
|
13
|
-
buildForArchiving = "YES"
|
|
14
|
-
buildForAnalyzing = "YES">
|
|
15
|
-
<BuildableReference
|
|
16
|
-
BuildableIdentifier = "primary"
|
|
17
|
-
BlueprintIdentifier = "EBE4E83A1C7D1D11000F8875"
|
|
18
|
-
BuildableName = "Dotenv.bundle"
|
|
19
|
-
BlueprintName = "Dotenv"
|
|
20
|
-
ReferencedContainer = "container:ReactNativeConfig.xcodeproj">
|
|
21
|
-
</BuildableReference>
|
|
22
|
-
</BuildActionEntry>
|
|
23
|
-
</BuildActionEntries>
|
|
24
|
-
</BuildAction>
|
|
25
|
-
<TestAction
|
|
26
|
-
buildConfiguration = "Debug"
|
|
27
|
-
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
28
|
-
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
29
|
-
shouldUseLaunchSchemeArgsEnv = "YES">
|
|
30
|
-
<Testables>
|
|
31
|
-
</Testables>
|
|
32
|
-
<AdditionalOptions>
|
|
33
|
-
</AdditionalOptions>
|
|
34
|
-
</TestAction>
|
|
35
|
-
<LaunchAction
|
|
36
|
-
buildConfiguration = "Debug"
|
|
37
|
-
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
38
|
-
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
39
|
-
launchStyle = "0"
|
|
40
|
-
useCustomWorkingDirectory = "NO"
|
|
41
|
-
ignoresPersistentStateOnLaunch = "NO"
|
|
42
|
-
debugDocumentVersioning = "YES"
|
|
43
|
-
debugServiceExtension = "internal"
|
|
44
|
-
allowLocationSimulation = "YES">
|
|
45
|
-
<MacroExpansion>
|
|
46
|
-
<BuildableReference
|
|
47
|
-
BuildableIdentifier = "primary"
|
|
48
|
-
BlueprintIdentifier = "EBE4E83A1C7D1D11000F8875"
|
|
49
|
-
BuildableName = "Dotenv.bundle"
|
|
50
|
-
BlueprintName = "Dotenv"
|
|
51
|
-
ReferencedContainer = "container:ReactNativeConfig.xcodeproj">
|
|
52
|
-
</BuildableReference>
|
|
53
|
-
</MacroExpansion>
|
|
54
|
-
<AdditionalOptions>
|
|
55
|
-
</AdditionalOptions>
|
|
56
|
-
</LaunchAction>
|
|
57
|
-
<ProfileAction
|
|
58
|
-
buildConfiguration = "Release"
|
|
59
|
-
shouldUseLaunchSchemeArgsEnv = "YES"
|
|
60
|
-
savedToolIdentifier = ""
|
|
61
|
-
useCustomWorkingDirectory = "NO"
|
|
62
|
-
debugDocumentVersioning = "YES">
|
|
63
|
-
<MacroExpansion>
|
|
64
|
-
<BuildableReference
|
|
65
|
-
BuildableIdentifier = "primary"
|
|
66
|
-
BlueprintIdentifier = "EBE4E83A1C7D1D11000F8875"
|
|
67
|
-
BuildableName = "Dotenv.bundle"
|
|
68
|
-
BlueprintName = "Dotenv"
|
|
69
|
-
ReferencedContainer = "container:ReactNativeConfig.xcodeproj">
|
|
70
|
-
</BuildableReference>
|
|
71
|
-
</MacroExpansion>
|
|
72
|
-
</ProfileAction>
|
|
73
|
-
<AnalyzeAction
|
|
74
|
-
buildConfiguration = "Debug">
|
|
75
|
-
</AnalyzeAction>
|
|
76
|
-
<ArchiveAction
|
|
77
|
-
buildConfiguration = "Release"
|
|
78
|
-
revealArchiveInOrganizer = "YES">
|
|
79
|
-
</ArchiveAction>
|
|
80
|
-
</Scheme>
|
|
@@ -1,80 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<Scheme
|
|
3
|
-
LastUpgradeVersion = "0720"
|
|
4
|
-
version = "1.3">
|
|
5
|
-
<BuildAction
|
|
6
|
-
parallelizeBuildables = "YES"
|
|
7
|
-
buildImplicitDependencies = "YES">
|
|
8
|
-
<BuildActionEntries>
|
|
9
|
-
<BuildActionEntry
|
|
10
|
-
buildForTesting = "YES"
|
|
11
|
-
buildForRunning = "YES"
|
|
12
|
-
buildForProfiling = "YES"
|
|
13
|
-
buildForArchiving = "YES"
|
|
14
|
-
buildForAnalyzing = "YES">
|
|
15
|
-
<BuildableReference
|
|
16
|
-
BuildableIdentifier = "primary"
|
|
17
|
-
BlueprintIdentifier = "EB2648DE1C7BE17A00B8F155"
|
|
18
|
-
BuildableName = "libReactNativeConfig.a"
|
|
19
|
-
BlueprintName = "ReactNativeConfig"
|
|
20
|
-
ReferencedContainer = "container:ReactNativeConfig.xcodeproj">
|
|
21
|
-
</BuildableReference>
|
|
22
|
-
</BuildActionEntry>
|
|
23
|
-
</BuildActionEntries>
|
|
24
|
-
</BuildAction>
|
|
25
|
-
<TestAction
|
|
26
|
-
buildConfiguration = "Debug"
|
|
27
|
-
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
28
|
-
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
29
|
-
shouldUseLaunchSchemeArgsEnv = "YES">
|
|
30
|
-
<Testables>
|
|
31
|
-
</Testables>
|
|
32
|
-
<AdditionalOptions>
|
|
33
|
-
</AdditionalOptions>
|
|
34
|
-
</TestAction>
|
|
35
|
-
<LaunchAction
|
|
36
|
-
buildConfiguration = "Debug"
|
|
37
|
-
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
38
|
-
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
39
|
-
launchStyle = "0"
|
|
40
|
-
useCustomWorkingDirectory = "NO"
|
|
41
|
-
ignoresPersistentStateOnLaunch = "NO"
|
|
42
|
-
debugDocumentVersioning = "YES"
|
|
43
|
-
debugServiceExtension = "internal"
|
|
44
|
-
allowLocationSimulation = "YES">
|
|
45
|
-
<MacroExpansion>
|
|
46
|
-
<BuildableReference
|
|
47
|
-
BuildableIdentifier = "primary"
|
|
48
|
-
BlueprintIdentifier = "EB2648DE1C7BE17A00B8F155"
|
|
49
|
-
BuildableName = "libReactNativeConfig.a"
|
|
50
|
-
BlueprintName = "ReactNativeConfig"
|
|
51
|
-
ReferencedContainer = "container:ReactNativeConfig.xcodeproj">
|
|
52
|
-
</BuildableReference>
|
|
53
|
-
</MacroExpansion>
|
|
54
|
-
<AdditionalOptions>
|
|
55
|
-
</AdditionalOptions>
|
|
56
|
-
</LaunchAction>
|
|
57
|
-
<ProfileAction
|
|
58
|
-
buildConfiguration = "Release"
|
|
59
|
-
shouldUseLaunchSchemeArgsEnv = "YES"
|
|
60
|
-
savedToolIdentifier = ""
|
|
61
|
-
useCustomWorkingDirectory = "NO"
|
|
62
|
-
debugDocumentVersioning = "YES">
|
|
63
|
-
<MacroExpansion>
|
|
64
|
-
<BuildableReference
|
|
65
|
-
BuildableIdentifier = "primary"
|
|
66
|
-
BlueprintIdentifier = "EB2648DE1C7BE17A00B8F155"
|
|
67
|
-
BuildableName = "libReactNativeConfig.a"
|
|
68
|
-
BlueprintName = "ReactNativeConfig"
|
|
69
|
-
ReferencedContainer = "container:ReactNativeConfig.xcodeproj">
|
|
70
|
-
</BuildableReference>
|
|
71
|
-
</MacroExpansion>
|
|
72
|
-
</ProfileAction>
|
|
73
|
-
<AnalyzeAction
|
|
74
|
-
buildConfiguration = "Debug">
|
|
75
|
-
</AnalyzeAction>
|
|
76
|
-
<ArchiveAction
|
|
77
|
-
buildConfiguration = "Release"
|
|
78
|
-
revealArchiveInOrganizer = "YES">
|
|
79
|
-
</ArchiveAction>
|
|
80
|
-
</Scheme>
|
|
@@ -1,36 +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>SchemeUserState</key>
|
|
6
|
-
<dict>
|
|
7
|
-
<key>Dotenv.xcscheme</key>
|
|
8
|
-
<dict>
|
|
9
|
-
<key>isShown</key>
|
|
10
|
-
<false/>
|
|
11
|
-
<key>orderHint</key>
|
|
12
|
-
<integer>1</integer>
|
|
13
|
-
</dict>
|
|
14
|
-
<key>ReactNativeConfig.xcscheme</key>
|
|
15
|
-
<dict>
|
|
16
|
-
<key>isShown</key>
|
|
17
|
-
<false/>
|
|
18
|
-
<key>orderHint</key>
|
|
19
|
-
<integer>0</integer>
|
|
20
|
-
</dict>
|
|
21
|
-
</dict>
|
|
22
|
-
<key>SuppressBuildableAutocreation</key>
|
|
23
|
-
<dict>
|
|
24
|
-
<key>EB2648DE1C7BE17A00B8F155</key>
|
|
25
|
-
<dict>
|
|
26
|
-
<key>primary</key>
|
|
27
|
-
<true/>
|
|
28
|
-
</dict>
|
|
29
|
-
<key>EBE4E83A1C7D1D11000F8875</key>
|
|
30
|
-
<dict>
|
|
31
|
-
<key>primary</key>
|
|
32
|
-
<true/>
|
|
33
|
-
</dict>
|
|
34
|
-
</dict>
|
|
35
|
-
</dict>
|
|
36
|
-
</plist>
|