diff --git a/platforms/react-native/sample/android/app/build.gradle b/platforms/react-native/sample/android/app/build.gradle index 8b296825..b25a8f69 100644 --- a/platforms/react-native/sample/android/app/build.gradle +++ b/platforms/react-native/sample/android/app/build.gradle @@ -56,7 +56,7 @@ react { // bundleConfig = file(../rn-cli.config.js) // // The name of the generated asset file containing your JS bundle - bundleAssetName = "ReactNative.android.bundle" + bundleAssetName = "CheckoutKitReactNativeDemo.android.bundle" // // The entry file for bundle generation. Default is 'index.android.js' or 'index.js' entryFile = file("../../index.js") @@ -103,9 +103,9 @@ android { } } - namespace "com.shopify.checkoutkitreactnative" + namespace "com.shopify.checkoutkit.reactnativedemo" defaultConfig { - applicationId "com.shopify.checkoutkitreactnative" + applicationId "com.shopify.checkoutkit.reactnativedemo" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion versionCode 11 diff --git a/platforms/react-native/sample/android/app/proguard-rules.pro b/platforms/react-native/sample/android/app/proguard-rules.pro index a7136906..89120410 100644 --- a/platforms/react-native/sample/android/app/proguard-rules.pro +++ b/platforms/react-native/sample/android/app/proguard-rules.pro @@ -8,4 +8,4 @@ # http://developer.android.com/guide/developing/tools/proguard.html # Add any project specific keep options here: --keep class com.shopify.checkoutkitreactnative.BuildConfig { *; } +-keep class com.shopify.checkoutkit.reactnativedemo.BuildConfig { *; } diff --git a/platforms/react-native/sample/android/app/src/main/java/com/shopify/checkoutkitreactnative/MainActivity.kt b/platforms/react-native/sample/android/app/src/main/java/com/shopify/checkoutkit/reactnativedemo/MainActivity.kt similarity index 85% rename from platforms/react-native/sample/android/app/src/main/java/com/shopify/checkoutkitreactnative/MainActivity.kt rename to platforms/react-native/sample/android/app/src/main/java/com/shopify/checkoutkit/reactnativedemo/MainActivity.kt index 1893cc62..9c50d309 100644 --- a/platforms/react-native/sample/android/app/src/main/java/com/shopify/checkoutkitreactnative/MainActivity.kt +++ b/platforms/react-native/sample/android/app/src/main/java/com/shopify/checkoutkit/reactnativedemo/MainActivity.kt @@ -1,4 +1,4 @@ -package com.shopify.checkoutkitreactnative +package com.shopify.checkoutkit.reactnativedemo import com.facebook.react.ReactActivity import com.facebook.react.ReactActivityDelegate @@ -11,7 +11,7 @@ class MainActivity : ReactActivity() { * Returns the name of the main component registered from JavaScript. This is used to schedule * rendering of the component. */ - override fun getMainComponentName(): String = "ReactNative" + override fun getMainComponentName(): String = "CheckoutKitReactNativeDemo" /** * Returns the instance of the [ReactActivityDelegate]. We use [DefaultReactActivityDelegate] diff --git a/platforms/react-native/sample/android/app/src/main/java/com/shopify/checkoutkitreactnative/MainApplication.kt b/platforms/react-native/sample/android/app/src/main/java/com/shopify/checkoutkit/reactnativedemo/MainApplication.kt similarity index 96% rename from platforms/react-native/sample/android/app/src/main/java/com/shopify/checkoutkitreactnative/MainApplication.kt rename to platforms/react-native/sample/android/app/src/main/java/com/shopify/checkoutkit/reactnativedemo/MainApplication.kt index a04a5a69..3ebe2007 100644 --- a/platforms/react-native/sample/android/app/src/main/java/com/shopify/checkoutkitreactnative/MainApplication.kt +++ b/platforms/react-native/sample/android/app/src/main/java/com/shopify/checkoutkit/reactnativedemo/MainApplication.kt @@ -1,4 +1,4 @@ -package com.shopify.checkoutkitreactnative +package com.shopify.checkoutkit.reactnativedemo import android.app.Application import com.facebook.react.PackageList diff --git a/platforms/react-native/sample/android/app/src/main/res/values/strings.xml b/platforms/react-native/sample/android/app/src/main/res/values/strings.xml index a543a232..86ec0bae 100644 --- a/platforms/react-native/sample/android/app/src/main/res/values/strings.xml +++ b/platforms/react-native/sample/android/app/src/main/res/values/strings.xml @@ -1,4 +1,4 @@ - ReactNative + Checkout Kit React Native Demo Checkout diff --git a/platforms/react-native/sample/android/app/src/test/java/com/shopify/checkoutkitreactnative/ShopifyCheckoutKitModuleTest.java b/platforms/react-native/sample/android/app/src/test/java/com/shopify/checkoutkit/reactnativedemo/ShopifyCheckoutKitModuleTest.java similarity index 99% rename from platforms/react-native/sample/android/app/src/test/java/com/shopify/checkoutkitreactnative/ShopifyCheckoutKitModuleTest.java rename to platforms/react-native/sample/android/app/src/test/java/com/shopify/checkoutkit/reactnativedemo/ShopifyCheckoutKitModuleTest.java index b6091857..0ffa3f20 100644 --- a/platforms/react-native/sample/android/app/src/test/java/com/shopify/checkoutkitreactnative/ShopifyCheckoutKitModuleTest.java +++ b/platforms/react-native/sample/android/app/src/test/java/com/shopify/checkoutkit/reactnativedemo/ShopifyCheckoutKitModuleTest.java @@ -1,4 +1,4 @@ -package com.shopify.checkoutkitreactnative; +package com.shopify.checkoutkit.reactnativedemo; import android.webkit.GeolocationPermissions; diff --git a/platforms/react-native/sample/android/settings.gradle b/platforms/react-native/sample/android/settings.gradle index 4d29763b..01c38620 100644 --- a/platforms/react-native/sample/android/settings.gradle +++ b/platforms/react-native/sample/android/settings.gradle @@ -15,7 +15,7 @@ extensions.configure(com.facebook.react.ReactSettingsExtension) { ex -> ) } -rootProject.name = 'ReactNative' +rootProject.name = 'CheckoutKitReactNativeDemo' include ':app' include ':react-native-config' diff --git a/platforms/react-native/sample/app.json b/platforms/react-native/sample/app.json index 8782677f..9caa1a35 100644 --- a/platforms/react-native/sample/app.json +++ b/platforms/react-native/sample/app.json @@ -1,4 +1,4 @@ { - "name": "ReactNative", - "displayName": "Shopify Checkout" + "name": "CheckoutKitReactNativeDemo", + "displayName": "Checkout Kit React Native Demo" } diff --git a/platforms/react-native/sample/ios/AppDelegate.swift b/platforms/react-native/sample/ios/AppDelegate.swift index 331d8544..3fb783cb 100644 --- a/platforms/react-native/sample/ios/AppDelegate.swift +++ b/platforms/react-native/sample/ios/AppDelegate.swift @@ -24,7 +24,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate { window = UIWindow(frame: UIScreen.main.bounds) factory.startReactNative( - withModuleName: "ReactNative", + withModuleName: "CheckoutKitReactNativeDemo", in: window, launchOptions: launchOptions ) diff --git a/platforms/react-native/sample/ios/ReactNative-Bridging-Header.h b/platforms/react-native/sample/ios/CheckoutKitReactNativeDemo-Bridging-Header.h similarity index 100% rename from platforms/react-native/sample/ios/ReactNative-Bridging-Header.h rename to platforms/react-native/sample/ios/CheckoutKitReactNativeDemo-Bridging-Header.h diff --git a/platforms/react-native/sample/ios/ReactNative.xcodeproj/project.pbxproj b/platforms/react-native/sample/ios/CheckoutKitReactNativeDemo.xcodeproj/project.pbxproj similarity index 79% rename from platforms/react-native/sample/ios/ReactNative.xcodeproj/project.pbxproj rename to platforms/react-native/sample/ios/CheckoutKitReactNativeDemo.xcodeproj/project.pbxproj index f36e4308..3ac14181 100644 --- a/platforms/react-native/sample/ios/ReactNative.xcodeproj/project.pbxproj +++ b/platforms/react-native/sample/ios/CheckoutKitReactNativeDemo.xcodeproj/project.pbxproj @@ -7,9 +7,9 @@ objects = { /* Begin PBXBuildFile section */ - 0A018AC7205EBA49E1E67311 /* libPods-ReactNative.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9E0AC43398437CA0E3D05DDF /* libPods-ReactNative.a */; }; + 0A018AC7205EBA49E1E67311 /* libPods-CheckoutKitReactNativeDemo.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9E0AC43398437CA0E3D05DDF /* libPods-CheckoutKitReactNativeDemo.a */; }; 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; - 37C6EE1EB87AA54212E67EDE /* libPods-ReactNativeTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 591887D86C91BE07EFFC9303 /* libPods-ReactNativeTests.a */; }; + 37C6EE1EB87AA54212E67EDE /* libPods-CheckoutKitReactNativeDemoTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 591887D86C91BE07EFFC9303 /* libPods-CheckoutKitReactNativeDemoTests.a */; }; 6A1F48E72B16900600BA591C /* ShopifyCheckoutKitTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6A1F48E62B16900600BA591C /* ShopifyCheckoutKitTests.swift */; }; 6A58AAE82E607E0200A6AA85 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6A58AAE72E607DFB00A6AA85 /* AppDelegate.swift */; }; 6A86196D2BF36EB900E5EE1A /* CheckoutDidFailTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6A86196C2BF36EB900E5EE1A /* CheckoutDidFailTests.swift */; }; @@ -27,37 +27,37 @@ containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; proxyType = 1; remoteGlobalIDString = 13B07F861A680F5B00A75B9A; - remoteInfo = ReactNative; + remoteInfo = CheckoutKitReactNativeDemo; }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - 00E356EE1AD99517003FC87E /* ReactNativeTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ReactNativeTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; - 13B07F961A680F5B00A75B9A /* ReactNative.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ReactNative.app; sourceTree = BUILT_PRODUCTS_DIR; }; - 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = ReactNative/Images.xcassets; sourceTree = ""; }; - 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = ReactNative/Info.plist; sourceTree = ""; }; - 1939D329B2C035D1A15E316B /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = ReactNative/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 39099806D4750FF73C4975E3 /* Pods-ReactNativeTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNativeTests.release.xcconfig"; path = "Target Support Files/Pods-ReactNativeTests/Pods-ReactNativeTests.release.xcconfig"; sourceTree = ""; }; - 4EF1B8B6CA16C991C5BEE2F2 /* Pods-ReactNative.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNative.release.xcconfig"; path = "Target Support Files/Pods-ReactNative/Pods-ReactNative.release.xcconfig"; sourceTree = ""; }; - 591887D86C91BE07EFFC9303 /* libPods-ReactNativeTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ReactNativeTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 00E356EE1AD99517003FC87E /* CheckoutKitReactNativeDemoTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CheckoutKitReactNativeDemoTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 13B07F961A680F5B00A75B9A /* CheckoutKitReactNativeDemo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = CheckoutKitReactNativeDemo.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = CheckoutKitReactNativeDemo/Images.xcassets; sourceTree = ""; }; + 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = CheckoutKitReactNativeDemo/Info.plist; sourceTree = ""; }; + 1939D329B2C035D1A15E316B /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = CheckoutKitReactNativeDemo/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 39099806D4750FF73C4975E3 /* Pods-CheckoutKitReactNativeDemoTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CheckoutKitReactNativeDemoTests.release.xcconfig"; path = "Target Support Files/Pods-CheckoutKitReactNativeDemoTests/Pods-CheckoutKitReactNativeDemoTests.release.xcconfig"; sourceTree = ""; }; + 4EF1B8B6CA16C991C5BEE2F2 /* Pods-CheckoutKitReactNativeDemo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CheckoutKitReactNativeDemo.release.xcconfig"; path = "Target Support Files/Pods-CheckoutKitReactNativeDemo/Pods-CheckoutKitReactNativeDemo.release.xcconfig"; sourceTree = ""; }; + 591887D86C91BE07EFFC9303 /* libPods-CheckoutKitReactNativeDemoTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-CheckoutKitReactNativeDemoTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 6A1F48E62B16900600BA591C /* ShopifyCheckoutKitTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShopifyCheckoutKitTests.swift; sourceTree = ""; }; 6A58AAE72E607DFB00A6AA85 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 6A86196C2BF36EB900E5EE1A /* CheckoutDidFailTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CheckoutDidFailTests.swift; sourceTree = ""; }; - 6A8D64CF2AF25C1200FE4E4A /* ReactNative.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; name = ReactNative.entitlements; path = ReactNative/ReactNative.entitlements; sourceTree = ""; }; + 6A8D64CF2AF25C1200FE4E4A /* CheckoutKitReactNativeDemo.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; name = CheckoutKitReactNativeDemo.entitlements; path = CheckoutKitReactNativeDemo/CheckoutKitReactNativeDemo.entitlements; sourceTree = ""; }; 6AABC1942B17417E008240EB /* OpenSSL.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = OpenSSL.xcframework; path = "Pods/OpenSSL-Universal/Frameworks/OpenSSL.xcframework"; sourceTree = ""; }; 6AAEC3572B067AD500C7099B /* Entypo.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = Entypo.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Entypo.ttf"; sourceTree = ""; }; 6AEEAAB02C00010100E5EE1B /* AcceleratedCheckouts_SupportedTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AcceleratedCheckouts_SupportedTests.swift; sourceTree = ""; }; 6AEEAAB12C00010100E5EE1B /* AcceleratedCheckouts_UnsupportedTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AcceleratedCheckouts_UnsupportedTests.swift; sourceTree = ""; }; 6AF1E0022C00010100E5EE1B /* EventSerializationTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EventSerializationTests.swift; sourceTree = ""; }; - 6AF2B3762B0BCA6600C6CE4F /* ReactNative-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "ReactNative-Bridging-Header.h"; sourceTree = ""; }; - 6AFAD2D12BA9DEF8001F9644 /* Localizable.xcstrings */ = {isa = PBXFileReference; lastKnownFileType = text.json.xcstrings; name = Localizable.xcstrings; path = ReactNative/Localizable.xcstrings; sourceTree = ""; }; + 6AF2B3762B0BCA6600C6CE4F /* CheckoutKitReactNativeDemo-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CheckoutKitReactNativeDemo-Bridging-Header.h"; sourceTree = ""; }; + 6AFAD2D12BA9DEF8001F9644 /* Localizable.xcstrings */ = {isa = PBXFileReference; lastKnownFileType = text.json.xcstrings; name = Localizable.xcstrings; path = CheckoutKitReactNativeDemo/Localizable.xcstrings; sourceTree = ""; }; 6AFC2CB62B0D5814003B5A63 /* libShopifyCheckoutKit.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libShopifyCheckoutKit.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 7959053DABE1E06BE5CF1255 /* Pods-ReactNative-ReactNativeTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNative-ReactNativeTests.release.xcconfig"; path = "Target Support Files/Pods-ReactNative-ReactNativeTests/Pods-ReactNative-ReactNativeTests.release.xcconfig"; sourceTree = ""; }; - 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = ReactNative/LaunchScreen.storyboard; sourceTree = ""; }; - 9E0AC43398437CA0E3D05DDF /* libPods-ReactNative.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ReactNative.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - DF9E097D026528607DDCD7B7 /* Pods-ReactNative-ReactNativeTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNative-ReactNativeTests.debug.xcconfig"; path = "Target Support Files/Pods-ReactNative-ReactNativeTests/Pods-ReactNative-ReactNativeTests.debug.xcconfig"; sourceTree = ""; }; - E22D02A7C54F90741A3D90E9 /* Pods-ReactNativeTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNativeTests.debug.xcconfig"; path = "Target Support Files/Pods-ReactNativeTests/Pods-ReactNativeTests.debug.xcconfig"; sourceTree = ""; }; - ED728EF8BB9B5E9BA9D50EBE /* Pods-ReactNative.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNative.debug.xcconfig"; path = "Target Support Files/Pods-ReactNative/Pods-ReactNative.debug.xcconfig"; sourceTree = ""; }; + 7959053DABE1E06BE5CF1255 /* Pods-CheckoutKitReactNativeDemo-CheckoutKitReactNativeDemoTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CheckoutKitReactNativeDemo-CheckoutKitReactNativeDemoTests.release.xcconfig"; path = "Target Support Files/Pods-CheckoutKitReactNativeDemo-CheckoutKitReactNativeDemoTests/Pods-CheckoutKitReactNativeDemo-CheckoutKitReactNativeDemoTests.release.xcconfig"; sourceTree = ""; }; + 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = CheckoutKitReactNativeDemo/LaunchScreen.storyboard; sourceTree = ""; }; + 9E0AC43398437CA0E3D05DDF /* libPods-CheckoutKitReactNativeDemo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-CheckoutKitReactNativeDemo.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + DF9E097D026528607DDCD7B7 /* Pods-CheckoutKitReactNativeDemo-CheckoutKitReactNativeDemoTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CheckoutKitReactNativeDemo-CheckoutKitReactNativeDemoTests.debug.xcconfig"; path = "Target Support Files/Pods-CheckoutKitReactNativeDemo-CheckoutKitReactNativeDemoTests/Pods-CheckoutKitReactNativeDemo-CheckoutKitReactNativeDemoTests.debug.xcconfig"; sourceTree = ""; }; + E22D02A7C54F90741A3D90E9 /* Pods-CheckoutKitReactNativeDemoTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CheckoutKitReactNativeDemoTests.debug.xcconfig"; path = "Target Support Files/Pods-CheckoutKitReactNativeDemoTests/Pods-CheckoutKitReactNativeDemoTests.debug.xcconfig"; sourceTree = ""; }; + ED728EF8BB9B5E9BA9D50EBE /* Pods-CheckoutKitReactNativeDemo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CheckoutKitReactNativeDemo.debug.xcconfig"; path = "Target Support Files/Pods-CheckoutKitReactNativeDemo/Pods-CheckoutKitReactNativeDemo.debug.xcconfig"; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -65,7 +65,7 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 37C6EE1EB87AA54212E67EDE /* libPods-ReactNativeTests.a in Frameworks */, + 37C6EE1EB87AA54212E67EDE /* libPods-CheckoutKitReactNativeDemoTests.a in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -73,14 +73,14 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 0A018AC7205EBA49E1E67311 /* libPods-ReactNative.a in Frameworks */, + 0A018AC7205EBA49E1E67311 /* libPods-CheckoutKitReactNativeDemo.a in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 00E356EF1AD99517003FC87E /* ReactNativeTests */ = { + 00E356EF1AD99517003FC87E /* CheckoutKitReactNativeDemoTests */ = { isa = PBXGroup; children = ( 00E356F01AD99517003FC87E /* Supporting Files */, @@ -90,7 +90,7 @@ 6AEEAAB12C00010100E5EE1B /* AcceleratedCheckouts_UnsupportedTests.swift */, 6AF1E0022C00010100E5EE1B /* EventSerializationTests.swift */, ); - path = ReactNativeTests; + path = CheckoutKitReactNativeDemoTests; sourceTree = ""; }; 00E356F01AD99517003FC87E /* Supporting Files */ = { @@ -100,20 +100,20 @@ name = "Supporting Files"; sourceTree = ""; }; - 13B07FAE1A68108700A75B9A /* ReactNative */ = { + 13B07FAE1A68108700A75B9A /* CheckoutKitReactNativeDemo */ = { isa = PBXGroup; children = ( 6A58AAE72E607DFB00A6AA85 /* AppDelegate.swift */, - 6AF2B3762B0BCA6600C6CE4F /* ReactNative-Bridging-Header.h */, + 6AF2B3762B0BCA6600C6CE4F /* CheckoutKitReactNativeDemo-Bridging-Header.h */, 6AAEC3572B067AD500C7099B /* Entypo.ttf */, - 6A8D64CF2AF25C1200FE4E4A /* ReactNative.entitlements */, + 6A8D64CF2AF25C1200FE4E4A /* CheckoutKitReactNativeDemo.entitlements */, 13B07FB51A68108700A75B9A /* Images.xcassets */, 13B07FB61A68108700A75B9A /* Info.plist */, 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */, 6AFAD2D12BA9DEF8001F9644 /* Localizable.xcstrings */, 1939D329B2C035D1A15E316B /* PrivacyInfo.xcprivacy */, ); - name = ReactNative; + name = CheckoutKitReactNativeDemo; sourceTree = ""; }; 6A18CE262AF1B119007B1B08 /* Frameworks */ = { @@ -121,8 +121,8 @@ children = ( 6AABC1942B17417E008240EB /* OpenSSL.xcframework */, 6AFC2CB62B0D5814003B5A63 /* libShopifyCheckoutKit.a */, - 9E0AC43398437CA0E3D05DDF /* libPods-ReactNative.a */, - 591887D86C91BE07EFFC9303 /* libPods-ReactNativeTests.a */, + 9E0AC43398437CA0E3D05DDF /* libPods-CheckoutKitReactNativeDemo.a */, + 591887D86C91BE07EFFC9303 /* libPods-CheckoutKitReactNativeDemoTests.a */, ); name = Frameworks; sourceTree = ""; @@ -145,9 +145,9 @@ isa = PBXGroup; children = ( 6AB7C68F2AF197BE000DB11B /* Packages */, - 13B07FAE1A68108700A75B9A /* ReactNative */, + 13B07FAE1A68108700A75B9A /* CheckoutKitReactNativeDemo */, 832341AE1AAA6A7D00B99B32 /* Libraries */, - 00E356EF1AD99517003FC87E /* ReactNativeTests */, + 00E356EF1AD99517003FC87E /* CheckoutKitReactNativeDemoTests */, 83CBBA001A601CBA00E9B192 /* Products */, BBD78D7AC51CEA395F1C20DB /* Pods */, 6A18CE262AF1B119007B1B08 /* Frameworks */, @@ -160,8 +160,8 @@ 83CBBA001A601CBA00E9B192 /* Products */ = { isa = PBXGroup; children = ( - 13B07F961A680F5B00A75B9A /* ReactNative.app */, - 00E356EE1AD99517003FC87E /* ReactNativeTests.xctest */, + 13B07F961A680F5B00A75B9A /* CheckoutKitReactNativeDemo.app */, + 00E356EE1AD99517003FC87E /* CheckoutKitReactNativeDemoTests.xctest */, ); name = Products; sourceTree = ""; @@ -169,12 +169,12 @@ BBD78D7AC51CEA395F1C20DB /* Pods */ = { isa = PBXGroup; children = ( - ED728EF8BB9B5E9BA9D50EBE /* Pods-ReactNative.debug.xcconfig */, - 4EF1B8B6CA16C991C5BEE2F2 /* Pods-ReactNative.release.xcconfig */, - DF9E097D026528607DDCD7B7 /* Pods-ReactNative-ReactNativeTests.debug.xcconfig */, - 7959053DABE1E06BE5CF1255 /* Pods-ReactNative-ReactNativeTests.release.xcconfig */, - E22D02A7C54F90741A3D90E9 /* Pods-ReactNativeTests.debug.xcconfig */, - 39099806D4750FF73C4975E3 /* Pods-ReactNativeTests.release.xcconfig */, + ED728EF8BB9B5E9BA9D50EBE /* Pods-CheckoutKitReactNativeDemo.debug.xcconfig */, + 4EF1B8B6CA16C991C5BEE2F2 /* Pods-CheckoutKitReactNativeDemo.release.xcconfig */, + DF9E097D026528607DDCD7B7 /* Pods-CheckoutKitReactNativeDemo-CheckoutKitReactNativeDemoTests.debug.xcconfig */, + 7959053DABE1E06BE5CF1255 /* Pods-CheckoutKitReactNativeDemo-CheckoutKitReactNativeDemoTests.release.xcconfig */, + E22D02A7C54F90741A3D90E9 /* Pods-CheckoutKitReactNativeDemoTests.debug.xcconfig */, + 39099806D4750FF73C4975E3 /* Pods-CheckoutKitReactNativeDemoTests.release.xcconfig */, ); path = Pods; sourceTree = ""; @@ -182,9 +182,9 @@ /* End PBXGroup section */ /* Begin PBXNativeTarget section */ - 00E356ED1AD99517003FC87E /* ReactNativeTests */ = { + 00E356ED1AD99517003FC87E /* CheckoutKitReactNativeDemoTests */ = { isa = PBXNativeTarget; - buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "ReactNativeTests" */; + buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "CheckoutKitReactNativeDemoTests" */; buildPhases = ( 13CD11EE2D19D04D273718C4 /* [CP] Check Pods Manifest.lock */, 00E356EA1AD99517003FC87E /* Sources */, @@ -196,14 +196,14 @@ dependencies = ( 00E356F51AD99517003FC87E /* PBXTargetDependency */, ); - name = ReactNativeTests; - productName = ReactNativeTests; - productReference = 00E356EE1AD99517003FC87E /* ReactNativeTests.xctest */; + name = CheckoutKitReactNativeDemoTests; + productName = CheckoutKitReactNativeDemoTests; + productReference = 00E356EE1AD99517003FC87E /* CheckoutKitReactNativeDemoTests.xctest */; productType = "com.apple.product-type.bundle.unit-test"; }; - 13B07F861A680F5B00A75B9A /* ReactNative */ = { + 13B07F861A680F5B00A75B9A /* CheckoutKitReactNativeDemo */ = { isa = PBXNativeTarget; - buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "ReactNative" */; + buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "CheckoutKitReactNativeDemo" */; buildPhases = ( EC9AFE111A4C07A98A76F332 /* [CP] Check Pods Manifest.lock */, 13B07F871A680F5B00A75B9A /* Sources */, @@ -217,9 +217,9 @@ ); dependencies = ( ); - name = ReactNative; - productName = ReactNative; - productReference = 13B07F961A680F5B00A75B9A /* ReactNative.app */; + name = CheckoutKitReactNativeDemo; + productName = CheckoutKitReactNativeDemo; + productReference = 13B07F961A680F5B00A75B9A /* CheckoutKitReactNativeDemo.app */; productType = "com.apple.product-type.application"; }; /* End PBXNativeTarget section */ @@ -241,7 +241,7 @@ }; }; }; - buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "ReactNative" */; + buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "CheckoutKitReactNativeDemo" */; compatibilityVersion = "Xcode 12.0"; developmentRegion = en; hasScannedForEncodings = 0; @@ -254,8 +254,8 @@ projectDirPath = ""; projectRoot = ""; targets = ( - 13B07F861A680F5B00A75B9A /* ReactNative */, - 00E356ED1AD99517003FC87E /* ReactNativeTests */, + 13B07F861A680F5B00A75B9A /* CheckoutKitReactNativeDemo */, + 00E356ED1AD99517003FC87E /* CheckoutKitReactNativeDemoTests */, ); }; /* End PBXProject section */ @@ -313,7 +313,7 @@ outputFileListPaths = ( ); outputPaths = ( - "$(DERIVED_FILE_DIR)/Pods-ReactNativeTests-checkManifestLockResult.txt", + "$(DERIVED_FILE_DIR)/Pods-CheckoutKitReactNativeDemoTests-checkManifestLockResult.txt", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; @@ -326,15 +326,15 @@ files = ( ); inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-ReactNative/Pods-ReactNative-frameworks-${CONFIGURATION}-input-files.xcfilelist", + "${PODS_ROOT}/Target Support Files/Pods-CheckoutKitReactNativeDemo/Pods-CheckoutKitReactNativeDemo-frameworks-${CONFIGURATION}-input-files.xcfilelist", ); name = "[CP] Embed Pods Frameworks"; outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-ReactNative/Pods-ReactNative-frameworks-${CONFIGURATION}-output-files.xcfilelist", + "${PODS_ROOT}/Target Support Files/Pods-CheckoutKitReactNativeDemo/Pods-CheckoutKitReactNativeDemo-frameworks-${CONFIGURATION}-output-files.xcfilelist", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-ReactNative/Pods-ReactNative-frameworks.sh\"\n"; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-CheckoutKitReactNativeDemo/Pods-CheckoutKitReactNativeDemo-frameworks.sh\"\n"; showEnvVarsInLog = 0; }; 1F1EB8B45BFDA1305B3ACC48 /* [CP] Copy Pods Resources */ = { @@ -343,15 +343,15 @@ files = ( ); inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-ReactNative/Pods-ReactNative-resources-${CONFIGURATION}-input-files.xcfilelist", + "${PODS_ROOT}/Target Support Files/Pods-CheckoutKitReactNativeDemo/Pods-CheckoutKitReactNativeDemo-resources-${CONFIGURATION}-input-files.xcfilelist", ); name = "[CP] Copy Pods Resources"; outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-ReactNative/Pods-ReactNative-resources-${CONFIGURATION}-output-files.xcfilelist", + "${PODS_ROOT}/Target Support Files/Pods-CheckoutKitReactNativeDemo/Pods-CheckoutKitReactNativeDemo-resources-${CONFIGURATION}-output-files.xcfilelist", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-ReactNative/Pods-ReactNative-resources.sh\"\n"; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-CheckoutKitReactNativeDemo/Pods-CheckoutKitReactNativeDemo-resources.sh\"\n"; showEnvVarsInLog = 0; }; EC9AFE111A4C07A98A76F332 /* [CP] Check Pods Manifest.lock */ = { @@ -369,7 +369,7 @@ outputFileListPaths = ( ); outputPaths = ( - "$(DERIVED_FILE_DIR)/Pods-ReactNative-checkManifestLockResult.txt", + "$(DERIVED_FILE_DIR)/Pods-CheckoutKitReactNativeDemo-checkManifestLockResult.txt", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; @@ -404,7 +404,7 @@ /* Begin PBXTargetDependency section */ 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = 13B07F861A680F5B00A75B9A /* ReactNative */; + target = 13B07F861A680F5B00A75B9A /* CheckoutKitReactNativeDemo */; targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ @@ -412,7 +412,7 @@ /* Begin XCBuildConfiguration section */ 00E356F61AD99517003FC87E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E22D02A7C54F90741A3D90E9 /* Pods-ReactNativeTests.debug.xcconfig */; + baseConfigurationReference = E22D02A7C54F90741A3D90E9 /* Pods-CheckoutKitReactNativeDemoTests.debug.xcconfig */; buildSettings = { BUNDLE_LOADER = "$(TEST_HOST)"; CLANG_ENABLE_MODULES = YES; @@ -477,7 +477,7 @@ "\"$(PODS_ROOT)/../../node_modules/react-native/ReactCommon\"", "\"${PODS_ROOT}/Headers/Public/RNShopifyCheckoutKit\"/**", ); - INFOPLIST_FILE = ReactNativeTests/Info.plist; + INFOPLIST_FILE = CheckoutKitReactNativeDemoTests/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 16.6; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", @@ -537,19 +537,19 @@ "-lc++", "$(inherited)", ); - PRODUCT_BUNDLE_IDENTIFIER = com.shopify.example.CheckoutKitReactNative; + PRODUCT_BUNDLE_IDENTIFIER = com.shopify.checkoutkit.reactnativedemo.tests; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_INCLUDE_PATHS = "$(inherited) \"${PODS_CONFIGURATION_BUILD_DIR}/ShopifyCheckoutKit\" \"${PODS_CONFIGURATION_BUILD_DIR}/YogaKit\" \"${PODS_CONFIGURATION_BUILD_DIR}/RNShopifyCheckoutKit\"/**"; - SWIFT_OBJC_BRIDGING_HEADER = "ReactNativeTests-Bridging-Header.h"; + SWIFT_OBJC_BRIDGING_HEADER = "CheckoutKitReactNativeDemoTests-Bridging-Header.h"; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; SWIFT_VERSION = 5.0; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ReactNative.app/ReactNative"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/CheckoutKitReactNativeDemo.app/CheckoutKitReactNativeDemo"; }; name = Debug; }; 00E356F71AD99517003FC87E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 39099806D4750FF73C4975E3 /* Pods-ReactNativeTests.release.xcconfig */; + baseConfigurationReference = 39099806D4750FF73C4975E3 /* Pods-CheckoutKitReactNativeDemoTests.release.xcconfig */; buildSettings = { BUNDLE_LOADER = "$(TEST_HOST)"; CLANG_ENABLE_MODULES = YES; @@ -611,7 +611,7 @@ "\"$(PODS_ROOT)/../../node_modules/react-native/ReactCommon\"", "\"${PODS_ROOT}/Headers/Public/RNShopifyCheckoutKit\"/**", ); - INFOPLIST_FILE = ReactNativeTests/Info.plist; + INFOPLIST_FILE = CheckoutKitReactNativeDemoTests/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 16.6; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", @@ -623,22 +623,22 @@ "-lc++", "$(inherited)", ); - PRODUCT_BUNDLE_IDENTIFIER = com.shopify.example.CheckoutKitReactNative; + PRODUCT_BUNDLE_IDENTIFIER = com.shopify.checkoutkit.reactnativedemo.tests; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_INCLUDE_PATHS = "$(inherited) \"${PODS_CONFIGURATION_BUILD_DIR}/ShopifyCheckoutKit\" \"${PODS_CONFIGURATION_BUILD_DIR}/YogaKit\" \"${PODS_CONFIGURATION_BUILD_DIR}/RNShopifyCheckoutKit\"/**"; - SWIFT_OBJC_BRIDGING_HEADER = "ReactNativeTests-Bridging-Header.h"; + SWIFT_OBJC_BRIDGING_HEADER = "CheckoutKitReactNativeDemoTests-Bridging-Header.h"; SWIFT_VERSION = 5.0; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ReactNative.app/ReactNative"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/CheckoutKitReactNativeDemo.app/CheckoutKitReactNativeDemo"; }; name = Release; }; 13B07F941A680F5B00A75B9A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = ED728EF8BB9B5E9BA9D50EBE /* Pods-ReactNative.debug.xcconfig */; + baseConfigurationReference = ED728EF8BB9B5E9BA9D50EBE /* Pods-CheckoutKitReactNativeDemo.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; - CODE_SIGN_ENTITLEMENTS = ReactNative/ReactNative.entitlements; + CODE_SIGN_ENTITLEMENTS = CheckoutKitReactNativeDemo/CheckoutKitReactNativeDemo.entitlements; CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_TEAM = A7XGC83MZE; ENABLE_BITCODE = NO; @@ -698,7 +698,7 @@ "\"$(PODS_ROOT)/Headers/Public/hermes-engine\"", "\"$(PODS_ROOT)/../../node_modules/react-native/ReactCommon\"", ); - INFOPLIST_FILE = ReactNative/Info.plist; + INFOPLIST_FILE = CheckoutKitReactNativeDemo/Info.plist; INFOPLIST_KEY_CFBundleDisplayName = "Checkout Kit React Native Demo"; IPHONEOS_DEPLOYMENT_TARGET = 16.6; LD_RUNPATH_SEARCH_PATHS = ( @@ -711,11 +711,11 @@ "-ObjC", "-lc++", ); - PRODUCT_BUNDLE_IDENTIFIER = com.shopify.example.CheckoutKitReactNative; - PRODUCT_NAME = ReactNative; + PRODUCT_BUNDLE_IDENTIFIER = com.shopify.checkoutkit.reactnativedemo; + PRODUCT_NAME = CheckoutKitReactNativeDemo; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SUPPORTS_MACCATALYST = NO; - SWIFT_OBJC_BRIDGING_HEADER = "ReactNative-Bridging-Header.h"; + SWIFT_OBJC_BRIDGING_HEADER = "CheckoutKitReactNativeDemo-Bridging-Header.h"; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = 1; @@ -725,11 +725,11 @@ }; 13B07F951A680F5B00A75B9A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4EF1B8B6CA16C991C5BEE2F2 /* Pods-ReactNative.release.xcconfig */; + baseConfigurationReference = 4EF1B8B6CA16C991C5BEE2F2 /* Pods-CheckoutKitReactNativeDemo.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; - CODE_SIGN_ENTITLEMENTS = ReactNative/ReactNative.entitlements; + CODE_SIGN_ENTITLEMENTS = CheckoutKitReactNativeDemo/CheckoutKitReactNativeDemo.entitlements; CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_TEAM = A7XGC83MZE; HEADER_SEARCH_PATHS = ( @@ -788,7 +788,7 @@ "\"$(PODS_ROOT)/Headers/Public/hermes-engine\"", "\"$(PODS_ROOT)/../../node_modules/react-native/ReactCommon\"", ); - INFOPLIST_FILE = ReactNative/Info.plist; + INFOPLIST_FILE = CheckoutKitReactNativeDemo/Info.plist; INFOPLIST_KEY_CFBundleDisplayName = "Checkout Kit React Native Demo"; IPHONEOS_DEPLOYMENT_TARGET = 16.6; LD_RUNPATH_SEARCH_PATHS = ( @@ -801,11 +801,11 @@ "-ObjC", "-lc++", ); - PRODUCT_BUNDLE_IDENTIFIER = com.shopify.example.CheckoutKitReactNative; - PRODUCT_NAME = ReactNative; + PRODUCT_BUNDLE_IDENTIFIER = com.shopify.checkoutkit.reactnativedemo; + PRODUCT_NAME = CheckoutKitReactNativeDemo; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SUPPORTS_MACCATALYST = NO; - SWIFT_OBJC_BRIDGING_HEADER = "ReactNative-Bridging-Header.h"; + SWIFT_OBJC_BRIDGING_HEADER = "CheckoutKitReactNativeDemo-Bridging-Header.h"; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = 1; VERSIONING_SYSTEM = "apple-generic"; @@ -890,7 +890,7 @@ REACT_NATIVE_PATH = "${PODS_ROOT}/../../../node_modules/react-native"; SDKROOT = iphoneos; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG"; - SWIFT_OBJC_BRIDGING_HEADER = "ReactNative-Bridging-Header.h"; + SWIFT_OBJC_BRIDGING_HEADER = "CheckoutKitReactNativeDemo-Bridging-Header.h"; USE_HERMES = true; }; name = Debug; @@ -967,7 +967,7 @@ OTHER_LDFLAGS = "$(inherited)"; REACT_NATIVE_PATH = "${PODS_ROOT}/../../../node_modules/react-native"; SDKROOT = iphoneos; - SWIFT_OBJC_BRIDGING_HEADER = "ReactNative-Bridging-Header.h"; + SWIFT_OBJC_BRIDGING_HEADER = "CheckoutKitReactNativeDemo-Bridging-Header.h"; USE_HERMES = true; VALIDATE_PRODUCT = YES; }; @@ -976,7 +976,7 @@ /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "ReactNativeTests" */ = { + 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "CheckoutKitReactNativeDemoTests" */ = { isa = XCConfigurationList; buildConfigurations = ( 00E356F61AD99517003FC87E /* Debug */, @@ -985,7 +985,7 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "ReactNative" */ = { + 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "CheckoutKitReactNativeDemo" */ = { isa = XCConfigurationList; buildConfigurations = ( 13B07F941A680F5B00A75B9A /* Debug */, @@ -994,7 +994,7 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "ReactNative" */ = { + 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "CheckoutKitReactNativeDemo" */ = { isa = XCConfigurationList; buildConfigurations = ( 83CBBA201A601CBA00E9B192 /* Debug */, diff --git a/platforms/react-native/sample/ios/ReactNative.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/platforms/react-native/sample/ios/CheckoutKitReactNativeDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata similarity index 100% rename from platforms/react-native/sample/ios/ReactNative.xcodeproj/project.xcworkspace/contents.xcworkspacedata rename to platforms/react-native/sample/ios/CheckoutKitReactNativeDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata diff --git a/platforms/react-native/sample/ios/ReactNative.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/platforms/react-native/sample/ios/CheckoutKitReactNativeDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist similarity index 100% rename from platforms/react-native/sample/ios/ReactNative.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist rename to platforms/react-native/sample/ios/CheckoutKitReactNativeDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist diff --git a/platforms/react-native/sample/ios/ReactNative.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/platforms/react-native/sample/ios/CheckoutKitReactNativeDemo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved similarity index 100% rename from platforms/react-native/sample/ios/ReactNative.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved rename to platforms/react-native/sample/ios/CheckoutKitReactNativeDemo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved diff --git a/platforms/react-native/sample/ios/ReactNative.xcodeproj/xcshareddata/xcschemes/ReactNative.xcscheme b/platforms/react-native/sample/ios/CheckoutKitReactNativeDemo.xcodeproj/xcshareddata/xcschemes/CheckoutKitReactNativeDemo.xcscheme similarity index 77% rename from platforms/react-native/sample/ios/ReactNative.xcodeproj/xcshareddata/xcschemes/ReactNative.xcscheme rename to platforms/react-native/sample/ios/CheckoutKitReactNativeDemo.xcodeproj/xcshareddata/xcschemes/CheckoutKitReactNativeDemo.xcscheme index e3e30f2e..1b32a623 100644 --- a/platforms/react-native/sample/ios/ReactNative.xcodeproj/xcshareddata/xcschemes/ReactNative.xcscheme +++ b/platforms/react-native/sample/ios/CheckoutKitReactNativeDemo.xcodeproj/xcshareddata/xcschemes/CheckoutKitReactNativeDemo.xcscheme @@ -15,9 +15,9 @@ + BuildableName = "CheckoutKitReactNativeDemo.app" + BlueprintName = "CheckoutKitReactNativeDemo" + ReferencedContainer = "container:CheckoutKitReactNativeDemo.xcodeproj"> @@ -33,9 +33,9 @@ + BuildableName = "CheckoutKitReactNativeDemoTests.xctest" + BlueprintName = "CheckoutKitReactNativeDemoTests" + ReferencedContainer = "container:CheckoutKitReactNativeDemo.xcodeproj"> @@ -55,9 +55,9 @@ + BuildableName = "CheckoutKitReactNativeDemo.app" + BlueprintName = "CheckoutKitReactNativeDemo" + ReferencedContainer = "container:CheckoutKitReactNativeDemo.xcodeproj"> @@ -79,9 +79,9 @@ + BuildableName = "CheckoutKitReactNativeDemo.app" + BlueprintName = "CheckoutKitReactNativeDemo" + ReferencedContainer = "container:CheckoutKitReactNativeDemo.xcodeproj"> diff --git a/platforms/react-native/sample/ios/ReactNative.xcworkspace/contents.xcworkspacedata b/platforms/react-native/sample/ios/CheckoutKitReactNativeDemo.xcworkspace/contents.xcworkspacedata similarity index 74% rename from platforms/react-native/sample/ios/ReactNative.xcworkspace/contents.xcworkspacedata rename to platforms/react-native/sample/ios/CheckoutKitReactNativeDemo.xcworkspace/contents.xcworkspacedata index 9b3933a9..26b732cb 100644 --- a/platforms/react-native/sample/ios/ReactNative.xcworkspace/contents.xcworkspacedata +++ b/platforms/react-native/sample/ios/CheckoutKitReactNativeDemo.xcworkspace/contents.xcworkspacedata @@ -2,7 +2,7 @@ + location = "group:CheckoutKitReactNativeDemo.xcodeproj"> diff --git a/platforms/react-native/sample/ios/ReactNative.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/platforms/react-native/sample/ios/CheckoutKitReactNativeDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist similarity index 100% rename from platforms/react-native/sample/ios/ReactNative.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist rename to platforms/react-native/sample/ios/CheckoutKitReactNativeDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist diff --git a/platforms/react-native/sample/ios/ReactNative/ReactNative.entitlements b/platforms/react-native/sample/ios/CheckoutKitReactNativeDemo/CheckoutKitReactNativeDemo.entitlements similarity index 85% rename from platforms/react-native/sample/ios/ReactNative/ReactNative.entitlements rename to platforms/react-native/sample/ios/CheckoutKitReactNativeDemo/CheckoutKitReactNativeDemo.entitlements index dda6002c..9d2a9244 100644 --- a/platforms/react-native/sample/ios/ReactNative/ReactNative.entitlements +++ b/platforms/react-native/sample/ios/CheckoutKitReactNativeDemo/CheckoutKitReactNativeDemo.entitlements @@ -9,7 +9,7 @@ com.apple.developer.in-app-payments - merchant.com.shopify.example.CheckoutKitReactNative + merchant.com.shopify.checkoutkit.reactnativedemo diff --git a/platforms/react-native/sample/ios/ReactNative/Images.xcassets/AppIcon.appiconset/1024.jpg b/platforms/react-native/sample/ios/CheckoutKitReactNativeDemo/Images.xcassets/AppIcon.appiconset/1024.jpg similarity index 100% rename from platforms/react-native/sample/ios/ReactNative/Images.xcassets/AppIcon.appiconset/1024.jpg rename to platforms/react-native/sample/ios/CheckoutKitReactNativeDemo/Images.xcassets/AppIcon.appiconset/1024.jpg diff --git a/platforms/react-native/sample/ios/ReactNative/Images.xcassets/AppIcon.appiconset/Contents.json b/platforms/react-native/sample/ios/CheckoutKitReactNativeDemo/Images.xcassets/AppIcon.appiconset/Contents.json similarity index 100% rename from platforms/react-native/sample/ios/ReactNative/Images.xcassets/AppIcon.appiconset/Contents.json rename to platforms/react-native/sample/ios/CheckoutKitReactNativeDemo/Images.xcassets/AppIcon.appiconset/Contents.json diff --git a/platforms/react-native/sample/ios/ReactNative/Images.xcassets/Contents.json b/platforms/react-native/sample/ios/CheckoutKitReactNativeDemo/Images.xcassets/Contents.json similarity index 100% rename from platforms/react-native/sample/ios/ReactNative/Images.xcassets/Contents.json rename to platforms/react-native/sample/ios/CheckoutKitReactNativeDemo/Images.xcassets/Contents.json diff --git a/platforms/react-native/sample/ios/ReactNative/Info.plist b/platforms/react-native/sample/ios/CheckoutKitReactNativeDemo/Info.plist similarity index 97% rename from platforms/react-native/sample/ios/ReactNative/Info.plist rename to platforms/react-native/sample/ios/CheckoutKitReactNativeDemo/Info.plist index eb830f68..cbc78d1a 100644 --- a/platforms/react-native/sample/ios/ReactNative/Info.plist +++ b/platforms/react-native/sample/ios/CheckoutKitReactNativeDemo/Info.plist @@ -5,7 +5,7 @@ CFBundleDevelopmentRegion en CFBundleDisplayName - ReactNative + Checkout Kit React Native Demo CFBundleExecutable $(EXECUTABLE_NAME) CFBundleIdentifier diff --git a/platforms/react-native/sample/ios/ReactNative/LaunchScreen.storyboard b/platforms/react-native/sample/ios/CheckoutKitReactNativeDemo/LaunchScreen.storyboard similarity index 93% rename from platforms/react-native/sample/ios/ReactNative/LaunchScreen.storyboard rename to platforms/react-native/sample/ios/CheckoutKitReactNativeDemo/LaunchScreen.storyboard index b954db79..cf7c6ebb 100644 --- a/platforms/react-native/sample/ios/ReactNative/LaunchScreen.storyboard +++ b/platforms/react-native/sample/ios/CheckoutKitReactNativeDemo/LaunchScreen.storyboard @@ -16,7 +16,7 @@ -