react-native-config 1.4.12 → 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.
Files changed (21) hide show
  1. package/README.md +3 -3
  2. package/android/src/main/AndroidManifest.xml +1 -1
  3. package/android/src/main/java/com/lugg/{ReactNativeConfig/ReactNativeConfigModule.java → RNCConfig/RNCConfigModule.java} +4 -4
  4. package/android/src/main/java/com/lugg/{ReactNativeConfig/ReactNativeConfigPackage.java → RNCConfig/RNCConfigPackage.java} +3 -3
  5. package/index.js +2 -2
  6. package/ios/ReactNativeConfig/BuildDotenvConfig.rb +1 -1
  7. package/ios/ReactNativeConfig/GeneratedDotEnv.m +1 -0
  8. package/ios/ReactNativeConfig/{ReactNativeConfig.h → RNCConfig.h} +1 -1
  9. package/ios/ReactNativeConfig/{ReactNativeConfig.m → RNCConfig.m} +2 -2
  10. package/ios/ReactNativeConfig/{ReactNativeConfigModule.h → RNCConfigModule.h} +1 -1
  11. package/ios/ReactNativeConfig/RNCConfigModule.m +25 -0
  12. package/ios/ReactNativeConfig.xcodeproj/project.pbxproj +24 -24
  13. package/package.json +1 -1
  14. package/react-native-config.podspec +1 -1
  15. package/windows/code/RNCConfig.h +2 -2
  16. package/ios/ReactNativeConfig/ReactNativeConfigModule.m +0 -25
  17. package/ios/ReactNativeConfig.xcodeproj/project.xcworkspace/xcuserdata/pedro.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  18. package/ios/ReactNativeConfig.xcodeproj/xcuserdata/pedro.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +0 -5
  19. package/ios/ReactNativeConfig.xcodeproj/xcuserdata/pedro.xcuserdatad/xcschemes/Dotenv.xcscheme +0 -80
  20. package/ios/ReactNativeConfig.xcodeproj/xcuserdata/pedro.xcuserdatad/xcschemes/ReactNativeConfig.xcscheme +0 -80
  21. 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 "ReactNativeConfig.h"
182
+ #import "RNCConfig.h"
183
183
 
184
184
  // then read individual keys like:
185
- NSString *apiUrl = [ReactNativeConfig envFor:@"API_URL"];
185
+ NSString *apiUrl = [RNCConfig envFor:@"API_URL"];
186
186
 
187
187
  // or just fetch the whole config
188
- NSDictionary *config = [ReactNativeConfig env];
188
+ NSDictionary *config = [RNCConfig env];
189
189
  ```
190
190
 
191
191
  ### Windows
@@ -1,3 +1,3 @@
1
1
  <manifest xmlns:android="http://schemas.android.com/apk/res/android"
2
- package="com.lugg.ReactNativeConfig">
2
+ package="com.lugg.RNCConfig">
3
3
  </manifest>
@@ -1,4 +1,4 @@
1
- package com.lugg.ReactNativeConfig;
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 ReactNativeConfigModule extends ReactContextBaseJavaModule {
17
- public ReactNativeConfigModule(ReactApplicationContext reactContext) {
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 "ReactNativeConfigModule";
23
+ return "RNCConfigModule";
24
24
  }
25
25
 
26
26
  @Override
@@ -1,4 +1,4 @@
1
- package com.lugg.ReactNativeConfig;
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 ReactNativeConfigPackage implements ReactPackage {
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 ReactNativeConfigModule(reactContext)
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 ReactNativeConfig.m
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.ReactNativeConfigModule || {}
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 ReactNativeConfig.m can return it
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 @{ };
@@ -1,6 +1,6 @@
1
1
  #import <Foundation/Foundation.h>
2
2
 
3
- @interface ReactNativeConfig : NSObject
3
+ @interface RNCConfig : NSObject
4
4
 
5
5
  + (NSDictionary *)env;
6
6
  + (NSString *)envFor: (NSString *)key;
@@ -1,7 +1,7 @@
1
- #import "ReactNativeConfig.h"
1
+ #import "RNCConfig.h"
2
2
  #import "GeneratedDotEnv.m" // written during build by BuildDotenvConfig.ruby
3
3
 
4
- @implementation ReactNativeConfig
4
+ @implementation RNCConfig
5
5
 
6
6
  + (NSDictionary *)env {
7
7
  return (NSDictionary *)DOT_ENV;
@@ -6,7 +6,7 @@
6
6
  #import "RCTBridgeModule.h"
7
7
  #endif
8
8
 
9
- @interface ReactNativeConfigModule : NSObject <RCTBridgeModule>
9
+ @interface RNCConfigModule : NSObject <RCTBridgeModule>
10
10
 
11
11
  + (NSDictionary *)env;
12
12
  + (NSString *)envFor: (NSString *)key;
@@ -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 /* ReactNativeConfigModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 07BF4DBC2476FBED00E59829 /* ReactNativeConfigModule.m */; };
11
- 3DF7F6B6203AA0C200D0EAB7 /* ReactNativeConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = EBE4E8461C7D2456000F8875 /* ReactNativeConfig.m */; };
12
- 3DF7F6B7203AA0D600D0EAB7 /* ReactNativeConfig.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = EB2648E21C7BE17A00B8F155 /* ReactNativeConfig.h */; };
13
- EB2648E31C7BE17A00B8F155 /* ReactNativeConfig.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = EB2648E21C7BE17A00B8F155 /* ReactNativeConfig.h */; };
14
- EBE4E8471C7D2456000F8875 /* ReactNativeConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = EBE4E8461C7D2456000F8875 /* ReactNativeConfig.m */; };
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 /* ReactNativeConfig.h in CopyFiles */,
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 /* ReactNativeConfig.h in CopyFiles */,
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 /* ReactNativeConfigModule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReactNativeConfigModule.h; sourceTree = "<group>"; };
61
- 07BF4DBC2476FBED00E59829 /* ReactNativeConfigModule.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReactNativeConfigModule.m; sourceTree = "<group>"; };
62
- 3DF7F6AC203AA09B00D0EAB7 /* libReactNativeConfig-tvOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libReactNativeConfig-tvOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
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 /* libReactNativeConfig.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libReactNativeConfig.a; sourceTree = BUILT_PRODUCTS_DIR; };
66
- EB2648E21C7BE17A00B8F155 /* ReactNativeConfig.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReactNativeConfig.h; sourceTree = "<group>"; };
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 /* ReactNativeConfig.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ReactNativeConfig.m; sourceTree = "<group>"; };
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 /* libReactNativeConfig.a */,
101
- 3DF7F6AC203AA09B00D0EAB7 /* libReactNativeConfig-tvOS.a */,
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 /* ReactNativeConfig.h */,
111
- EBE4E8461C7D2456000F8875 /* ReactNativeConfig.m */,
112
- 07BF4DBB2476FBED00E59829 /* ReactNativeConfigModule.h */,
113
- 07BF4DBC2476FBED00E59829 /* ReactNativeConfigModule.m */,
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 /* libReactNativeConfig-tvOS.a */;
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 /* libReactNativeConfig.a */;
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 /* ReactNativeConfig.m in Sources */,
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 /* ReactNativeConfigModule.m in Sources */,
243
- EBE4E8471C7D2456000F8875 /* ReactNativeConfig.m in Sources */,
242
+ 07BF4DBD2476FBED00E59829 /* RNCConfigModule.m in Sources */,
243
+ EBE4E8471C7D2456000F8875 /* RNCConfig.m in Sources */,
244
244
  );
245
245
  runOnlyForDeploymentPostprocessing = 0;
246
246
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-config",
3
- "version": "1.4.12",
3
+ "version": "1.5.0",
4
4
  "description": "Expose config variables to React Native apps",
5
5
  "keywords": [
6
6
  "env",
@@ -51,7 +51,7 @@ HOST_PATH="$SRCROOT/../.."
51
51
  input_files: ['$PODS_TARGET_SRCROOT/ios/ReactNativeConfig/BuildDotenvConfig.rb'],
52
52
  output_files: ['$PODS_TARGET_SRCROOT/ios/ReactNativeConfig/GeneratedDotEnv.m']
53
53
  }
54
- ext.source_files = ['ios/**/ReactNativeConfig.{h,m}', 'ios/**/GeneratedDotEnv.m']
54
+ ext.source_files = ['ios/**/RNCConfig.{h,m}', 'ios/**/GeneratedDotEnv.m']
55
55
  end
56
56
 
57
57
  end
@@ -8,8 +8,8 @@
8
8
  #include "RNCConfigValues.h"
9
9
  namespace RNCConfig
10
10
  {
11
- REACT_MODULE(ReactNativeConfigModule);
12
- struct ReactNativeConfigModule
11
+ REACT_MODULE(RNCConfigModule);
12
+ struct RNCConfigModule
13
13
  {
14
14
  #include "RNCConfigValuesModule.inc.g.h"
15
15
  };
@@ -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
@@ -1,5 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <Bucket
3
- type = "1"
4
- version = "2.0">
5
- </Bucket>
@@ -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>