diff --git a/.github/workflows/android-build-test.yml b/.github/workflows/android-build-test.yml index 19e7b36b6..9a5e2d034 100644 --- a/.github/workflows/android-build-test.yml +++ b/.github/workflows/android-build-test.yml @@ -6,8 +6,8 @@ on: - 'android/**' - 'src/fabric/**' - 'package.json' - - 'apps/example/android/**' - - 'apps/example/package.json' + - 'apps/paper-example/android/**' + - 'apps/paper-example/package.json' - 'apps/fabric-example/android/**' - 'apps/fabric-example/package.json' push: @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - working-directory: [example, fabric-example] + working-directory: [paper-example, fabric-example] fail-fast: false concurrency: group: android-${{ matrix.working-directory }}-${{ github.ref }} diff --git a/.github/workflows/e2e-android.yml b/.github/workflows/e2e-android.yml index 14a2a236a..2872c9921 100644 --- a/.github/workflows/e2e-android.yml +++ b/.github/workflows/e2e-android.yml @@ -3,7 +3,7 @@ on: pull_request: paths: - .github/workflows/e2e-android.yml - - apps/example/** + - apps/common/example/** - android/** - src/** - e2e/** @@ -17,7 +17,7 @@ jobs: runs-on: macos-12 timeout-minutes: 60 env: - WORKING_DIRECTORY: example + WORKING_DIRECTORY: paper-example API_LEVEL: 34 SYSTEM_IMAGES: system-images;android-34;google_apis;x86_64 AVD_NAME: rn-svg-avd diff --git a/.github/workflows/e2e-ios.yml b/.github/workflows/e2e-ios.yml index 9d56e6be1..710b31d01 100644 --- a/.github/workflows/e2e-ios.yml +++ b/.github/workflows/e2e-ios.yml @@ -19,7 +19,7 @@ jobs: timeout-minutes: 60 strategy: matrix: - working-directory: [example] + working-directory: [paper-example] fail-fast: false env: DEVICE: iPhone 16 Pro diff --git a/.github/workflows/ios-build-test.yml b/.github/workflows/ios-build-test.yml index d2d821910..fed69061d 100644 --- a/.github/workflows/ios-build-test.yml +++ b/.github/workflows/ios-build-test.yml @@ -7,8 +7,8 @@ on: - apple/** - src/fabric/** - package.json - - apps/example/package.json - - apps/example/ios/** + - apps/paper-example/package.json + - apps/paper-example/ios/** - apps/fabric-example/package.json - apps/fabric-example/ios/** push: @@ -21,7 +21,7 @@ jobs: runs-on: macos-14 strategy: matrix: - working-directory: [example, fabric-example] + working-directory: [paper-example, fabric-example] fail-fast: false concurrency: group: ios-${{ matrix.working-directory }}-${{ github.ref }} diff --git a/README.md b/README.md index 2ffa747d8..644e073a2 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ `react-native-svg` provides SVG support to React Native on iOS, Android, macOS, Windows, and a compatibility layer for the web. -[Check out the Example app](https://github.com/react-native-svg/react-native-svg/tree/main/example) +[Check out the Example app](https://github.com/software-mansion/react-native-svg/tree/main/apps/common/example) - [Features](#features) - [Installation](#installation) diff --git a/apps/common/example/index.tsx b/apps/common/example/index.tsx index 282686181..133766d62 100644 --- a/apps/common/example/index.tsx +++ b/apps/common/example/index.tsx @@ -1,6 +1,6 @@ /** * Sample React Native App for react-native-svg library - * https://github.com/software-mansion/react-native-svg/tree/main/apps/examples + * https://github.com/software-mansion/react-native-svg/tree/main/apps/common/example */ 'use strict'; diff --git a/apps/common/tsconfig.json b/apps/common/tsconfig.json index 0d079c081..bcabf0260 100644 --- a/apps/common/tsconfig.json +++ b/apps/common/tsconfig.json @@ -8,17 +8,19 @@ "react-native-svg/css": ["../../src/css/index.tsx"], "react-native-svg/filter-image": ["../../src/filter-image/index.tsx"], "react-native-reanimated": [ - "../example/node_modules/react-native-reanimated" + "../fabric-example/node_modules/react-native-reanimated" ], "react-native-view-shot": [ - "../example/node_modules/react-native-view-shot" + "../fabric-example/node_modules/react-native-view-shot" + ], + "@react-navigation/*": [ + "../fabric-example/node_modules/@react-navigation/*" ], - "@react-navigation/*": ["../example/node_modules/@react-navigation/*"], "react-native-gesture-handler": [ - "../example/node_modules/react-native-gesture-handler" + "../fabric-example/node_modules/react-native-gesture-handler" ], "@react-native-async-storage/async-storage": [ - "../example/node_modules/@react-native-async-storage/async-storage" + "../fabric-example/node_modules/@react-native-async-storage/async-storage" ] } }, diff --git a/apps/example/android/app/src/main/res/values/strings.xml b/apps/example/android/app/src/main/res/values/strings.xml deleted file mode 100644 index 0057fcb99..000000000 --- a/apps/example/android/app/src/main/res/values/strings.xml +++ /dev/null @@ -1,3 +0,0 @@ - - Example - diff --git a/apps/example/app.json b/apps/example/app.json deleted file mode 100644 index b59805164..000000000 --- a/apps/example/app.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "name": "Example", - "displayName": "Example" -} diff --git a/apps/example/.bundle/config b/apps/paper-example/.bundle/config similarity index 100% rename from apps/example/.bundle/config rename to apps/paper-example/.bundle/config diff --git a/apps/example/.gitignore b/apps/paper-example/.gitignore similarity index 100% rename from apps/example/.gitignore rename to apps/paper-example/.gitignore diff --git a/apps/example/.watchmanconfig b/apps/paper-example/.watchmanconfig similarity index 100% rename from apps/example/.watchmanconfig rename to apps/paper-example/.watchmanconfig diff --git a/apps/example/Gemfile b/apps/paper-example/Gemfile similarity index 100% rename from apps/example/Gemfile rename to apps/paper-example/Gemfile diff --git a/apps/example/Gemfile.lock b/apps/paper-example/Gemfile.lock similarity index 79% rename from apps/example/Gemfile.lock rename to apps/paper-example/Gemfile.lock index 0d28eb1a3..d5d301701 100644 --- a/apps/example/Gemfile.lock +++ b/apps/paper-example/Gemfile.lock @@ -5,23 +5,29 @@ GEM base64 nkf rexml - activesupport (7.0.8.1) + activesupport (7.1.4.2) + base64 + bigdecimal concurrent-ruby (~> 1.0, >= 1.0.2) + connection_pool (>= 2.2.5) + drb i18n (>= 1.6, < 2) minitest (>= 5.1) + mutex_m tzinfo (~> 2.0) - addressable (2.8.6) - public_suffix (>= 2.0.2, < 6.0) + addressable (2.8.7) + public_suffix (>= 2.0.2, < 7.0) algoliasearch (1.27.5) httpclient (~> 2.8, >= 2.8.3) json (>= 1.5.1) atomos (0.1.3) base64 (0.2.0) + bigdecimal (3.1.8) claide (1.1.0) - cocoapods (1.14.3) + cocoapods (1.15.2) addressable (~> 2.8) claide (>= 1.0.2, < 2.0) - cocoapods-core (= 1.14.3) + cocoapods-core (= 1.15.2) cocoapods-deintegrate (>= 1.0.3, < 2.0) cocoapods-downloader (>= 2.1, < 3.0) cocoapods-plugins (>= 1.0.0, < 2.0) @@ -36,7 +42,7 @@ GEM nap (~> 1.0) ruby-macho (>= 2.3.0, < 3.0) xcodeproj (>= 1.23.0, < 2.0) - cocoapods-core (1.14.3) + cocoapods-core (1.15.2) activesupport (>= 5.0, < 8) addressable (~> 2.8) algoliasearch (~> 1.0) @@ -56,38 +62,41 @@ GEM netrc (~> 0.11) cocoapods-try (1.2.0) colored2 (3.1.2) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.4) + connection_pool (2.4.1) + drb (2.2.1) escape (0.0.4) ethon (0.16.0) ffi (>= 1.15.0) - ffi (1.16.3) + ffi (1.17.0) fourflusher (2.3.1) fuzzy_match (2.0.4) gh_inspector (1.1.3) httpclient (2.8.3) - i18n (1.14.4) + i18n (1.14.6) concurrent-ruby (~> 1.0) - json (2.7.2) - minitest (5.22.3) + json (2.7.4) + minitest (5.25.1) molinillo (0.8.0) + mutex_m (0.2.0) nanaimo (0.3.0) nap (1.1.0) netrc (0.11.0) nkf (0.2.0) public_suffix (4.0.7) - rexml (3.2.6) + rexml (3.3.9) ruby-macho (2.5.1) typhoeus (1.4.1) ethon (>= 0.9.0) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - xcodeproj (1.24.0) + xcodeproj (1.25.1) CFPropertyList (>= 2.3.3, < 4.0) atomos (~> 0.1.3) claide (>= 1.0.2, < 2.0) colored2 (~> 3.1) nanaimo (~> 0.3.0) - rexml (~> 3.2.4) + rexml (>= 3.3.6, < 4.0) PLATFORMS ruby @@ -97,7 +106,7 @@ DEPENDENCIES cocoapods (>= 1.13, != 1.15.1, != 1.15.0) RUBY VERSION - ruby 3.2.1p31 + ruby 2.7.6p219 BUNDLED WITH - 2.4.19 + 2.1.4 diff --git a/apps/example/README.md b/apps/paper-example/README.md similarity index 100% rename from apps/example/README.md rename to apps/paper-example/README.md diff --git a/apps/example/android/app/build.gradle b/apps/paper-example/android/app/build.gradle similarity index 98% rename from apps/example/android/app/build.gradle rename to apps/paper-example/android/app/build.gradle index 4c811729a..47cc4e16b 100644 --- a/apps/example/android/app/build.gradle +++ b/apps/paper-example/android/app/build.gradle @@ -77,9 +77,9 @@ android { buildToolsVersion rootProject.ext.buildToolsVersion compileSdk rootProject.ext.compileSdkVersion - namespace "com.example" + namespace "com.paperexample" defaultConfig { - applicationId "com.example" + applicationId "com.paperexample" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion versionCode 1 diff --git a/apps/example/android/app/debug.keystore b/apps/paper-example/android/app/debug.keystore similarity index 100% rename from apps/example/android/app/debug.keystore rename to apps/paper-example/android/app/debug.keystore diff --git a/apps/example/android/app/proguard-rules.pro b/apps/paper-example/android/app/proguard-rules.pro similarity index 100% rename from apps/example/android/app/proguard-rules.pro rename to apps/paper-example/android/app/proguard-rules.pro diff --git a/apps/example/android/app/src/debug/AndroidManifest.xml b/apps/paper-example/android/app/src/debug/AndroidManifest.xml similarity index 100% rename from apps/example/android/app/src/debug/AndroidManifest.xml rename to apps/paper-example/android/app/src/debug/AndroidManifest.xml diff --git a/apps/example/android/app/src/main/AndroidManifest.xml b/apps/paper-example/android/app/src/main/AndroidManifest.xml similarity index 100% rename from apps/example/android/app/src/main/AndroidManifest.xml rename to apps/paper-example/android/app/src/main/AndroidManifest.xml diff --git a/apps/example/android/app/src/main/java/com/example/MainActivity.kt b/apps/paper-example/android/app/src/main/java/com/paperexample/MainActivity.kt similarity index 88% rename from apps/example/android/app/src/main/java/com/example/MainActivity.kt rename to apps/paper-example/android/app/src/main/java/com/paperexample/MainActivity.kt index 628829c89..9d370085b 100644 --- a/apps/example/android/app/src/main/java/com/example/MainActivity.kt +++ b/apps/paper-example/android/app/src/main/java/com/paperexample/MainActivity.kt @@ -1,6 +1,6 @@ -package com.example +package com.paperexample -import android.os.Bundle; +import android.os.Bundle import com.facebook.react.ReactActivity import com.facebook.react.ReactActivityDelegate import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.fabricEnabled @@ -12,8 +12,8 @@ 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 = "Example" - + override fun getMainComponentName(): String = "PaperExample" + override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(null) } diff --git a/apps/example/android/app/src/main/java/com/example/MainApplication.kt b/apps/paper-example/android/app/src/main/java/com/paperexample/MainApplication.kt similarity index 98% rename from apps/example/android/app/src/main/java/com/example/MainApplication.kt rename to apps/paper-example/android/app/src/main/java/com/paperexample/MainApplication.kt index 33ac4a77d..07b709035 100644 --- a/apps/example/android/app/src/main/java/com/example/MainApplication.kt +++ b/apps/paper-example/android/app/src/main/java/com/paperexample/MainApplication.kt @@ -1,4 +1,4 @@ -package com.example +package com.paperexample import android.app.Application import com.facebook.react.PackageList diff --git a/apps/example/android/app/src/main/res/drawable/rn_edit_text_material.xml b/apps/paper-example/android/app/src/main/res/drawable/rn_edit_text_material.xml similarity index 100% rename from apps/example/android/app/src/main/res/drawable/rn_edit_text_material.xml rename to apps/paper-example/android/app/src/main/res/drawable/rn_edit_text_material.xml diff --git a/apps/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/apps/paper-example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png similarity index 100% rename from apps/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png rename to apps/paper-example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png diff --git a/apps/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png b/apps/paper-example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png similarity index 100% rename from apps/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png rename to apps/paper-example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png diff --git a/apps/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/apps/paper-example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png similarity index 100% rename from apps/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png rename to apps/paper-example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png diff --git a/apps/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png b/apps/paper-example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png similarity index 100% rename from apps/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png rename to apps/paper-example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png diff --git a/apps/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/apps/paper-example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png similarity index 100% rename from apps/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png rename to apps/paper-example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png diff --git a/apps/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/apps/paper-example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png similarity index 100% rename from apps/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png rename to apps/paper-example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png diff --git a/apps/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/apps/paper-example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png similarity index 100% rename from apps/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png rename to apps/paper-example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png diff --git a/apps/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/apps/paper-example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png similarity index 100% rename from apps/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png rename to apps/paper-example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png diff --git a/apps/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/apps/paper-example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png similarity index 100% rename from apps/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png rename to apps/paper-example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png diff --git a/apps/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/apps/paper-example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png similarity index 100% rename from apps/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png rename to apps/paper-example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png diff --git a/apps/paper-example/android/app/src/main/res/values/strings.xml b/apps/paper-example/android/app/src/main/res/values/strings.xml new file mode 100644 index 000000000..20a3296c4 --- /dev/null +++ b/apps/paper-example/android/app/src/main/res/values/strings.xml @@ -0,0 +1,3 @@ + + PaperExample + diff --git a/apps/example/android/app/src/main/res/values/styles.xml b/apps/paper-example/android/app/src/main/res/values/styles.xml similarity index 100% rename from apps/example/android/app/src/main/res/values/styles.xml rename to apps/paper-example/android/app/src/main/res/values/styles.xml diff --git a/apps/example/android/build.gradle b/apps/paper-example/android/build.gradle similarity index 100% rename from apps/example/android/build.gradle rename to apps/paper-example/android/build.gradle diff --git a/apps/example/android/gradle.properties b/apps/paper-example/android/gradle.properties similarity index 96% rename from apps/example/android/gradle.properties rename to apps/paper-example/android/gradle.properties index 6e8b3f8bc..9fb15664b 100644 --- a/apps/example/android/gradle.properties +++ b/apps/paper-example/android/gradle.properties @@ -10,7 +10,7 @@ # Specifies the JVM arguments used for the daemon process. # The setting is particularly useful for tweaking memory settings. # Default value: -Xmx512m -XX:MaxMetaspaceSize=256m -org.gradle.jvmargs=-Xmx4096m -XX:MaxMetaspaceSize=2048m +org.gradle.jvmargs=-Xmx2048m -XX:MaxMetaspaceSize=512m # When configured, Gradle will run in incubating parallel mode. # This option should only be used with decoupled projects. More details, visit diff --git a/apps/example/android/gradle/wrapper/gradle-wrapper.jar b/apps/paper-example/android/gradle/wrapper/gradle-wrapper.jar similarity index 100% rename from apps/example/android/gradle/wrapper/gradle-wrapper.jar rename to apps/paper-example/android/gradle/wrapper/gradle-wrapper.jar diff --git a/apps/example/android/gradle/wrapper/gradle-wrapper.properties b/apps/paper-example/android/gradle/wrapper/gradle-wrapper.properties similarity index 100% rename from apps/example/android/gradle/wrapper/gradle-wrapper.properties rename to apps/paper-example/android/gradle/wrapper/gradle-wrapper.properties diff --git a/apps/example/android/gradlew b/apps/paper-example/android/gradlew similarity index 100% rename from apps/example/android/gradlew rename to apps/paper-example/android/gradlew diff --git a/apps/example/android/gradlew.bat b/apps/paper-example/android/gradlew.bat similarity index 100% rename from apps/example/android/gradlew.bat rename to apps/paper-example/android/gradlew.bat diff --git a/apps/example/android/settings.gradle b/apps/paper-example/android/settings.gradle similarity index 90% rename from apps/example/android/settings.gradle rename to apps/paper-example/android/settings.gradle index a43d5eb05..b7e93d6b5 100644 --- a/apps/example/android/settings.gradle +++ b/apps/paper-example/android/settings.gradle @@ -1,6 +1,6 @@ pluginManagement { includeBuild("../node_modules/@react-native/gradle-plugin") } plugins { id("com.facebook.react.settings") } extensions.configure(com.facebook.react.ReactSettingsExtension){ ex -> ex.autolinkLibrariesFromCommand() } -rootProject.name = 'Example' +rootProject.name = 'PaperExample' include ':app' includeBuild('../node_modules/@react-native/gradle-plugin') diff --git a/apps/paper-example/app.json b/apps/paper-example/app.json new file mode 100644 index 000000000..c2458f972 --- /dev/null +++ b/apps/paper-example/app.json @@ -0,0 +1,4 @@ +{ + "name": "PaperExample", + "displayName": "PaperExample" +} diff --git a/apps/example/babel.config.js b/apps/paper-example/babel.config.js similarity index 100% rename from apps/example/babel.config.js rename to apps/paper-example/babel.config.js diff --git a/apps/example/index.js b/apps/paper-example/index.js similarity index 100% rename from apps/example/index.js rename to apps/paper-example/index.js diff --git a/apps/example/ios/.xcode.env b/apps/paper-example/ios/.xcode.env similarity index 100% rename from apps/example/ios/.xcode.env rename to apps/paper-example/ios/.xcode.env diff --git a/apps/example/ios/Example.xcodeproj/project.pbxproj b/apps/paper-example/ios/PaperExample.xcodeproj/project.pbxproj similarity index 68% rename from apps/example/ios/Example.xcodeproj/project.pbxproj rename to apps/paper-example/ios/PaperExample.xcodeproj/project.pbxproj index a16b3ccc3..3d6ca490d 100644 --- a/apps/example/ios/Example.xcodeproj/project.pbxproj +++ b/apps/paper-example/ios/PaperExample.xcodeproj/project.pbxproj @@ -7,14 +7,14 @@ objects = { /* Begin PBXBuildFile section */ - 00E356F31AD99517003FC87E /* ExampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* ExampleTests.m */; }; + 00E356F31AD99517003FC87E /* PaperExampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* PaperExampleTests.m */; }; + 09D6C2F6F80442D389D9F399 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */; }; + 0C80B921A6F3F58F76C31292 /* libPods-PaperExample.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-PaperExample.a */; }; 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; }; 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; - 20A9584FAA99BD2F63D73907 /* libPods-Example-ExampleTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 0341BF766E1FF64660F78E3E /* libPods-Example-ExampleTests.a */; }; - 6EC7BBF1832499BE5A04482D /* libPods-Example.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D9053E4A1ABD9182871141D3 /* libPods-Example.a */; }; + 7699B88040F8A987B510C191 /* libPods-PaperExample-PaperExampleTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 19F6CBCC0A4E27FBF8BF4A61 /* libPods-PaperExample-PaperExampleTests.a */; }; 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; }; - C35781B2457D5898B7213A0D /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 9D90345809BA99F1314F488D /* PrivacyInfo.xcprivacy */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -23,29 +23,28 @@ containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; proxyType = 1; remoteGlobalIDString = 13B07F861A680F5B00A75B9A; - remoteInfo = Example; + remoteInfo = PaperExample; }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - 00E356EE1AD99517003FC87E /* ExampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ExampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 00E356EE1AD99517003FC87E /* PaperExampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = PaperExampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 00E356F21AD99517003FC87E /* ExampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ExampleTests.m; sourceTree = ""; }; - 0341BF766E1FF64660F78E3E /* libPods-Example-ExampleTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Example-ExampleTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 0FCEAD223A8FCA0A24AF2F0C /* Pods-Example-ExampleTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Example-ExampleTests.release.xcconfig"; path = "Target Support Files/Pods-Example-ExampleTests/Pods-Example-ExampleTests.release.xcconfig"; sourceTree = ""; }; - 13B07F961A680F5B00A75B9A /* Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; - 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = Example/AppDelegate.h; sourceTree = ""; }; - 13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = Example/AppDelegate.mm; sourceTree = ""; }; - 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = Example/Images.xcassets; sourceTree = ""; }; - 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = Example/Info.plist; sourceTree = ""; }; - 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = Example/main.m; sourceTree = ""; }; - 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = PrivacyInfo.xcprivacy; path = Example/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 2BB2E9B2FE0DA87CCB84389C /* Pods-Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Example.release.xcconfig"; path = "Target Support Files/Pods-Example/Pods-Example.release.xcconfig"; sourceTree = ""; }; - 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = Example/LaunchScreen.storyboard; sourceTree = ""; }; - 9D90345809BA99F1314F488D /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = Example/PrivacyInfo.xcprivacy; sourceTree = ""; }; - D9053E4A1ABD9182871141D3 /* libPods-Example.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Example.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - D96F8ABBD44D8CEC4C57AF43 /* Pods-Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Example.debug.xcconfig"; path = "Target Support Files/Pods-Example/Pods-Example.debug.xcconfig"; sourceTree = ""; }; - E929C92723AA1C7F436C63DE /* Pods-Example-ExampleTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Example-ExampleTests.debug.xcconfig"; path = "Target Support Files/Pods-Example-ExampleTests/Pods-Example-ExampleTests.debug.xcconfig"; sourceTree = ""; }; + 00E356F21AD99517003FC87E /* PaperExampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PaperExampleTests.m; sourceTree = ""; }; + 13B07F961A680F5B00A75B9A /* PaperExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = PaperExample.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = PaperExample/AppDelegate.h; sourceTree = ""; }; + 13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = PaperExample/AppDelegate.mm; sourceTree = ""; }; + 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = PaperExample/Images.xcassets; sourceTree = ""; }; + 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = PaperExample/Info.plist; sourceTree = ""; }; + 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = PaperExample/main.m; sourceTree = ""; }; + 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = PrivacyInfo.xcprivacy; path = PaperExample/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 19F6CBCC0A4E27FBF8BF4A61 /* libPods-PaperExample-PaperExampleTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-PaperExample-PaperExampleTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 3B4392A12AC88292D35C810B /* Pods-PaperExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-PaperExample.debug.xcconfig"; path = "Target Support Files/Pods-PaperExample/Pods-PaperExample.debug.xcconfig"; sourceTree = ""; }; + 5709B34CF0A7D63546082F79 /* Pods-PaperExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-PaperExample.release.xcconfig"; path = "Target Support Files/Pods-PaperExample/Pods-PaperExample.release.xcconfig"; sourceTree = ""; }; + 5B7EB9410499542E8C5724F5 /* Pods-PaperExample-PaperExampleTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-PaperExample-PaperExampleTests.debug.xcconfig"; path = "Target Support Files/Pods-PaperExample-PaperExampleTests/Pods-PaperExample-PaperExampleTests.debug.xcconfig"; sourceTree = ""; }; + 5DCACB8F33CDC322A6C60F78 /* libPods-PaperExample.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-PaperExample.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = PaperExample/LaunchScreen.storyboard; sourceTree = ""; }; + 89C6BE57DB24E9ADA2F236DE /* Pods-PaperExample-PaperExampleTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-PaperExample-PaperExampleTests.release.xcconfig"; path = "Target Support Files/Pods-PaperExample-PaperExampleTests/Pods-PaperExample-PaperExampleTests.release.xcconfig"; sourceTree = ""; }; ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; }; /* End PBXFileReference section */ @@ -54,7 +53,7 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 20A9584FAA99BD2F63D73907 /* libPods-Example-ExampleTests.a in Frameworks */, + 7699B88040F8A987B510C191 /* libPods-PaperExample-PaperExampleTests.a in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -62,20 +61,20 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 6EC7BBF1832499BE5A04482D /* libPods-Example.a in Frameworks */, + 0C80B921A6F3F58F76C31292 /* libPods-PaperExample.a in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 00E356EF1AD99517003FC87E /* ExampleTests */ = { + 00E356EF1AD99517003FC87E /* PaperExampleTests */ = { isa = PBXGroup; children = ( - 00E356F21AD99517003FC87E /* ExampleTests.m */, + 00E356F21AD99517003FC87E /* PaperExampleTests.m */, 00E356F01AD99517003FC87E /* Supporting Files */, ); - path = ExampleTests; + path = PaperExampleTests; sourceTree = ""; }; 00E356F01AD99517003FC87E /* Supporting Files */ = { @@ -86,7 +85,7 @@ name = "Supporting Files"; sourceTree = ""; }; - 13B07FAE1A68108700A75B9A /* Example */ = { + 13B07FAE1A68108700A75B9A /* PaperExample */ = { isa = PBXGroup; children = ( 13B07FAF1A68108700A75B9A /* AppDelegate.h */, @@ -96,17 +95,16 @@ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */, 13B07FB71A68108700A75B9A /* main.m */, 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */, - 9D90345809BA99F1314F488D /* PrivacyInfo.xcprivacy */, ); - name = Example; + name = PaperExample; sourceTree = ""; }; 2D16E6871FA4F8E400B85C8A /* Frameworks */ = { isa = PBXGroup; children = ( ED297162215061F000B7C4FE /* JavaScriptCore.framework */, - D9053E4A1ABD9182871141D3 /* libPods-Example.a */, - 0341BF766E1FF64660F78E3E /* libPods-Example-ExampleTests.a */, + 5DCACB8F33CDC322A6C60F78 /* libPods-PaperExample.a */, + 19F6CBCC0A4E27FBF8BF4A61 /* libPods-PaperExample-PaperExampleTests.a */, ); name = Frameworks; sourceTree = ""; @@ -121,9 +119,9 @@ 83CBB9F61A601CBA00E9B192 = { isa = PBXGroup; children = ( - 13B07FAE1A68108700A75B9A /* Example */, + 13B07FAE1A68108700A75B9A /* PaperExample */, 832341AE1AAA6A7D00B99B32 /* Libraries */, - 00E356EF1AD99517003FC87E /* ExampleTests */, + 00E356EF1AD99517003FC87E /* PaperExampleTests */, 83CBBA001A601CBA00E9B192 /* Products */, 2D16E6871FA4F8E400B85C8A /* Frameworks */, BBD78D7AC51CEA395F1C20DB /* Pods */, @@ -136,8 +134,8 @@ 83CBBA001A601CBA00E9B192 /* Products */ = { isa = PBXGroup; children = ( - 13B07F961A680F5B00A75B9A /* Example.app */, - 00E356EE1AD99517003FC87E /* ExampleTests.xctest */, + 13B07F961A680F5B00A75B9A /* PaperExample.app */, + 00E356EE1AD99517003FC87E /* PaperExampleTests.xctest */, ); name = Products; sourceTree = ""; @@ -145,10 +143,10 @@ BBD78D7AC51CEA395F1C20DB /* Pods */ = { isa = PBXGroup; children = ( - D96F8ABBD44D8CEC4C57AF43 /* Pods-Example.debug.xcconfig */, - 2BB2E9B2FE0DA87CCB84389C /* Pods-Example.release.xcconfig */, - E929C92723AA1C7F436C63DE /* Pods-Example-ExampleTests.debug.xcconfig */, - 0FCEAD223A8FCA0A24AF2F0C /* Pods-Example-ExampleTests.release.xcconfig */, + 3B4392A12AC88292D35C810B /* Pods-PaperExample.debug.xcconfig */, + 5709B34CF0A7D63546082F79 /* Pods-PaperExample.release.xcconfig */, + 5B7EB9410499542E8C5724F5 /* Pods-PaperExample-PaperExampleTests.debug.xcconfig */, + 89C6BE57DB24E9ADA2F236DE /* Pods-PaperExample-PaperExampleTests.release.xcconfig */, ); path = Pods; sourceTree = ""; @@ -156,46 +154,46 @@ /* End PBXGroup section */ /* Begin PBXNativeTarget section */ - 00E356ED1AD99517003FC87E /* ExampleTests */ = { + 00E356ED1AD99517003FC87E /* PaperExampleTests */ = { isa = PBXNativeTarget; - buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "ExampleTests" */; + buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "PaperExampleTests" */; buildPhases = ( - E96B2347DE9B77710DA81201 /* [CP] Check Pods Manifest.lock */, + A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */, 00E356EA1AD99517003FC87E /* Sources */, 00E356EB1AD99517003FC87E /* Frameworks */, 00E356EC1AD99517003FC87E /* Resources */, - B3C6B0A04D86F1897654505C /* [CP] Embed Pods Frameworks */, - 21BD22B71DA0965C65833FAB /* [CP] Copy Pods Resources */, + C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */, + F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */, ); buildRules = ( ); dependencies = ( 00E356F51AD99517003FC87E /* PBXTargetDependency */, ); - name = ExampleTests; - productName = ExampleTests; - productReference = 00E356EE1AD99517003FC87E /* ExampleTests.xctest */; + name = PaperExampleTests; + productName = PaperExampleTests; + productReference = 00E356EE1AD99517003FC87E /* PaperExampleTests.xctest */; productType = "com.apple.product-type.bundle.unit-test"; }; - 13B07F861A680F5B00A75B9A /* Example */ = { + 13B07F861A680F5B00A75B9A /* PaperExample */ = { isa = PBXNativeTarget; - buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "Example" */; + buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "PaperExample" */; buildPhases = ( - 453D079D2009A266C0294D47 /* [CP] Check Pods Manifest.lock */, + C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */, 13B07F871A680F5B00A75B9A /* Sources */, 13B07F8C1A680F5B00A75B9A /* Frameworks */, 13B07F8E1A680F5B00A75B9A /* Resources */, 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, - 3020D0942543D45D29A40B0C /* [CP] Embed Pods Frameworks */, - 00A16CDD7FFCC31A21C99D67 /* [CP] Copy Pods Resources */, + 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */, + E235C05ADACE081382539298 /* [CP] Copy Pods Resources */, ); buildRules = ( ); dependencies = ( ); - name = Example; - productName = Example; - productReference = 13B07F961A680F5B00A75B9A /* Example.app */; + name = PaperExample; + productName = PaperExample; + productReference = 13B07F961A680F5B00A75B9A /* PaperExample.app */; productType = "com.apple.product-type.application"; }; /* End PBXNativeTarget section */ @@ -215,7 +213,7 @@ }; }; }; - buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "Example" */; + buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "PaperExample" */; compatibilityVersion = "Xcode 12.0"; developmentRegion = en; hasScannedForEncodings = 0; @@ -228,8 +226,8 @@ projectDirPath = ""; projectRoot = ""; targets = ( - 13B07F861A680F5B00A75B9A /* Example */, - 00E356ED1AD99517003FC87E /* ExampleTests */, + 13B07F861A680F5B00A75B9A /* PaperExample */, + 00E356ED1AD99517003FC87E /* PaperExampleTests */, ); }; /* End PBXProject section */ @@ -248,30 +246,13 @@ files = ( 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */, 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, - C35781B2457D5898B7213A0D /* PrivacyInfo.xcprivacy in Resources */, + 09D6C2F6F80442D389D9F399 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXResourcesBuildPhase section */ /* Begin PBXShellScriptBuildPhase section */ - 00A16CDD7FFCC31A21C99D67 /* [CP] Copy Pods Resources */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-Example/Pods-Example-resources-${CONFIGURATION}-input-files.xcfilelist", - ); - name = "[CP] Copy Pods Resources"; - outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-Example/Pods-Example-resources-${CONFIGURATION}-output-files.xcfilelist", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Example/Pods-Example-resources.sh\"\n"; - showEnvVarsInLog = 0; - }; 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -288,41 +269,46 @@ shellPath = /bin/sh; shellScript = "set -e\n\nWITH_ENVIRONMENT=\"$REACT_NATIVE_PATH/scripts/xcode/with-environment.sh\"\nREACT_NATIVE_XCODE=\"$REACT_NATIVE_PATH/scripts/react-native-xcode.sh\"\n\n/bin/sh -c \"$WITH_ENVIRONMENT $REACT_NATIVE_XCODE\"\n"; }; - 21BD22B71DA0965C65833FAB /* [CP] Copy Pods Resources */ = { + 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-Example-ExampleTests/Pods-Example-ExampleTests-resources-${CONFIGURATION}-input-files.xcfilelist", + "${PODS_ROOT}/Target Support Files/Pods-PaperExample/Pods-PaperExample-frameworks-${CONFIGURATION}-input-files.xcfilelist", ); - name = "[CP] Copy Pods Resources"; + name = "[CP] Embed Pods Frameworks"; outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-Example-ExampleTests/Pods-Example-ExampleTests-resources-${CONFIGURATION}-output-files.xcfilelist", + "${PODS_ROOT}/Target Support Files/Pods-PaperExample/Pods-PaperExample-frameworks-${CONFIGURATION}-output-files.xcfilelist", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Example-ExampleTests/Pods-Example-ExampleTests-resources.sh\"\n"; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-PaperExample/Pods-PaperExample-frameworks.sh\"\n"; showEnvVarsInLog = 0; }; - 3020D0942543D45D29A40B0C /* [CP] Embed Pods Frameworks */ = { + A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-Example/Pods-Example-frameworks-${CONFIGURATION}-input-files.xcfilelist", ); - name = "[CP] Embed Pods Frameworks"; + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-Example/Pods-Example-frameworks-${CONFIGURATION}-output-files.xcfilelist", + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-PaperExample-PaperExampleTests-checkManifestLockResult.txt", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Example/Pods-Example-frameworks.sh\"\n"; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; showEnvVarsInLog = 0; }; - 453D079D2009A266C0294D47 /* [CP] Check Pods Manifest.lock */ = { + C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( @@ -337,50 +323,62 @@ outputFileListPaths = ( ); outputPaths = ( - "$(DERIVED_FILE_DIR)/Pods-Example-checkManifestLockResult.txt", + "$(DERIVED_FILE_DIR)/Pods-PaperExample-checkManifestLockResult.txt", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; showEnvVarsInLog = 0; }; - B3C6B0A04D86F1897654505C /* [CP] Embed Pods Frameworks */ = { + C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-Example-ExampleTests/Pods-Example-ExampleTests-frameworks-${CONFIGURATION}-input-files.xcfilelist", + "${PODS_ROOT}/Target Support Files/Pods-PaperExample-PaperExampleTests/Pods-PaperExample-PaperExampleTests-frameworks-${CONFIGURATION}-input-files.xcfilelist", ); name = "[CP] Embed Pods Frameworks"; outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-Example-ExampleTests/Pods-Example-ExampleTests-frameworks-${CONFIGURATION}-output-files.xcfilelist", + "${PODS_ROOT}/Target Support Files/Pods-PaperExample-PaperExampleTests/Pods-PaperExample-PaperExampleTests-frameworks-${CONFIGURATION}-output-files.xcfilelist", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Example-ExampleTests/Pods-Example-ExampleTests-frameworks.sh\"\n"; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-PaperExample-PaperExampleTests/Pods-PaperExample-PaperExampleTests-frameworks.sh\"\n"; showEnvVarsInLog = 0; }; - E96B2347DE9B77710DA81201 /* [CP] Check Pods Manifest.lock */ = { + E235C05ADACE081382539298 /* [CP] Copy Pods Resources */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); inputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-PaperExample/Pods-PaperExample-resources-${CONFIGURATION}-input-files.xcfilelist", ); - inputPaths = ( - "${PODS_PODFILE_DIR_PATH}/Podfile.lock", - "${PODS_ROOT}/Manifest.lock", - ); - name = "[CP] Check Pods Manifest.lock"; + name = "[CP] Copy Pods Resources"; outputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-PaperExample/Pods-PaperExample-resources-${CONFIGURATION}-output-files.xcfilelist", ); - outputPaths = ( - "$(DERIVED_FILE_DIR)/Pods-Example-ExampleTests-checkManifestLockResult.txt", + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-PaperExample/Pods-PaperExample-resources.sh\"\n"; + showEnvVarsInLog = 0; + }; + F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-PaperExample-PaperExampleTests/Pods-PaperExample-PaperExampleTests-resources-${CONFIGURATION}-input-files.xcfilelist", + ); + name = "[CP] Copy Pods Resources"; + outputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-PaperExample-PaperExampleTests/Pods-PaperExample-PaperExampleTests-resources-${CONFIGURATION}-output-files.xcfilelist", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-PaperExample-PaperExampleTests/Pods-PaperExample-PaperExampleTests-resources.sh\"\n"; showEnvVarsInLog = 0; }; /* End PBXShellScriptBuildPhase section */ @@ -390,7 +388,7 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 00E356F31AD99517003FC87E /* ExampleTests.m in Sources */, + 00E356F31AD99517003FC87E /* PaperExampleTests.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -408,7 +406,7 @@ /* Begin PBXTargetDependency section */ 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = 13B07F861A680F5B00A75B9A /* Example */; + target = 13B07F861A680F5B00A75B9A /* PaperExample */; targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ @@ -416,14 +414,14 @@ /* Begin XCBuildConfiguration section */ 00E356F61AD99517003FC87E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E929C92723AA1C7F436C63DE /* Pods-Example-ExampleTests.debug.xcconfig */; + baseConfigurationReference = 5B7EB9410499542E8C5724F5 /* Pods-PaperExample-PaperExampleTests.debug.xcconfig */; buildSettings = { BUNDLE_LOADER = "$(TEST_HOST)"; GCC_PREPROCESSOR_DEFINITIONS = ( "DEBUG=1", "$(inherited)", ); - INFOPLIST_FILE = ExampleTests/Info.plist; + INFOPLIST_FILE = PaperExampleTests/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 15.1; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", @@ -437,17 +435,17 @@ ); PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; PRODUCT_NAME = "$(TARGET_NAME)"; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Example.app/Example"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/PaperExample.app/PaperExample"; }; name = Debug; }; 00E356F71AD99517003FC87E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0FCEAD223A8FCA0A24AF2F0C /* Pods-Example-ExampleTests.release.xcconfig */; + baseConfigurationReference = 89C6BE57DB24E9ADA2F236DE /* Pods-PaperExample-PaperExampleTests.release.xcconfig */; buildSettings = { BUNDLE_LOADER = "$(TEST_HOST)"; COPY_PHASE_STRIP = NO; - INFOPLIST_FILE = ExampleTests/Info.plist; + INFOPLIST_FILE = PaperExampleTests/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 15.1; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", @@ -461,19 +459,20 @@ ); PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; PRODUCT_NAME = "$(TARGET_NAME)"; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Example.app/Example"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/PaperExample.app/PaperExample"; }; name = Release; }; 13B07F941A680F5B00A75B9A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D96F8ABBD44D8CEC4C57AF43 /* Pods-Example.debug.xcconfig */; + baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-PaperExample.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; CURRENT_PROJECT_VERSION = 1; ENABLE_BITCODE = NO; - INFOPLIST_FILE = Example/Info.plist; + INFOPLIST_FILE = PaperExample/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 15.1; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -485,7 +484,7 @@ "-lc++", ); PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = Example; + PRODUCT_NAME = PaperExample; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; SWIFT_VERSION = 5.0; VERSIONING_SYSTEM = "apple-generic"; @@ -494,12 +493,13 @@ }; 13B07F951A680F5B00A75B9A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2BB2E9B2FE0DA87CCB84389C /* Pods-Example.release.xcconfig */; + baseConfigurationReference = 5709B34CF0A7D63546082F79 /* Pods-PaperExample.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; CURRENT_PROJECT_VERSION = 1; - INFOPLIST_FILE = Example/Info.plist; + INFOPLIST_FILE = PaperExample/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 15.1; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -511,7 +511,7 @@ "-lc++", ); PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = Example; + PRODUCT_NAME = PaperExample; SWIFT_VERSION = 5.0; VERSIONING_SYSTEM = "apple-generic"; }; @@ -521,7 +521,6 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; - CC = ""; CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; CLANG_CXX_LANGUAGE_STANDARD = "c++20"; CLANG_CXX_LIBRARY = "libc++"; @@ -549,7 +548,6 @@ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; COPY_PHASE_STRIP = NO; - CXX = ""; ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_TESTABILITY = YES; "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = ""; @@ -569,8 +567,6 @@ GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; IPHONEOS_DEPLOYMENT_TARGET = 15.1; - LD = ""; - LDPLUSPLUS = ""; LD_RUNPATH_SEARCH_PATHS = ( /usr/lib/swift, "$(inherited)", @@ -605,7 +601,6 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; - CC = ""; CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; CLANG_CXX_LANGUAGE_STANDARD = "c++20"; CLANG_CXX_LIBRARY = "libc++"; @@ -633,7 +628,6 @@ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; COPY_PHASE_STRIP = YES; - CXX = ""; ENABLE_NS_ASSERTIONS = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = ""; @@ -646,8 +640,6 @@ GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; IPHONEOS_DEPLOYMENT_TARGET = 15.1; - LD = ""; - LDPLUSPLUS = ""; LD_RUNPATH_SEARCH_PATHS = ( /usr/lib/swift, "$(inherited)", @@ -680,7 +672,7 @@ /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "ExampleTests" */ = { + 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "PaperExampleTests" */ = { isa = XCConfigurationList; buildConfigurations = ( 00E356F61AD99517003FC87E /* Debug */, @@ -689,7 +681,7 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "Example" */ = { + 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "PaperExample" */ = { isa = XCConfigurationList; buildConfigurations = ( 13B07F941A680F5B00A75B9A /* Debug */, @@ -698,7 +690,7 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "Example" */ = { + 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "PaperExample" */ = { isa = XCConfigurationList; buildConfigurations = ( 83CBBA201A601CBA00E9B192 /* Debug */, diff --git a/apps/example/ios/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme b/apps/paper-example/ios/PaperExample.xcodeproj/xcshareddata/xcschemes/PaperExample.xcscheme similarity index 79% rename from apps/example/ios/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme rename to apps/paper-example/ios/PaperExample.xcodeproj/xcshareddata/xcschemes/PaperExample.xcscheme index 2dbf0217e..1caa655f0 100644 --- a/apps/example/ios/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme +++ b/apps/paper-example/ios/PaperExample.xcodeproj/xcshareddata/xcschemes/PaperExample.xcscheme @@ -15,9 +15,9 @@ + BuildableName = "PaperExample.app" + BlueprintName = "PaperExample" + ReferencedContainer = "container:PaperExample.xcodeproj"> @@ -33,9 +33,9 @@ + BuildableName = "PaperExampleTests.xctest" + BlueprintName = "PaperExampleTests" + ReferencedContainer = "container:PaperExample.xcodeproj"> @@ -55,9 +55,9 @@ + BuildableName = "PaperExample.app" + BlueprintName = "PaperExample" + ReferencedContainer = "container:PaperExample.xcodeproj"> @@ -72,9 +72,9 @@ + BuildableName = "PaperExample.app" + BlueprintName = "PaperExample" + ReferencedContainer = "container:PaperExample.xcodeproj"> diff --git a/apps/example/ios/Example.xcworkspace/contents.xcworkspacedata b/apps/paper-example/ios/PaperExample.xcworkspace/contents.xcworkspacedata similarity index 78% rename from apps/example/ios/Example.xcworkspace/contents.xcworkspacedata rename to apps/paper-example/ios/PaperExample.xcworkspace/contents.xcworkspacedata index a37cf193d..29af23872 100644 --- a/apps/example/ios/Example.xcworkspace/contents.xcworkspacedata +++ b/apps/paper-example/ios/PaperExample.xcworkspace/contents.xcworkspacedata @@ -2,7 +2,7 @@ + location = "group:PaperExample.xcodeproj"> diff --git a/apps/example/ios/Example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/apps/paper-example/ios/PaperExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist similarity index 100% rename from apps/example/ios/Example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist rename to apps/paper-example/ios/PaperExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist diff --git a/apps/example/ios/Example/AppDelegate.h b/apps/paper-example/ios/PaperExample/AppDelegate.h similarity index 100% rename from apps/example/ios/Example/AppDelegate.h rename to apps/paper-example/ios/PaperExample/AppDelegate.h diff --git a/apps/example/ios/Example/AppDelegate.mm b/apps/paper-example/ios/PaperExample/AppDelegate.mm similarity index 95% rename from apps/example/ios/Example/AppDelegate.mm rename to apps/paper-example/ios/PaperExample/AppDelegate.mm index b32f0e363..7c091dacd 100644 --- a/apps/example/ios/Example/AppDelegate.mm +++ b/apps/paper-example/ios/PaperExample/AppDelegate.mm @@ -6,7 +6,7 @@ @implementation AppDelegate - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { - self.moduleName = @"Example"; + self.moduleName = @"PaperExample"; // You can add your custom initial props in the dictionary below. // They will be passed down to the ViewController used by React Native. self.initialProps = @{}; diff --git a/apps/example/ios/Example/Images.xcassets/AppIcon.appiconset/Contents.json b/apps/paper-example/ios/PaperExample/Images.xcassets/AppIcon.appiconset/Contents.json similarity index 100% rename from apps/example/ios/Example/Images.xcassets/AppIcon.appiconset/Contents.json rename to apps/paper-example/ios/PaperExample/Images.xcassets/AppIcon.appiconset/Contents.json diff --git a/apps/example/ios/Example/Images.xcassets/Contents.json b/apps/paper-example/ios/PaperExample/Images.xcassets/Contents.json similarity index 100% rename from apps/example/ios/Example/Images.xcassets/Contents.json rename to apps/paper-example/ios/PaperExample/Images.xcassets/Contents.json diff --git a/apps/example/ios/Example/Info.plist b/apps/paper-example/ios/PaperExample/Info.plist similarity index 98% rename from apps/example/ios/Example/Info.plist rename to apps/paper-example/ios/PaperExample/Info.plist index 28343d167..f193c088b 100644 --- a/apps/example/ios/Example/Info.plist +++ b/apps/paper-example/ios/PaperExample/Info.plist @@ -5,7 +5,7 @@ CFBundleDevelopmentRegion en CFBundleDisplayName - Example + PaperExample CFBundleExecutable $(EXECUTABLE_NAME) CFBundleIdentifier diff --git a/apps/example/ios/Example/LaunchScreen.storyboard b/apps/paper-example/ios/PaperExample/LaunchScreen.storyboard similarity index 94% rename from apps/example/ios/Example/LaunchScreen.storyboard rename to apps/paper-example/ios/PaperExample/LaunchScreen.storyboard index 110331148..99e967369 100644 --- a/apps/example/ios/Example/LaunchScreen.storyboard +++ b/apps/paper-example/ios/PaperExample/LaunchScreen.storyboard @@ -16,7 +16,7 @@ -