0) {
184 | println "android.packagingOptions.$prop += $options ($options.length)"
185 | // Ex: android.packagingOptions.pickFirsts += '**/SCCS/**'
186 | options.each {
187 | android.packagingOptions[prop] += it
188 | }
189 | }
190 | }
191 |
192 | dependencies {
193 | // The version of react-native is set by the React Native Gradle Plugin
194 | implementation("com.facebook.react:react-android")
195 |
196 | def isGifEnabled = (findProperty('expo.gif.enabled') ?: "") == "true";
197 | def isWebpEnabled = (findProperty('expo.webp.enabled') ?: "") == "true";
198 | def isWebpAnimatedEnabled = (findProperty('expo.webp.animated') ?: "") == "true";
199 | def frescoVersion = rootProject.ext.frescoVersion
200 |
201 | // If your app supports Android versions before Ice Cream Sandwich (API level 14)
202 | if (isGifEnabled || isWebpEnabled) {
203 | implementation("com.facebook.fresco:fresco:${frescoVersion}")
204 | implementation("com.facebook.fresco:imagepipeline-okhttp3:${frescoVersion}")
205 | }
206 |
207 | if (isGifEnabled) {
208 | // For animated gif support
209 | implementation("com.facebook.fresco:animated-gif:${frescoVersion}")
210 | }
211 |
212 | if (isWebpEnabled) {
213 | // For webp support
214 | implementation("com.facebook.fresco:webpsupport:${frescoVersion}")
215 | if (isWebpAnimatedEnabled) {
216 | // Animated webp support
217 | implementation("com.facebook.fresco:animated-webp:${frescoVersion}")
218 | }
219 | }
220 |
221 | implementation("androidx.swiperefreshlayout:swiperefreshlayout:1.0.0")
222 |
223 | debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}")
224 | debugImplementation("com.facebook.flipper:flipper-network-plugin:${FLIPPER_VERSION}") {
225 | exclude group:'com.squareup.okhttp3', module:'okhttp'
226 | }
227 | debugImplementation("com.facebook.flipper:flipper-fresco-plugin:${FLIPPER_VERSION}")
228 |
229 | if (hermesEnabled.toBoolean()) {
230 | implementation("com.facebook.react:hermes-android")
231 | } else {
232 | implementation jscFlavor
233 | }
234 | }
235 |
236 | apply from: new File(["node", "--print", "require.resolve('@react-native-community/cli-platform-android/package.json')"].execute(null, rootDir).text.trim(), "../native_modules.gradle");
237 | applyNativeModulesAppBuildGradle(project)
238 |
--------------------------------------------------------------------------------
/packages/mobile/android/app/debug.keystore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MiniHacks/geese/68579dad1d3a9cfe3e7c498de5f55c477404dd0d/packages/mobile/android/app/debug.keystore
--------------------------------------------------------------------------------
/packages/mobile/android/app/proguard-rules.pro:
--------------------------------------------------------------------------------
1 | # Add project specific ProGuard rules here.
2 | # By default, the flags in this file are appended to flags specified
3 | # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt
4 | # You can edit the include path and order by changing the proguardFiles
5 | # directive in build.gradle.
6 | #
7 | # For more details, see
8 | # http://developer.android.com/guide/developing/tools/proguard.html
9 |
10 | # react-native-reanimated
11 | -keep class com.swmansion.reanimated.** { *; }
12 | -keep class com.facebook.react.turbomodule.** { *; }
13 |
14 | # Add any project specific keep options here:
15 |
--------------------------------------------------------------------------------
/packages/mobile/android/app/src/debug/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/packages/mobile/android/app/src/debug/java/com/minihacks/geese/ReactNativeFlipper.java:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright (c) Meta Platforms, Inc. and affiliates.
3 | *
4 | * This source code is licensed under the MIT license found in the LICENSE file in the root
5 | * directory of this source tree.
6 | */
7 | package com.minihacks.geese;
8 |
9 | import android.content.Context;
10 | import com.facebook.flipper.android.AndroidFlipperClient;
11 | import com.facebook.flipper.android.utils.FlipperUtils;
12 | import com.facebook.flipper.core.FlipperClient;
13 | import com.facebook.flipper.plugins.crashreporter.CrashReporterPlugin;
14 | import com.facebook.flipper.plugins.databases.DatabasesFlipperPlugin;
15 | import com.facebook.flipper.plugins.fresco.FrescoFlipperPlugin;
16 | import com.facebook.flipper.plugins.inspector.DescriptorMapping;
17 | import com.facebook.flipper.plugins.inspector.InspectorFlipperPlugin;
18 | import com.facebook.flipper.plugins.network.FlipperOkhttpInterceptor;
19 | import com.facebook.flipper.plugins.network.NetworkFlipperPlugin;
20 | import com.facebook.flipper.plugins.sharedpreferences.SharedPreferencesFlipperPlugin;
21 | import com.facebook.react.ReactInstanceEventListener;
22 | import com.facebook.react.ReactInstanceManager;
23 | import com.facebook.react.bridge.ReactContext;
24 | import com.facebook.react.modules.network.NetworkingModule;
25 | import okhttp3.OkHttpClient;
26 |
27 | /**
28 | * Class responsible of loading Flipper inside your React Native application. This is the debug
29 | * flavor of it. Here you can add your own plugins and customize the Flipper setup.
30 | */
31 | public class ReactNativeFlipper {
32 | public static void initializeFlipper(Context context, ReactInstanceManager reactInstanceManager) {
33 | if (FlipperUtils.shouldEnableFlipper(context)) {
34 | final FlipperClient client = AndroidFlipperClient.getInstance(context);
35 |
36 | client.addPlugin(new InspectorFlipperPlugin(context, DescriptorMapping.withDefaults()));
37 | client.addPlugin(new DatabasesFlipperPlugin(context));
38 | client.addPlugin(new SharedPreferencesFlipperPlugin(context));
39 | client.addPlugin(CrashReporterPlugin.getInstance());
40 |
41 | NetworkFlipperPlugin networkFlipperPlugin = new NetworkFlipperPlugin();
42 | NetworkingModule.setCustomClientBuilder(
43 | new NetworkingModule.CustomClientBuilder() {
44 | @Override
45 | public void apply(OkHttpClient.Builder builder) {
46 | builder.addNetworkInterceptor(new FlipperOkhttpInterceptor(networkFlipperPlugin));
47 | }
48 | });
49 | client.addPlugin(networkFlipperPlugin);
50 | client.start();
51 |
52 | // Fresco Plugin needs to ensure that ImagePipelineFactory is initialized
53 | // Hence we run if after all native modules have been initialized
54 | ReactContext reactContext = reactInstanceManager.getCurrentReactContext();
55 | if (reactContext == null) {
56 | reactInstanceManager.addReactInstanceEventListener(
57 | new ReactInstanceEventListener() {
58 | @Override
59 | public void onReactContextInitialized(ReactContext reactContext) {
60 | reactInstanceManager.removeReactInstanceEventListener(this);
61 | reactContext.runOnNativeModulesQueueThread(
62 | new Runnable() {
63 | @Override
64 | public void run() {
65 | client.addPlugin(new FrescoFlipperPlugin());
66 | }
67 | });
68 | }
69 | });
70 | } else {
71 | client.addPlugin(new FrescoFlipperPlugin());
72 | }
73 | }
74 | }
75 | }
76 |
--------------------------------------------------------------------------------
/packages/mobile/android/app/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/packages/mobile/android/app/src/main/java/com/minihacks/geese/MainActivity.java:
--------------------------------------------------------------------------------
1 | package com.minihacks.geese;
2 |
3 | import android.os.Build;
4 | import android.os.Bundle;
5 |
6 | import com.facebook.react.ReactActivity;
7 | import com.facebook.react.ReactActivityDelegate;
8 | import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint;
9 | import com.facebook.react.defaults.DefaultReactActivityDelegate;
10 |
11 | import expo.modules.ReactActivityDelegateWrapper;
12 |
13 | public class MainActivity extends ReactActivity {
14 | @Override
15 | protected void onCreate(Bundle savedInstanceState) {
16 | // Set the theme to AppTheme BEFORE onCreate to support
17 | // coloring the background, status bar, and navigation bar.
18 | // This is required for expo-splash-screen.
19 | setTheme(R.style.AppTheme);
20 | super.onCreate(null);
21 | }
22 |
23 | /**
24 | * Returns the name of the main component registered from JavaScript.
25 | * This is used to schedule rendering of the component.
26 | */
27 | @Override
28 | protected String getMainComponentName() {
29 | return "main";
30 | }
31 |
32 | /**
33 | * Returns the instance of the {@link ReactActivityDelegate}. Here we use a util class {@link
34 | * DefaultReactActivityDelegate} which allows you to easily enable Fabric and Concurrent React
35 | * (aka React 18) with two boolean flags.
36 | */
37 | @Override
38 | protected ReactActivityDelegate createReactActivityDelegate() {
39 | return new ReactActivityDelegateWrapper(this, BuildConfig.IS_NEW_ARCHITECTURE_ENABLED, new DefaultReactActivityDelegate(
40 | this,
41 | getMainComponentName(),
42 | // If you opted-in for the New Architecture, we enable the Fabric Renderer.
43 | DefaultNewArchitectureEntryPoint.getFabricEnabled(), // fabricEnabled
44 | // If you opted-in for the New Architecture, we enable Concurrent React (i.e. React 18).
45 | DefaultNewArchitectureEntryPoint.getConcurrentReactEnabled() // concurrentRootEnabled
46 | ));
47 | }
48 |
49 | /**
50 | * Align the back button behavior with Android S
51 | * where moving root activities to background instead of finishing activities.
52 | * @see onBackPressed
53 | */
54 | @Override
55 | public void invokeDefaultOnBackPressed() {
56 | if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.R) {
57 | if (!moveTaskToBack(false)) {
58 | // For non-root activities, use the default implementation to finish them.
59 | super.invokeDefaultOnBackPressed();
60 | }
61 | return;
62 | }
63 |
64 | // Use the default back button implementation on Android S
65 | // because it's doing more than {@link Activity#moveTaskToBack} in fact.
66 | super.invokeDefaultOnBackPressed();
67 | }
68 | }
69 |
--------------------------------------------------------------------------------
/packages/mobile/android/app/src/main/java/com/minihacks/geese/MainApplication.java:
--------------------------------------------------------------------------------
1 | package com.minihacks.geese;
2 |
3 | import android.app.Application;
4 | import android.content.res.Configuration;
5 | import androidx.annotation.NonNull;
6 |
7 | import com.facebook.react.PackageList;
8 | import com.facebook.react.ReactApplication;
9 | import com.facebook.react.ReactNativeHost;
10 | import com.facebook.react.ReactPackage;
11 | import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint;
12 | import com.facebook.react.defaults.DefaultReactNativeHost;
13 | import com.facebook.soloader.SoLoader;
14 |
15 | import expo.modules.ApplicationLifecycleDispatcher;
16 | import expo.modules.ReactNativeHostWrapper;
17 |
18 | import java.util.List;
19 |
20 | public class MainApplication extends Application implements ReactApplication {
21 |
22 | private final ReactNativeHost mReactNativeHost =
23 | new ReactNativeHostWrapper(this, new DefaultReactNativeHost(this) {
24 | @Override
25 | public boolean getUseDeveloperSupport() {
26 | return BuildConfig.DEBUG;
27 | }
28 |
29 | @Override
30 | protected List getPackages() {
31 | @SuppressWarnings("UnnecessaryLocalVariable")
32 | List packages = new PackageList(this).getPackages();
33 | // Packages that cannot be autolinked yet can be added manually here, for example:
34 | // packages.add(new MyReactNativePackage());
35 | return packages;
36 | }
37 |
38 | @Override
39 | protected String getJSMainModuleName() {
40 | return "index";
41 | }
42 |
43 | @Override
44 | protected boolean isNewArchEnabled() {
45 | return BuildConfig.IS_NEW_ARCHITECTURE_ENABLED;
46 | }
47 |
48 | @Override
49 | protected Boolean isHermesEnabled() {
50 | return BuildConfig.IS_HERMES_ENABLED;
51 | }
52 | });
53 |
54 | @Override
55 | public ReactNativeHost getReactNativeHost() {
56 | return mReactNativeHost;
57 | }
58 |
59 | @Override
60 | public void onCreate() {
61 | super.onCreate();
62 | SoLoader.init(this, /* native exopackage */ false);
63 | if (BuildConfig.IS_NEW_ARCHITECTURE_ENABLED) {
64 | // If you opted-in for the New Architecture, we load the native entry point for this app.
65 | DefaultNewArchitectureEntryPoint.load();
66 | }
67 | ReactNativeFlipper.initializeFlipper(this, getReactNativeHost().getReactInstanceManager());
68 | ApplicationLifecycleDispatcher.onApplicationCreate(this);
69 | }
70 |
71 | @Override
72 | public void onConfigurationChanged(@NonNull Configuration newConfig) {
73 | super.onConfigurationChanged(newConfig);
74 | ApplicationLifecycleDispatcher.onConfigurationChanged(this, newConfig);
75 | }
76 | }
77 |
--------------------------------------------------------------------------------
/packages/mobile/android/app/src/main/res/drawable/rn_edit_text_material.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
21 |
22 |
23 |
32 |
33 |
34 |
35 |
36 |
37 |
--------------------------------------------------------------------------------
/packages/mobile/android/app/src/main/res/drawable/splashscreen.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/packages/mobile/android/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MiniHacks/geese/68579dad1d3a9cfe3e7c498de5f55c477404dd0d/packages/mobile/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/packages/mobile/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MiniHacks/geese/68579dad1d3a9cfe3e7c498de5f55c477404dd0d/packages/mobile/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/packages/mobile/android/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MiniHacks/geese/68579dad1d3a9cfe3e7c498de5f55c477404dd0d/packages/mobile/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/packages/mobile/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MiniHacks/geese/68579dad1d3a9cfe3e7c498de5f55c477404dd0d/packages/mobile/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/packages/mobile/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MiniHacks/geese/68579dad1d3a9cfe3e7c498de5f55c477404dd0d/packages/mobile/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/packages/mobile/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MiniHacks/geese/68579dad1d3a9cfe3e7c498de5f55c477404dd0d/packages/mobile/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/packages/mobile/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MiniHacks/geese/68579dad1d3a9cfe3e7c498de5f55c477404dd0d/packages/mobile/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/packages/mobile/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MiniHacks/geese/68579dad1d3a9cfe3e7c498de5f55c477404dd0d/packages/mobile/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/packages/mobile/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MiniHacks/geese/68579dad1d3a9cfe3e7c498de5f55c477404dd0d/packages/mobile/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/packages/mobile/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MiniHacks/geese/68579dad1d3a9cfe3e7c498de5f55c477404dd0d/packages/mobile/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/packages/mobile/android/app/src/main/res/values-night/colors.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/packages/mobile/android/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 | #023c69
3 | #ffffff
4 |
--------------------------------------------------------------------------------
/packages/mobile/android/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | mobile
3 |
--------------------------------------------------------------------------------
/packages/mobile/android/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
14 |
17 |
--------------------------------------------------------------------------------
/packages/mobile/android/app/src/release/java/com/minihacks/geese/ReactNativeFlipper.java:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright (c) Meta Platforms, Inc. and affiliates.
3 | *
4 | * This source code is licensed under the MIT license found in the LICENSE file in the root
5 | * directory of this source tree.
6 | */
7 | package com.minihacks.geese;
8 |
9 | import android.content.Context;
10 | import com.facebook.react.ReactInstanceManager;
11 |
12 | /**
13 | * Class responsible of loading Flipper inside your React Native application. This is the release
14 | * flavor of it so it's empty as we don't want to load Flipper.
15 | */
16 | public class ReactNativeFlipper {
17 | public static void initializeFlipper(Context context, ReactInstanceManager reactInstanceManager) {
18 | // Do nothing as we don't want to initialize Flipper on Release.
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/packages/mobile/android/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 |
3 | buildscript {
4 | ext {
5 | buildToolsVersion = findProperty('android.buildToolsVersion') ?: '33.0.0'
6 | minSdkVersion = Integer.parseInt(findProperty('android.minSdkVersion') ?: '21')
7 | compileSdkVersion = Integer.parseInt(findProperty('android.compileSdkVersion') ?: '33')
8 | targetSdkVersion = Integer.parseInt(findProperty('android.targetSdkVersion') ?: '33')
9 | if (findProperty('android.kotlinVersion')) {
10 | kotlinVersion = findProperty('android.kotlinVersion')
11 | }
12 | frescoVersion = findProperty('expo.frescoVersion') ?: '2.5.0'
13 |
14 | // We use NDK 23 which has both M1 support and is the side-by-side NDK version from AGP.
15 | ndkVersion = "23.1.7779620"
16 | }
17 | repositories {
18 | google()
19 | mavenCentral()
20 | }
21 | dependencies {
22 | classpath('com.android.tools.build:gradle:7.4.1')
23 | classpath('com.facebook.react:react-native-gradle-plugin')
24 | }
25 | }
26 |
27 | allprojects {
28 | repositories {
29 | maven {
30 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
31 | url(new File(['node', '--print', "require.resolve('react-native/package.json')"].execute(null, rootDir).text.trim(), '../android'))
32 | }
33 | maven {
34 | // Android JSC is installed from npm
35 | url(new File(['node', '--print', "require.resolve('jsc-android/package.json')"].execute(null, rootDir).text.trim(), '../dist'))
36 | }
37 |
38 | google()
39 | mavenCentral()
40 | maven { url 'https://www.jitpack.io' }
41 | }
42 | }
43 |
--------------------------------------------------------------------------------
/packages/mobile/android/gradle.properties:
--------------------------------------------------------------------------------
1 | # Project-wide Gradle settings.
2 |
3 | # IDE (e.g. Android Studio) users:
4 | # Gradle settings configured through the IDE *will override*
5 | # any settings specified in this file.
6 |
7 | # For more details on how to configure your build environment visit
8 | # http://www.gradle.org/docs/current/userguide/build_environment.html
9 |
10 | # Specifies the JVM arguments used for the daemon process.
11 | # The setting is particularly useful for tweaking memory settings.
12 | # Default value: -Xmx512m -XX:MaxMetaspaceSize=256m
13 | org.gradle.jvmargs=-Xmx2048m -XX:MaxMetaspaceSize=512m
14 |
15 | # When configured, Gradle will run in incubating parallel mode.
16 | # This option should only be used with decoupled projects. More details, visit
17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
18 | # org.gradle.parallel=true
19 |
20 | # AndroidX package structure to make it clearer which packages are bundled with the
21 | # Android operating system, and which are packaged with your app's APK
22 | # https://developer.android.com/topic/libraries/support-library/androidx-rn
23 | android.useAndroidX=true
24 |
25 | # Automatically convert third-party libraries to use AndroidX
26 | android.enableJetifier=true
27 |
28 | # Version of flipper SDK to use with React Native
29 | FLIPPER_VERSION=0.125.0
30 |
31 | # Use this property to specify which architecture you want to build.
32 | # You can also override it from the CLI using
33 | # ./gradlew -PreactNativeArchitectures=x86_64
34 | reactNativeArchitectures=armeabi-v7a,arm64-v8a,x86,x86_64
35 |
36 | # Use this property to enable support to the new architecture.
37 | # This will allow you to use TurboModules and the Fabric render in
38 | # your application. You should enable this flag either if you want
39 | # to write custom TurboModules/Fabric components OR use libraries that
40 | # are providing them.
41 | newArchEnabled=false
42 |
43 | # The hosted JavaScript engine
44 | # Supported values: expo.jsEngine = "hermes" | "jsc"
45 | expo.jsEngine=hermes
46 |
47 | # Enable GIF support in React Native images (~200 B increase)
48 | expo.gif.enabled=true
49 | # Enable webp support in React Native images (~85 KB increase)
50 | expo.webp.enabled=true
51 | # Enable animated webp support (~3.4 MB increase)
52 | # Disabled by default because iOS doesn't support animated webp
53 | expo.webp.animated=false
54 |
--------------------------------------------------------------------------------
/packages/mobile/android/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MiniHacks/geese/68579dad1d3a9cfe3e7c498de5f55c477404dd0d/packages/mobile/android/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/packages/mobile/android/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | distributionBase=GRADLE_USER_HOME
2 | distributionPath=wrapper/dists
3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-all.zip
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 |
--------------------------------------------------------------------------------
/packages/mobile/android/gradlew:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 |
3 | #
4 | # Copyright © 2015-2021 the original authors.
5 | #
6 | # Licensed under the Apache License, Version 2.0 (the "License");
7 | # you may not use this file except in compliance with the License.
8 | # You may obtain a copy of the License at
9 | #
10 | # https://www.apache.org/licenses/LICENSE-2.0
11 | #
12 | # Unless required by applicable law or agreed to in writing, software
13 | # distributed under the License is distributed on an "AS IS" BASIS,
14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | # See the License for the specific language governing permissions and
16 | # limitations under the License.
17 | #
18 |
19 | ##############################################################################
20 | #
21 | # Gradle start up script for POSIX generated by Gradle.
22 | #
23 | # Important for running:
24 | #
25 | # (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is
26 | # noncompliant, but you have some other compliant shell such as ksh or
27 | # bash, then to run this script, type that shell name before the whole
28 | # command line, like:
29 | #
30 | # ksh Gradle
31 | #
32 | # Busybox and similar reduced shells will NOT work, because this script
33 | # requires all of these POSIX shell features:
34 | # * functions;
35 | # * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
36 | # «${var#prefix}», «${var%suffix}», and «$( cmd )»;
37 | # * compound commands having a testable exit status, especially «case»;
38 | # * various built-in commands including «command», «set», and «ulimit».
39 | #
40 | # Important for patching:
41 | #
42 | # (2) This script targets any POSIX shell, so it avoids extensions provided
43 | # by Bash, Ksh, etc; in particular arrays are avoided.
44 | #
45 | # The "traditional" practice of packing multiple parameters into a
46 | # space-separated string is a well documented source of bugs and security
47 | # problems, so this is (mostly) avoided, by progressively accumulating
48 | # options in "$@", and eventually passing that to Java.
49 | #
50 | # Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,
51 | # and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;
52 | # see the in-line comments for details.
53 | #
54 | # There are tweaks for specific operating systems such as AIX, CygWin,
55 | # Darwin, MinGW, and NonStop.
56 | #
57 | # (3) This script is generated from the Groovy template
58 | # https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
59 | # within the Gradle project.
60 | #
61 | # You can find Gradle at https://github.com/gradle/gradle/.
62 | #
63 | ##############################################################################
64 |
65 | # Attempt to set APP_HOME
66 |
67 | # Resolve links: $0 may be a link
68 | app_path=$0
69 |
70 | # Need this for daisy-chained symlinks.
71 | while
72 | APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path
73 | [ -h "$app_path" ]
74 | do
75 | ls=$( ls -ld "$app_path" )
76 | link=${ls#*' -> '}
77 | case $link in #(
78 | /*) app_path=$link ;; #(
79 | *) app_path=$APP_HOME$link ;;
80 | esac
81 | done
82 |
83 | APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
84 |
85 | APP_NAME="Gradle"
86 | APP_BASE_NAME=${0##*/}
87 |
88 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
89 | DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
90 |
91 | # Use the maximum available, or set MAX_FD != -1 to use that value.
92 | MAX_FD=maximum
93 |
94 | warn () {
95 | echo "$*"
96 | } >&2
97 |
98 | die () {
99 | echo
100 | echo "$*"
101 | echo
102 | exit 1
103 | } >&2
104 |
105 | # OS specific support (must be 'true' or 'false').
106 | cygwin=false
107 | msys=false
108 | darwin=false
109 | nonstop=false
110 | case "$( uname )" in #(
111 | CYGWIN* ) cygwin=true ;; #(
112 | Darwin* ) darwin=true ;; #(
113 | MSYS* | MINGW* ) msys=true ;; #(
114 | NONSTOP* ) nonstop=true ;;
115 | esac
116 |
117 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
118 |
119 |
120 | # Determine the Java command to use to start the JVM.
121 | if [ -n "$JAVA_HOME" ] ; then
122 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
123 | # IBM's JDK on AIX uses strange locations for the executables
124 | JAVACMD=$JAVA_HOME/jre/sh/java
125 | else
126 | JAVACMD=$JAVA_HOME/bin/java
127 | fi
128 | if [ ! -x "$JAVACMD" ] ; then
129 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
130 |
131 | Please set the JAVA_HOME variable in your environment to match the
132 | location of your Java installation."
133 | fi
134 | else
135 | JAVACMD=java
136 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
137 |
138 | Please set the JAVA_HOME variable in your environment to match the
139 | location of your Java installation."
140 | fi
141 |
142 | # Increase the maximum file descriptors if we can.
143 | if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
144 | case $MAX_FD in #(
145 | max*)
146 | MAX_FD=$( ulimit -H -n ) ||
147 | warn "Could not query maximum file descriptor limit"
148 | esac
149 | case $MAX_FD in #(
150 | '' | soft) :;; #(
151 | *)
152 | ulimit -n "$MAX_FD" ||
153 | warn "Could not set maximum file descriptor limit to $MAX_FD"
154 | esac
155 | fi
156 |
157 | # Collect all arguments for the java command, stacking in reverse order:
158 | # * args from the command line
159 | # * the main class name
160 | # * -classpath
161 | # * -D...appname settings
162 | # * --module-path (only if needed)
163 | # * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.
164 |
165 | # For Cygwin or MSYS, switch paths to Windows format before running java
166 | if "$cygwin" || "$msys" ; then
167 | APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
168 | CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )
169 |
170 | JAVACMD=$( cygpath --unix "$JAVACMD" )
171 |
172 | # Now convert the arguments - kludge to limit ourselves to /bin/sh
173 | for arg do
174 | if
175 | case $arg in #(
176 | -*) false ;; # don't mess with options #(
177 | /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath
178 | [ -e "$t" ] ;; #(
179 | *) false ;;
180 | esac
181 | then
182 | arg=$( cygpath --path --ignore --mixed "$arg" )
183 | fi
184 | # Roll the args list around exactly as many times as the number of
185 | # args, so each arg winds up back in the position where it started, but
186 | # possibly modified.
187 | #
188 | # NB: a `for` loop captures its iteration list before it begins, so
189 | # changing the positional parameters here affects neither the number of
190 | # iterations, nor the values presented in `arg`.
191 | shift # remove old arg
192 | set -- "$@" "$arg" # push replacement arg
193 | done
194 | fi
195 |
196 | # Collect all arguments for the java command;
197 | # * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
198 | # shell script including quotes and variable substitutions, so put them in
199 | # double quotes to make sure that they get re-expanded; and
200 | # * put everything else in single quotes, so that it's not re-expanded.
201 |
202 | set -- \
203 | "-Dorg.gradle.appname=$APP_BASE_NAME" \
204 | -classpath "$CLASSPATH" \
205 | org.gradle.wrapper.GradleWrapperMain \
206 | "$@"
207 |
208 | # Stop when "xargs" is not available.
209 | if ! command -v xargs >/dev/null 2>&1
210 | then
211 | die "xargs is not available"
212 | fi
213 |
214 | # Use "xargs" to parse quoted args.
215 | #
216 | # With -n1 it outputs one arg per line, with the quotes and backslashes removed.
217 | #
218 | # In Bash we could simply go:
219 | #
220 | # readarray ARGS < <( xargs -n1 <<<"$var" ) &&
221 | # set -- "${ARGS[@]}" "$@"
222 | #
223 | # but POSIX shell has neither arrays nor command substitution, so instead we
224 | # post-process each arg (as a line of input to sed) to backslash-escape any
225 | # character that might be a shell metacharacter, then use eval to reverse
226 | # that process (while maintaining the separation between arguments), and wrap
227 | # the whole thing up as a single "set" statement.
228 | #
229 | # This will of course break if any of these variables contains a newline or
230 | # an unmatched quote.
231 | #
232 |
233 | eval "set -- $(
234 | printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" |
235 | xargs -n1 |
236 | sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' |
237 | tr '\n' ' '
238 | )" '"$@"'
239 |
240 | exec "$JAVACMD" "$@"
241 |
--------------------------------------------------------------------------------
/packages/mobile/android/gradlew.bat:
--------------------------------------------------------------------------------
1 | @rem
2 | @rem Copyright 2015 the original author or authors.
3 | @rem
4 | @rem Licensed under the Apache License, Version 2.0 (the "License");
5 | @rem you may not use this file except in compliance with the License.
6 | @rem You may obtain a copy of the License at
7 | @rem
8 | @rem https://www.apache.org/licenses/LICENSE-2.0
9 | @rem
10 | @rem Unless required by applicable law or agreed to in writing, software
11 | @rem distributed under the License is distributed on an "AS IS" BASIS,
12 | @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | @rem See the License for the specific language governing permissions and
14 | @rem limitations under the License.
15 | @rem
16 |
17 | @if "%DEBUG%"=="" @echo off
18 | @rem ##########################################################################
19 | @rem
20 | @rem Gradle startup script for Windows
21 | @rem
22 | @rem ##########################################################################
23 |
24 | @rem Set local scope for the variables with windows NT shell
25 | if "%OS%"=="Windows_NT" setlocal
26 |
27 | set DIRNAME=%~dp0
28 | if "%DIRNAME%"=="" set DIRNAME=.
29 | set APP_BASE_NAME=%~n0
30 | set APP_HOME=%DIRNAME%
31 |
32 | @rem Resolve any "." and ".." in APP_HOME to make it shorter.
33 | for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
34 |
35 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
36 | set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
37 |
38 | @rem Find java.exe
39 | if defined JAVA_HOME goto findJavaFromJavaHome
40 |
41 | set JAVA_EXE=java.exe
42 | %JAVA_EXE% -version >NUL 2>&1
43 | if %ERRORLEVEL% equ 0 goto execute
44 |
45 | echo.
46 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
47 | echo.
48 | echo Please set the JAVA_HOME variable in your environment to match the
49 | echo location of your Java installation.
50 |
51 | goto fail
52 |
53 | :findJavaFromJavaHome
54 | set JAVA_HOME=%JAVA_HOME:"=%
55 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe
56 |
57 | if exist "%JAVA_EXE%" goto execute
58 |
59 | echo.
60 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
61 | echo.
62 | echo Please set the JAVA_HOME variable in your environment to match the
63 | echo location of your Java installation.
64 |
65 | goto fail
66 |
67 | :execute
68 | @rem Setup the command line
69 |
70 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
71 |
72 |
73 | @rem Execute Gradle
74 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
75 |
76 | :end
77 | @rem End local scope for the variables with windows NT shell
78 | if %ERRORLEVEL% equ 0 goto mainEnd
79 |
80 | :fail
81 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
82 | rem the _cmd.exe /c_ return code!
83 | set EXIT_CODE=%ERRORLEVEL%
84 | if %EXIT_CODE% equ 0 set EXIT_CODE=1
85 | if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE%
86 | exit /b %EXIT_CODE%
87 |
88 | :mainEnd
89 | if "%OS%"=="Windows_NT" endlocal
90 |
91 | :omega
92 |
--------------------------------------------------------------------------------
/packages/mobile/android/settings.gradle:
--------------------------------------------------------------------------------
1 | rootProject.name = 'mobile'
2 |
3 | apply from: new File(["node", "--print", "require.resolve('expo/package.json')"].execute(null, rootDir).text.trim(), "../scripts/autolinking.gradle");
4 | useExpoModules()
5 |
6 | apply from: new File(["node", "--print", "require.resolve('@react-native-community/cli-platform-android/package.json')"].execute(null, rootDir).text.trim(), "../native_modules.gradle");
7 | applyNativeModulesSettingsGradle(settings)
8 |
9 | include ':app'
10 | includeBuild(new File(["node", "--print", "require.resolve('react-native-gradle-plugin/package.json')"].execute(null, rootDir).text.trim()).getParentFile())
11 |
--------------------------------------------------------------------------------
/packages/mobile/app.json:
--------------------------------------------------------------------------------
1 | {
2 | "expo": {
3 | "name": "mobile",
4 | "slug": "mobile",
5 | "version": "1.0.0",
6 | "assetBundlePatterns": [
7 | "**/*"
8 | ],
9 | "android": {
10 | "package": "com.minihacks.geese"
11 | },
12 | "ios": {
13 | "bundleIdentifier": "com.minihacks.geese"
14 | }
15 | },
16 | "name": "mobile"
17 | }
18 |
--------------------------------------------------------------------------------
/packages/mobile/babel.config.js:
--------------------------------------------------------------------------------
1 | module.exports = function(api) {
2 | api.cache(true);
3 | return {
4 | presets: ['babel-preset-expo']
5 | };
6 | };
7 |
--------------------------------------------------------------------------------
/packages/mobile/index.js:
--------------------------------------------------------------------------------
1 | import { registerRootComponent } from 'expo';
2 |
3 | import App from './App';
4 |
5 | // registerRootComponent calls AppRegistry.registerComponent('main', () => App);
6 | // It also ensures that whether you load the app in Expo Go or in a native build,
7 | // the environment is set up appropriately
8 | registerRootComponent(App);
9 |
--------------------------------------------------------------------------------
/packages/mobile/ios/.gitignore:
--------------------------------------------------------------------------------
1 | # OSX
2 | #
3 | .DS_Store
4 |
5 | # Xcode
6 | #
7 | build/
8 | *.pbxuser
9 | !default.pbxuser
10 | *.mode1v3
11 | !default.mode1v3
12 | *.mode2v3
13 | !default.mode2v3
14 | *.perspectivev3
15 | !default.perspectivev3
16 | xcuserdata
17 | *.xccheckout
18 | *.moved-aside
19 | DerivedData
20 | *.hmap
21 | *.ipa
22 | *.xcuserstate
23 | project.xcworkspace
24 | .xcode.env.local
25 |
26 | # Bundle artifacts
27 | *.jsbundle
28 |
29 | # CocoaPods
30 | /Pods/
31 |
--------------------------------------------------------------------------------
/packages/mobile/ios/.xcode.env:
--------------------------------------------------------------------------------
1 | # This `.xcode.env` file is versioned and is used to source the environment
2 | # used when running script phases inside Xcode.
3 | # To customize your local environment, you can create an `.xcode.env.local`
4 | # file that is not versioned.
5 |
6 | # NODE_BINARY variable contains the PATH to the node executable.
7 | #
8 | # Customize the NODE_BINARY variable here.
9 | # For example, to use nvm with brew, add the following line
10 | # . "$(brew --prefix nvm)/nvm.sh" --no-use
11 | export NODE_BINARY=$(command -v node)
12 |
--------------------------------------------------------------------------------
/packages/mobile/ios/Podfile:
--------------------------------------------------------------------------------
1 | require File.join(File.dirname(`node --print "require.resolve('expo/package.json')"`), "scripts/autolinking")
2 | require File.join(File.dirname(`node --print "require.resolve('react-native/package.json')"`), "scripts/react_native_pods")
3 | require File.join(File.dirname(`node --print "require.resolve('@react-native-community/cli-platform-ios/package.json')"`), "native_modules")
4 |
5 | require 'json'
6 | podfile_properties = JSON.parse(File.read(File.join(__dir__, 'Podfile.properties.json'))) rescue {}
7 |
8 | ENV['RCT_NEW_ARCH_ENABLED'] = podfile_properties['newArchEnabled'] == 'true' ? '1' : '0'
9 | ENV['EX_DEV_CLIENT_NETWORK_INSPECTOR'] = '1' if podfile_properties['EX_DEV_CLIENT_NETWORK_INSPECTOR'] == 'true'
10 |
11 | platform :ios, podfile_properties['ios.deploymentTarget'] || '13.0'
12 | install! 'cocoapods',
13 | :deterministic_uuids => false
14 |
15 | prepare_react_native_project!
16 |
17 | # If you are using a `react-native-flipper` your iOS build will fail when `NO_FLIPPER=1` is set.
18 | # because `react-native-flipper` depends on (FlipperKit,...), which will be excluded. To fix this,
19 | # you can also exclude `react-native-flipper` in `react-native.config.js`
20 | #
21 | # ```js
22 | # module.exports = {
23 | # dependencies: {
24 | # ...(process.env.NO_FLIPPER ? { 'react-native-flipper': { platforms: { ios: null } } } : {}),
25 | # }
26 | # }
27 | # ```
28 | flipper_config = FlipperConfiguration.disabled
29 | if ENV['NO_FLIPPER'] == '1' then
30 | # Explicitly disabled through environment variables
31 | flipper_config = FlipperConfiguration.disabled
32 | elsif podfile_properties.key?('ios.flipper') then
33 | # Configure Flipper in Podfile.properties.json
34 | if podfile_properties['ios.flipper'] == 'true' then
35 | flipper_config = FlipperConfiguration.enabled(["Debug", "Release"])
36 | elsif podfile_properties['ios.flipper'] != 'false' then
37 | flipper_config = FlipperConfiguration.enabled(["Debug", "Release"], { 'Flipper' => podfile_properties['ios.flipper'] })
38 | end
39 | end
40 |
41 | target 'mobile' do
42 | use_expo_modules!
43 | config = use_native_modules!
44 |
45 | use_frameworks! :linkage => podfile_properties['ios.useFrameworks'].to_sym if podfile_properties['ios.useFrameworks']
46 | use_frameworks! :linkage => ENV['USE_FRAMEWORKS'].to_sym if ENV['USE_FRAMEWORKS']
47 |
48 | # Flags change depending on the env values.
49 | flags = get_default_flags()
50 |
51 | use_react_native!(
52 | :path => config[:reactNativePath],
53 | :hermes_enabled => podfile_properties['expo.jsEngine'] == nil || podfile_properties['expo.jsEngine'] == 'hermes',
54 | :fabric_enabled => flags[:fabric_enabled],
55 | # An absolute path to your application root.
56 | :app_path => "#{Pod::Config.instance.installation_root}/..",
57 | # Note that if you have use_frameworks! enabled, Flipper will not work if enabled
58 | :flipper_configuration => flipper_config
59 | )
60 |
61 | post_install do |installer|
62 | react_native_post_install(
63 | installer,
64 | config[:reactNativePath],
65 | # Set `mac_catalyst_enabled` to `true` in order to apply patches
66 | # necessary for Mac Catalyst builds
67 | :mac_catalyst_enabled => false
68 | )
69 | __apply_Xcode_12_5_M1_post_install_workaround(installer)
70 |
71 | # This is necessary for Xcode 14, because it signs resource bundles by default
72 | # when building for devices.
73 | installer.target_installation_results.pod_target_installation_results
74 | .each do |pod_name, target_installation_result|
75 | target_installation_result.resource_bundle_targets.each do |resource_bundle_target|
76 | resource_bundle_target.build_configurations.each do |config|
77 | config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
78 | end
79 | end
80 | end
81 | end
82 |
83 | post_integrate do |installer|
84 | begin
85 | expo_patch_react_imports!(installer)
86 | rescue => e
87 | Pod::UI.warn e
88 | end
89 | end
90 | end
91 |
--------------------------------------------------------------------------------
/packages/mobile/ios/Podfile.lock:
--------------------------------------------------------------------------------
1 | PODS:
2 | - boost (1.76.0)
3 | - DoubleConversion (1.1.6)
4 | - EXApplication (5.1.1):
5 | - ExpoModulesCore
6 | - EXConstants (14.2.1):
7 | - ExpoModulesCore
8 | - EXFileSystem (15.2.2):
9 | - ExpoModulesCore
10 | - EXFont (11.1.1):
11 | - ExpoModulesCore
12 | - Expo (48.0.11):
13 | - ExpoModulesCore
14 | - ExpoKeepAwake (12.0.1):
15 | - ExpoModulesCore
16 | - ExpoModulesCore (1.2.6):
17 | - React-Core
18 | - React-RCTAppDelegate
19 | - ReactCommon/turbomodule/core
20 | - EXSplashScreen (0.18.1):
21 | - ExpoModulesCore
22 | - React-Core
23 | - FBLazyVector (0.71.6)
24 | - FBReactNativeSpec (0.71.6):
25 | - RCT-Folly (= 2021.07.22.00)
26 | - RCTRequired (= 0.71.6)
27 | - RCTTypeSafety (= 0.71.6)
28 | - React-Core (= 0.71.6)
29 | - React-jsi (= 0.71.6)
30 | - ReactCommon/turbomodule/core (= 0.71.6)
31 | - fmt (6.2.1)
32 | - glog (0.3.5)
33 | - hermes-engine (0.71.6):
34 | - hermes-engine/Pre-built (= 0.71.6)
35 | - hermes-engine/Pre-built (0.71.6)
36 | - libevent (2.1.12)
37 | - RCT-Folly (2021.07.22.00):
38 | - boost
39 | - DoubleConversion
40 | - fmt (~> 6.2.1)
41 | - glog
42 | - RCT-Folly/Default (= 2021.07.22.00)
43 | - RCT-Folly/Default (2021.07.22.00):
44 | - boost
45 | - DoubleConversion
46 | - fmt (~> 6.2.1)
47 | - glog
48 | - RCT-Folly/Futures (2021.07.22.00):
49 | - boost
50 | - DoubleConversion
51 | - fmt (~> 6.2.1)
52 | - glog
53 | - libevent
54 | - RCTRequired (0.71.6)
55 | - RCTTypeSafety (0.71.6):
56 | - FBLazyVector (= 0.71.6)
57 | - RCTRequired (= 0.71.6)
58 | - React-Core (= 0.71.6)
59 | - React (0.71.6):
60 | - React-Core (= 0.71.6)
61 | - React-Core/DevSupport (= 0.71.6)
62 | - React-Core/RCTWebSocket (= 0.71.6)
63 | - React-RCTActionSheet (= 0.71.6)
64 | - React-RCTAnimation (= 0.71.6)
65 | - React-RCTBlob (= 0.71.6)
66 | - React-RCTImage (= 0.71.6)
67 | - React-RCTLinking (= 0.71.6)
68 | - React-RCTNetwork (= 0.71.6)
69 | - React-RCTSettings (= 0.71.6)
70 | - React-RCTText (= 0.71.6)
71 | - React-RCTVibration (= 0.71.6)
72 | - React-callinvoker (0.71.6)
73 | - React-Codegen (0.71.6):
74 | - FBReactNativeSpec
75 | - hermes-engine
76 | - RCT-Folly
77 | - RCTRequired
78 | - RCTTypeSafety
79 | - React-Core
80 | - React-jsi
81 | - React-jsiexecutor
82 | - ReactCommon/turbomodule/bridging
83 | - ReactCommon/turbomodule/core
84 | - React-Core (0.71.6):
85 | - glog
86 | - hermes-engine
87 | - RCT-Folly (= 2021.07.22.00)
88 | - React-Core/Default (= 0.71.6)
89 | - React-cxxreact (= 0.71.6)
90 | - React-hermes
91 | - React-jsi (= 0.71.6)
92 | - React-jsiexecutor (= 0.71.6)
93 | - React-perflogger (= 0.71.6)
94 | - Yoga
95 | - React-Core/CoreModulesHeaders (0.71.6):
96 | - glog
97 | - hermes-engine
98 | - RCT-Folly (= 2021.07.22.00)
99 | - React-Core/Default
100 | - React-cxxreact (= 0.71.6)
101 | - React-hermes
102 | - React-jsi (= 0.71.6)
103 | - React-jsiexecutor (= 0.71.6)
104 | - React-perflogger (= 0.71.6)
105 | - Yoga
106 | - React-Core/Default (0.71.6):
107 | - glog
108 | - hermes-engine
109 | - RCT-Folly (= 2021.07.22.00)
110 | - React-cxxreact (= 0.71.6)
111 | - React-hermes
112 | - React-jsi (= 0.71.6)
113 | - React-jsiexecutor (= 0.71.6)
114 | - React-perflogger (= 0.71.6)
115 | - Yoga
116 | - React-Core/DevSupport (0.71.6):
117 | - glog
118 | - hermes-engine
119 | - RCT-Folly (= 2021.07.22.00)
120 | - React-Core/Default (= 0.71.6)
121 | - React-Core/RCTWebSocket (= 0.71.6)
122 | - React-cxxreact (= 0.71.6)
123 | - React-hermes
124 | - React-jsi (= 0.71.6)
125 | - React-jsiexecutor (= 0.71.6)
126 | - React-jsinspector (= 0.71.6)
127 | - React-perflogger (= 0.71.6)
128 | - Yoga
129 | - React-Core/RCTActionSheetHeaders (0.71.6):
130 | - glog
131 | - hermes-engine
132 | - RCT-Folly (= 2021.07.22.00)
133 | - React-Core/Default
134 | - React-cxxreact (= 0.71.6)
135 | - React-hermes
136 | - React-jsi (= 0.71.6)
137 | - React-jsiexecutor (= 0.71.6)
138 | - React-perflogger (= 0.71.6)
139 | - Yoga
140 | - React-Core/RCTAnimationHeaders (0.71.6):
141 | - glog
142 | - hermes-engine
143 | - RCT-Folly (= 2021.07.22.00)
144 | - React-Core/Default
145 | - React-cxxreact (= 0.71.6)
146 | - React-hermes
147 | - React-jsi (= 0.71.6)
148 | - React-jsiexecutor (= 0.71.6)
149 | - React-perflogger (= 0.71.6)
150 | - Yoga
151 | - React-Core/RCTBlobHeaders (0.71.6):
152 | - glog
153 | - hermes-engine
154 | - RCT-Folly (= 2021.07.22.00)
155 | - React-Core/Default
156 | - React-cxxreact (= 0.71.6)
157 | - React-hermes
158 | - React-jsi (= 0.71.6)
159 | - React-jsiexecutor (= 0.71.6)
160 | - React-perflogger (= 0.71.6)
161 | - Yoga
162 | - React-Core/RCTImageHeaders (0.71.6):
163 | - glog
164 | - hermes-engine
165 | - RCT-Folly (= 2021.07.22.00)
166 | - React-Core/Default
167 | - React-cxxreact (= 0.71.6)
168 | - React-hermes
169 | - React-jsi (= 0.71.6)
170 | - React-jsiexecutor (= 0.71.6)
171 | - React-perflogger (= 0.71.6)
172 | - Yoga
173 | - React-Core/RCTLinkingHeaders (0.71.6):
174 | - glog
175 | - hermes-engine
176 | - RCT-Folly (= 2021.07.22.00)
177 | - React-Core/Default
178 | - React-cxxreact (= 0.71.6)
179 | - React-hermes
180 | - React-jsi (= 0.71.6)
181 | - React-jsiexecutor (= 0.71.6)
182 | - React-perflogger (= 0.71.6)
183 | - Yoga
184 | - React-Core/RCTNetworkHeaders (0.71.6):
185 | - glog
186 | - hermes-engine
187 | - RCT-Folly (= 2021.07.22.00)
188 | - React-Core/Default
189 | - React-cxxreact (= 0.71.6)
190 | - React-hermes
191 | - React-jsi (= 0.71.6)
192 | - React-jsiexecutor (= 0.71.6)
193 | - React-perflogger (= 0.71.6)
194 | - Yoga
195 | - React-Core/RCTSettingsHeaders (0.71.6):
196 | - glog
197 | - hermes-engine
198 | - RCT-Folly (= 2021.07.22.00)
199 | - React-Core/Default
200 | - React-cxxreact (= 0.71.6)
201 | - React-hermes
202 | - React-jsi (= 0.71.6)
203 | - React-jsiexecutor (= 0.71.6)
204 | - React-perflogger (= 0.71.6)
205 | - Yoga
206 | - React-Core/RCTTextHeaders (0.71.6):
207 | - glog
208 | - hermes-engine
209 | - RCT-Folly (= 2021.07.22.00)
210 | - React-Core/Default
211 | - React-cxxreact (= 0.71.6)
212 | - React-hermes
213 | - React-jsi (= 0.71.6)
214 | - React-jsiexecutor (= 0.71.6)
215 | - React-perflogger (= 0.71.6)
216 | - Yoga
217 | - React-Core/RCTVibrationHeaders (0.71.6):
218 | - glog
219 | - hermes-engine
220 | - RCT-Folly (= 2021.07.22.00)
221 | - React-Core/Default
222 | - React-cxxreact (= 0.71.6)
223 | - React-hermes
224 | - React-jsi (= 0.71.6)
225 | - React-jsiexecutor (= 0.71.6)
226 | - React-perflogger (= 0.71.6)
227 | - Yoga
228 | - React-Core/RCTWebSocket (0.71.6):
229 | - glog
230 | - hermes-engine
231 | - RCT-Folly (= 2021.07.22.00)
232 | - React-Core/Default (= 0.71.6)
233 | - React-cxxreact (= 0.71.6)
234 | - React-hermes
235 | - React-jsi (= 0.71.6)
236 | - React-jsiexecutor (= 0.71.6)
237 | - React-perflogger (= 0.71.6)
238 | - Yoga
239 | - React-CoreModules (0.71.6):
240 | - RCT-Folly (= 2021.07.22.00)
241 | - RCTTypeSafety (= 0.71.6)
242 | - React-Codegen (= 0.71.6)
243 | - React-Core/CoreModulesHeaders (= 0.71.6)
244 | - React-jsi (= 0.71.6)
245 | - React-RCTBlob
246 | - React-RCTImage (= 0.71.6)
247 | - ReactCommon/turbomodule/core (= 0.71.6)
248 | - React-cxxreact (0.71.6):
249 | - boost (= 1.76.0)
250 | - DoubleConversion
251 | - glog
252 | - hermes-engine
253 | - RCT-Folly (= 2021.07.22.00)
254 | - React-callinvoker (= 0.71.6)
255 | - React-jsi (= 0.71.6)
256 | - React-jsinspector (= 0.71.6)
257 | - React-logger (= 0.71.6)
258 | - React-perflogger (= 0.71.6)
259 | - React-runtimeexecutor (= 0.71.6)
260 | - React-hermes (0.71.6):
261 | - DoubleConversion
262 | - glog
263 | - hermes-engine
264 | - RCT-Folly (= 2021.07.22.00)
265 | - RCT-Folly/Futures (= 2021.07.22.00)
266 | - React-cxxreact (= 0.71.6)
267 | - React-jsi
268 | - React-jsiexecutor (= 0.71.6)
269 | - React-jsinspector (= 0.71.6)
270 | - React-perflogger (= 0.71.6)
271 | - React-jsi (0.71.6):
272 | - boost (= 1.76.0)
273 | - DoubleConversion
274 | - glog
275 | - hermes-engine
276 | - RCT-Folly (= 2021.07.22.00)
277 | - React-jsiexecutor (0.71.6):
278 | - DoubleConversion
279 | - glog
280 | - hermes-engine
281 | - RCT-Folly (= 2021.07.22.00)
282 | - React-cxxreact (= 0.71.6)
283 | - React-jsi (= 0.71.6)
284 | - React-perflogger (= 0.71.6)
285 | - React-jsinspector (0.71.6)
286 | - React-logger (0.71.6):
287 | - glog
288 | - react-native-safe-area-context (4.5.1):
289 | - RCT-Folly
290 | - RCTRequired
291 | - RCTTypeSafety
292 | - React-Core
293 | - ReactCommon/turbomodule/core
294 | - React-perflogger (0.71.6)
295 | - React-RCTActionSheet (0.71.6):
296 | - React-Core/RCTActionSheetHeaders (= 0.71.6)
297 | - React-RCTAnimation (0.71.6):
298 | - RCT-Folly (= 2021.07.22.00)
299 | - RCTTypeSafety (= 0.71.6)
300 | - React-Codegen (= 0.71.6)
301 | - React-Core/RCTAnimationHeaders (= 0.71.6)
302 | - React-jsi (= 0.71.6)
303 | - ReactCommon/turbomodule/core (= 0.71.6)
304 | - React-RCTAppDelegate (0.71.6):
305 | - RCT-Folly
306 | - RCTRequired
307 | - RCTTypeSafety
308 | - React-Core
309 | - ReactCommon/turbomodule/core
310 | - React-RCTBlob (0.71.6):
311 | - hermes-engine
312 | - RCT-Folly (= 2021.07.22.00)
313 | - React-Codegen (= 0.71.6)
314 | - React-Core/RCTBlobHeaders (= 0.71.6)
315 | - React-Core/RCTWebSocket (= 0.71.6)
316 | - React-jsi (= 0.71.6)
317 | - React-RCTNetwork (= 0.71.6)
318 | - ReactCommon/turbomodule/core (= 0.71.6)
319 | - React-RCTImage (0.71.6):
320 | - RCT-Folly (= 2021.07.22.00)
321 | - RCTTypeSafety (= 0.71.6)
322 | - React-Codegen (= 0.71.6)
323 | - React-Core/RCTImageHeaders (= 0.71.6)
324 | - React-jsi (= 0.71.6)
325 | - React-RCTNetwork (= 0.71.6)
326 | - ReactCommon/turbomodule/core (= 0.71.6)
327 | - React-RCTLinking (0.71.6):
328 | - React-Codegen (= 0.71.6)
329 | - React-Core/RCTLinkingHeaders (= 0.71.6)
330 | - React-jsi (= 0.71.6)
331 | - ReactCommon/turbomodule/core (= 0.71.6)
332 | - React-RCTNetwork (0.71.6):
333 | - RCT-Folly (= 2021.07.22.00)
334 | - RCTTypeSafety (= 0.71.6)
335 | - React-Codegen (= 0.71.6)
336 | - React-Core/RCTNetworkHeaders (= 0.71.6)
337 | - React-jsi (= 0.71.6)
338 | - ReactCommon/turbomodule/core (= 0.71.6)
339 | - React-RCTSettings (0.71.6):
340 | - RCT-Folly (= 2021.07.22.00)
341 | - RCTTypeSafety (= 0.71.6)
342 | - React-Codegen (= 0.71.6)
343 | - React-Core/RCTSettingsHeaders (= 0.71.6)
344 | - React-jsi (= 0.71.6)
345 | - ReactCommon/turbomodule/core (= 0.71.6)
346 | - React-RCTText (0.71.6):
347 | - React-Core/RCTTextHeaders (= 0.71.6)
348 | - React-RCTVibration (0.71.6):
349 | - RCT-Folly (= 2021.07.22.00)
350 | - React-Codegen (= 0.71.6)
351 | - React-Core/RCTVibrationHeaders (= 0.71.6)
352 | - React-jsi (= 0.71.6)
353 | - ReactCommon/turbomodule/core (= 0.71.6)
354 | - React-runtimeexecutor (0.71.6):
355 | - React-jsi (= 0.71.6)
356 | - ReactCommon/turbomodule/bridging (0.71.6):
357 | - DoubleConversion
358 | - glog
359 | - hermes-engine
360 | - RCT-Folly (= 2021.07.22.00)
361 | - React-callinvoker (= 0.71.6)
362 | - React-Core (= 0.71.6)
363 | - React-cxxreact (= 0.71.6)
364 | - React-jsi (= 0.71.6)
365 | - React-logger (= 0.71.6)
366 | - React-perflogger (= 0.71.6)
367 | - ReactCommon/turbomodule/core (0.71.6):
368 | - DoubleConversion
369 | - glog
370 | - hermes-engine
371 | - RCT-Folly (= 2021.07.22.00)
372 | - React-callinvoker (= 0.71.6)
373 | - React-Core (= 0.71.6)
374 | - React-cxxreact (= 0.71.6)
375 | - React-jsi (= 0.71.6)
376 | - React-logger (= 0.71.6)
377 | - React-perflogger (= 0.71.6)
378 | - Yoga (1.14.0)
379 |
380 | DEPENDENCIES:
381 | - boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
382 | - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
383 | - EXApplication (from `../node_modules/expo-application/ios`)
384 | - EXConstants (from `../node_modules/expo-constants/ios`)
385 | - EXFileSystem (from `../node_modules/expo-file-system/ios`)
386 | - EXFont (from `../node_modules/expo-font/ios`)
387 | - Expo (from `../node_modules/expo`)
388 | - ExpoKeepAwake (from `../node_modules/expo-keep-awake/ios`)
389 | - ExpoModulesCore (from `../node_modules/expo-modules-core`)
390 | - EXSplashScreen (from `../node_modules/expo-splash-screen/ios`)
391 | - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
392 | - FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`)
393 | - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
394 | - hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`)
395 | - libevent (~> 2.1.12)
396 | - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
397 | - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
398 | - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
399 | - React (from `../node_modules/react-native/`)
400 | - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
401 | - React-Codegen (from `build/generated/ios`)
402 | - React-Core (from `../node_modules/react-native/`)
403 | - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
404 | - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
405 | - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
406 | - React-hermes (from `../node_modules/react-native/ReactCommon/hermes`)
407 | - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
408 | - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
409 | - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
410 | - React-logger (from `../node_modules/react-native/ReactCommon/logger`)
411 | - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
412 | - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
413 | - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
414 | - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
415 | - React-RCTAppDelegate (from `../node_modules/react-native/Libraries/AppDelegate`)
416 | - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
417 | - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
418 | - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
419 | - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
420 | - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
421 | - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
422 | - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
423 | - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
424 | - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
425 | - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
426 |
427 | SPEC REPOS:
428 | trunk:
429 | - fmt
430 | - libevent
431 |
432 | EXTERNAL SOURCES:
433 | boost:
434 | :podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
435 | DoubleConversion:
436 | :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
437 | EXApplication:
438 | :path: "../node_modules/expo-application/ios"
439 | EXConstants:
440 | :path: "../node_modules/expo-constants/ios"
441 | EXFileSystem:
442 | :path: "../node_modules/expo-file-system/ios"
443 | EXFont:
444 | :path: "../node_modules/expo-font/ios"
445 | Expo:
446 | :path: "../node_modules/expo"
447 | ExpoKeepAwake:
448 | :path: "../node_modules/expo-keep-awake/ios"
449 | ExpoModulesCore:
450 | :path: "../node_modules/expo-modules-core"
451 | EXSplashScreen:
452 | :path: "../node_modules/expo-splash-screen/ios"
453 | FBLazyVector:
454 | :path: "../node_modules/react-native/Libraries/FBLazyVector"
455 | FBReactNativeSpec:
456 | :path: "../node_modules/react-native/React/FBReactNativeSpec"
457 | glog:
458 | :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
459 | hermes-engine:
460 | :podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec"
461 | RCT-Folly:
462 | :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
463 | RCTRequired:
464 | :path: "../node_modules/react-native/Libraries/RCTRequired"
465 | RCTTypeSafety:
466 | :path: "../node_modules/react-native/Libraries/TypeSafety"
467 | React:
468 | :path: "../node_modules/react-native/"
469 | React-callinvoker:
470 | :path: "../node_modules/react-native/ReactCommon/callinvoker"
471 | React-Codegen:
472 | :path: build/generated/ios
473 | React-Core:
474 | :path: "../node_modules/react-native/"
475 | React-CoreModules:
476 | :path: "../node_modules/react-native/React/CoreModules"
477 | React-cxxreact:
478 | :path: "../node_modules/react-native/ReactCommon/cxxreact"
479 | React-hermes:
480 | :path: "../node_modules/react-native/ReactCommon/hermes"
481 | React-jsi:
482 | :path: "../node_modules/react-native/ReactCommon/jsi"
483 | React-jsiexecutor:
484 | :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
485 | React-jsinspector:
486 | :path: "../node_modules/react-native/ReactCommon/jsinspector"
487 | React-logger:
488 | :path: "../node_modules/react-native/ReactCommon/logger"
489 | react-native-safe-area-context:
490 | :path: "../node_modules/react-native-safe-area-context"
491 | React-perflogger:
492 | :path: "../node_modules/react-native/ReactCommon/reactperflogger"
493 | React-RCTActionSheet:
494 | :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
495 | React-RCTAnimation:
496 | :path: "../node_modules/react-native/Libraries/NativeAnimation"
497 | React-RCTAppDelegate:
498 | :path: "../node_modules/react-native/Libraries/AppDelegate"
499 | React-RCTBlob:
500 | :path: "../node_modules/react-native/Libraries/Blob"
501 | React-RCTImage:
502 | :path: "../node_modules/react-native/Libraries/Image"
503 | React-RCTLinking:
504 | :path: "../node_modules/react-native/Libraries/LinkingIOS"
505 | React-RCTNetwork:
506 | :path: "../node_modules/react-native/Libraries/Network"
507 | React-RCTSettings:
508 | :path: "../node_modules/react-native/Libraries/Settings"
509 | React-RCTText:
510 | :path: "../node_modules/react-native/Libraries/Text"
511 | React-RCTVibration:
512 | :path: "../node_modules/react-native/Libraries/Vibration"
513 | React-runtimeexecutor:
514 | :path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
515 | ReactCommon:
516 | :path: "../node_modules/react-native/ReactCommon"
517 | Yoga:
518 | :path: "../node_modules/react-native/ReactCommon/yoga"
519 |
520 | SPEC CHECKSUMS:
521 | boost: 57d2868c099736d80fcd648bf211b4431e51a558
522 | DoubleConversion: 5189b271737e1565bdce30deb4a08d647e3f5f54
523 | EXApplication: d8f53a7eee90a870a75656280e8d4b85726ea903
524 | EXConstants: f348da07e21b23d2b085e270d7b74f282df1a7d9
525 | EXFileSystem: 844e86ca9b5375486ecc4ef06d3838d5597d895d
526 | EXFont: 6ea3800df746be7233208d80fe379b8ed74f4272
527 | Expo: 81418098ffb16914b2e190f54e06db923248e4a1
528 | ExpoKeepAwake: 69f5f627670d62318410392d03e0b5db0f85759a
529 | ExpoModulesCore: 6e0259511f4c4341b6b8357db393624df2280828
530 | EXSplashScreen: cd7fb052dff5ba8311d5c2455ecbebffe1b7a8ca
531 | FBLazyVector: a83ceaa8a8581003a623facdb3c44f6d4f342ac5
532 | FBReactNativeSpec: 85eee79837cb797ab6176f0243a2b40511c09158
533 | fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
534 | glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b
535 | hermes-engine: b434cea529ad0152c56c7cb6486b0c4c0b23b5de
536 | libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
537 | RCT-Folly: 424b8c9a7a0b9ab2886ffe9c3b041ef628fd4fb1
538 | RCTRequired: 5c6fd63b03abb06947d348dadac51c93e3485bd8
539 | RCTTypeSafety: 1c66daedd66f674e39ce9f40782f0d490c78b175
540 | React: e11ca7cdc7aa4ddd7e6a59278b808cfe17ebbd9f
541 | React-callinvoker: 77a82869505c96945c074b80bbdc8df919646d51
542 | React-Codegen: 9ee33090c38ab3da3c4dc029924d50fb649f0dfc
543 | React-Core: 44903e47b428a491f48fd0eae54caddb2ea05ebf
544 | React-CoreModules: 83d989defdfc82be1f7386f84a56b6509f54ac74
545 | React-cxxreact: 058e7e6349649eae9cfcdec5854e702b26298932
546 | React-hermes: ba19a405804b833c9b832c1f2061ad5038bb97f2
547 | React-jsi: 3fe6f589c9cafbef85ed5a4be7c6dc8edfb4ab54
548 | React-jsiexecutor: 7894956638ff3e00819dd3f9f6f4a84da38f2409
549 | React-jsinspector: d5ce2ef3eb8fd30c28389d0bc577918c70821bd6
550 | React-logger: 9332c3e7b4ef007a0211c0a9868253aac3e1da82
551 | react-native-safe-area-context: f5549f36508b1b7497434baa0cd97d7e470920d4
552 | React-perflogger: 43392072a5b867a504e2b4857606f8fc5a403d7f
553 | React-RCTActionSheet: c7b67c125bebeda9fb19fc7b200d85cb9d6899c4
554 | React-RCTAnimation: c2de79906f607986633a7114bee44854e4c7e2f5
555 | React-RCTAppDelegate: 96bc933c3228a549718a6475c4d3f9dd4bbae98d
556 | React-RCTBlob: cf72446957310e7da6627a4bdaadf970d3a8f232
557 | React-RCTImage: c6093f1bf3d67c0428d779b00390617d5bd90699
558 | React-RCTLinking: 5de47e37937889d22599af4b99d0552bad1b1c3c
559 | React-RCTNetwork: e7d7077e073b08e5dd486fba3fe87ccad90a9bc4
560 | React-RCTSettings: 72a04921b2e8fb832da7201a60ffffff2a7c62f7
561 | React-RCTText: 7123c70fef5367e2121fea37e65b9ad6d3747e54
562 | React-RCTVibration: 73d201599a64ea14b4e0b8f91b64970979fd92e6
563 | React-runtimeexecutor: 8692ac548bec648fa121980ccb4304afd136d584
564 | ReactCommon: 0c43eaeaaee231d7d8dc24fc5a6e4cf2b75bf196
565 | Yoga: ba09b6b11e6139e3df8229238aa794205ca6a02a
566 |
567 | PODFILE CHECKSUM: b056653db6e2cab8d864e110efbfb1746da57c22
568 |
569 | COCOAPODS: 1.12.0
570 |
--------------------------------------------------------------------------------
/packages/mobile/ios/Podfile.properties.json:
--------------------------------------------------------------------------------
1 | {
2 | "expo.jsEngine": "hermes"
3 | }
4 |
--------------------------------------------------------------------------------
/packages/mobile/ios/mobile.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 46;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; };
11 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
12 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
13 | 3E461D99554A48A4959DE609 /* SplashScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */; };
14 | 96905EF65AED1B983A6B3ABC /* libPods-mobile.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 58EEBF8E8E6FB1BC6CAF49B5 /* libPods-mobile.a */; };
15 | B18059E884C0ABDD17F3DC3D /* ExpoModulesProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = FAC715A2D49A985799AEE119 /* ExpoModulesProvider.swift */; };
16 | BB2F792D24A3F905000567C9 /* Expo.plist in Resources */ = {isa = PBXBuildFile; fileRef = BB2F792C24A3F905000567C9 /* Expo.plist */; };
17 | E58A72E0C46F4C359289330C /* noop-file.swift in Sources */ = {isa = PBXBuildFile; fileRef = F505389FEA6F48048F72D6CE /* noop-file.swift */; };
18 | /* End PBXBuildFile section */
19 |
20 | /* Begin PBXFileReference section */
21 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; };
22 | 13B07F961A680F5B00A75B9A /* mobile.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = mobile.app; sourceTree = BUILT_PRODUCTS_DIR; };
23 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = mobile/AppDelegate.h; sourceTree = ""; };
24 | 13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = mobile/AppDelegate.mm; sourceTree = ""; };
25 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = mobile/Images.xcassets; sourceTree = ""; };
26 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = mobile/Info.plist; sourceTree = ""; };
27 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = mobile/main.m; sourceTree = ""; };
28 | 58EEBF8E8E6FB1BC6CAF49B5 /* libPods-mobile.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-mobile.a"; sourceTree = BUILT_PRODUCTS_DIR; };
29 | 6C2E3173556A471DD304B334 /* Pods-mobile.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-mobile.debug.xcconfig"; path = "Target Support Files/Pods-mobile/Pods-mobile.debug.xcconfig"; sourceTree = ""; };
30 | 7A4D352CD337FB3A3BF06240 /* Pods-mobile.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-mobile.release.xcconfig"; path = "Target Support Files/Pods-mobile/Pods-mobile.release.xcconfig"; sourceTree = ""; };
31 | AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = SplashScreen.storyboard; path = mobile/SplashScreen.storyboard; sourceTree = ""; };
32 | BB2F792C24A3F905000567C9 /* Expo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Expo.plist; sourceTree = ""; };
33 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
34 | F505389FEA6F48048F72D6CE /* noop-file.swift */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 4; includeInIndex = 0; lastKnownFileType = sourcecode.swift; name = "noop-file.swift"; path = "mobile/noop-file.swift"; sourceTree = ""; };
35 | FAC715A2D49A985799AEE119 /* ExpoModulesProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExpoModulesProvider.swift; path = "Pods/Target Support Files/Pods-mobile/ExpoModulesProvider.swift"; sourceTree = ""; };
36 | /* End PBXFileReference section */
37 |
38 | /* Begin PBXFrameworksBuildPhase section */
39 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
40 | isa = PBXFrameworksBuildPhase;
41 | buildActionMask = 2147483647;
42 | files = (
43 | 96905EF65AED1B983A6B3ABC /* libPods-mobile.a in Frameworks */,
44 | );
45 | runOnlyForDeploymentPostprocessing = 0;
46 | };
47 | /* End PBXFrameworksBuildPhase section */
48 |
49 | /* Begin PBXGroup section */
50 | 13B07FAE1A68108700A75B9A /* mobile */ = {
51 | isa = PBXGroup;
52 | children = (
53 | BB2F792B24A3F905000567C9 /* Supporting */,
54 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */,
55 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
56 | 13B07FB01A68108700A75B9A /* AppDelegate.mm */,
57 | 13B07FB51A68108700A75B9A /* Images.xcassets */,
58 | 13B07FB61A68108700A75B9A /* Info.plist */,
59 | 13B07FB71A68108700A75B9A /* main.m */,
60 | AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */,
61 | F505389FEA6F48048F72D6CE /* noop-file.swift */,
62 | );
63 | name = mobile;
64 | sourceTree = "";
65 | };
66 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
67 | isa = PBXGroup;
68 | children = (
69 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
70 | 58EEBF8E8E6FB1BC6CAF49B5 /* libPods-mobile.a */,
71 | );
72 | name = Frameworks;
73 | sourceTree = "";
74 | };
75 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
76 | isa = PBXGroup;
77 | children = (
78 | );
79 | name = Libraries;
80 | sourceTree = "";
81 | };
82 | 83CBB9F61A601CBA00E9B192 = {
83 | isa = PBXGroup;
84 | children = (
85 | 13B07FAE1A68108700A75B9A /* mobile */,
86 | 832341AE1AAA6A7D00B99B32 /* Libraries */,
87 | 83CBBA001A601CBA00E9B192 /* Products */,
88 | 2D16E6871FA4F8E400B85C8A /* Frameworks */,
89 | D65327D7A22EEC0BE12398D9 /* Pods */,
90 | D7E4C46ADA2E9064B798F356 /* ExpoModulesProviders */,
91 | );
92 | indentWidth = 2;
93 | sourceTree = "";
94 | tabWidth = 2;
95 | usesTabs = 0;
96 | };
97 | 83CBBA001A601CBA00E9B192 /* Products */ = {
98 | isa = PBXGroup;
99 | children = (
100 | 13B07F961A680F5B00A75B9A /* mobile.app */,
101 | );
102 | name = Products;
103 | sourceTree = "";
104 | };
105 | 92DBD88DE9BF7D494EA9DA96 /* mobile */ = {
106 | isa = PBXGroup;
107 | children = (
108 | FAC715A2D49A985799AEE119 /* ExpoModulesProvider.swift */,
109 | );
110 | name = mobile;
111 | sourceTree = "";
112 | };
113 | BB2F792B24A3F905000567C9 /* Supporting */ = {
114 | isa = PBXGroup;
115 | children = (
116 | BB2F792C24A3F905000567C9 /* Expo.plist */,
117 | );
118 | name = Supporting;
119 | path = mobile/Supporting;
120 | sourceTree = "";
121 | };
122 | D65327D7A22EEC0BE12398D9 /* Pods */ = {
123 | isa = PBXGroup;
124 | children = (
125 | 6C2E3173556A471DD304B334 /* Pods-mobile.debug.xcconfig */,
126 | 7A4D352CD337FB3A3BF06240 /* Pods-mobile.release.xcconfig */,
127 | );
128 | path = Pods;
129 | sourceTree = "";
130 | };
131 | D7E4C46ADA2E9064B798F356 /* ExpoModulesProviders */ = {
132 | isa = PBXGroup;
133 | children = (
134 | 92DBD88DE9BF7D494EA9DA96 /* mobile */,
135 | );
136 | name = ExpoModulesProviders;
137 | sourceTree = "";
138 | };
139 | /* End PBXGroup section */
140 |
141 | /* Begin PBXNativeTarget section */
142 | 13B07F861A680F5B00A75B9A /* mobile */ = {
143 | isa = PBXNativeTarget;
144 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "mobile" */;
145 | buildPhases = (
146 | 08A4A3CD28434E44B6B9DE2E /* [CP] Check Pods Manifest.lock */,
147 | FD10A7F022414F080027D42C /* Start Packager */,
148 | 13B07F871A680F5B00A75B9A /* Sources */,
149 | 13B07F8C1A680F5B00A75B9A /* Frameworks */,
150 | 13B07F8E1A680F5B00A75B9A /* Resources */,
151 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
152 | 800E24972A6A228C8D4807E9 /* [CP] Copy Pods Resources */,
153 | F7945C893938CA168F685CCA /* [CP] Embed Pods Frameworks */,
154 | );
155 | buildRules = (
156 | );
157 | dependencies = (
158 | );
159 | name = mobile;
160 | productName = mobile;
161 | productReference = 13B07F961A680F5B00A75B9A /* mobile.app */;
162 | productType = "com.apple.product-type.application";
163 | };
164 | /* End PBXNativeTarget section */
165 |
166 | /* Begin PBXProject section */
167 | 83CBB9F71A601CBA00E9B192 /* Project object */ = {
168 | isa = PBXProject;
169 | attributes = {
170 | LastUpgradeCheck = 1130;
171 | TargetAttributes = {
172 | 13B07F861A680F5B00A75B9A = {
173 | LastSwiftMigration = 1250;
174 | };
175 | };
176 | };
177 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "mobile" */;
178 | compatibilityVersion = "Xcode 3.2";
179 | developmentRegion = en;
180 | hasScannedForEncodings = 0;
181 | knownRegions = (
182 | en,
183 | Base,
184 | );
185 | mainGroup = 83CBB9F61A601CBA00E9B192;
186 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
187 | projectDirPath = "";
188 | projectRoot = "";
189 | targets = (
190 | 13B07F861A680F5B00A75B9A /* mobile */,
191 | );
192 | };
193 | /* End PBXProject section */
194 |
195 | /* Begin PBXResourcesBuildPhase section */
196 | 13B07F8E1A680F5B00A75B9A /* Resources */ = {
197 | isa = PBXResourcesBuildPhase;
198 | buildActionMask = 2147483647;
199 | files = (
200 | BB2F792D24A3F905000567C9 /* Expo.plist in Resources */,
201 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
202 | 3E461D99554A48A4959DE609 /* SplashScreen.storyboard in Resources */,
203 | );
204 | runOnlyForDeploymentPostprocessing = 0;
205 | };
206 | /* End PBXResourcesBuildPhase section */
207 |
208 | /* Begin PBXShellScriptBuildPhase section */
209 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
210 | isa = PBXShellScriptBuildPhase;
211 | buildActionMask = 2147483647;
212 | files = (
213 | );
214 | inputPaths = (
215 | );
216 | name = "Bundle React Native code and images";
217 | outputPaths = (
218 | );
219 | runOnlyForDeploymentPostprocessing = 0;
220 | shellPath = /bin/sh;
221 | shellScript = "if [[ -f \"$PODS_ROOT/../.xcode.env\" ]]; then\n source \"$PODS_ROOT/../.xcode.env\"\nfi\nif [[ -f \"$PODS_ROOT/../.xcode.env.local\" ]]; then\n source \"$PODS_ROOT/../.xcode.env.local\"\nfi\n\n# The project root by default is one level up from the ios directory\nexport PROJECT_ROOT=\"$PROJECT_DIR\"/..\n\nif [[ \"$CONFIGURATION\" = *Debug* ]]; then\n export SKIP_BUNDLING=1\nfi\nif [[ -z \"$ENTRY_FILE\" ]]; then\n # Set the entry JS file using the bundler's entry resolution.\n export ENTRY_FILE=\"$(\"$NODE_BINARY\" -e \"require('expo/scripts/resolveAppEntry')\" $PROJECT_ROOT ios relative | tail -n 1)\"\nfi\n\n`\"$NODE_BINARY\" --print \"require('path').dirname(require.resolve('react-native/package.json')) + '/scripts/react-native-xcode.sh'\"`\n\n";
222 | };
223 | 08A4A3CD28434E44B6B9DE2E /* [CP] Check Pods Manifest.lock */ = {
224 | isa = PBXShellScriptBuildPhase;
225 | buildActionMask = 2147483647;
226 | files = (
227 | );
228 | inputFileListPaths = (
229 | );
230 | inputPaths = (
231 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
232 | "${PODS_ROOT}/Manifest.lock",
233 | );
234 | name = "[CP] Check Pods Manifest.lock";
235 | outputFileListPaths = (
236 | );
237 | outputPaths = (
238 | "$(DERIVED_FILE_DIR)/Pods-mobile-checkManifestLockResult.txt",
239 | );
240 | runOnlyForDeploymentPostprocessing = 0;
241 | shellPath = /bin/sh;
242 | 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";
243 | showEnvVarsInLog = 0;
244 | };
245 | 800E24972A6A228C8D4807E9 /* [CP] Copy Pods Resources */ = {
246 | isa = PBXShellScriptBuildPhase;
247 | buildActionMask = 2147483647;
248 | files = (
249 | );
250 | inputPaths = (
251 | "${PODS_ROOT}/Target Support Files/Pods-mobile/Pods-mobile-resources.sh",
252 | "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants/EXConstants.bundle",
253 | "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle",
254 | );
255 | name = "[CP] Copy Pods Resources";
256 | outputPaths = (
257 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EXConstants.bundle",
258 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle",
259 | );
260 | runOnlyForDeploymentPostprocessing = 0;
261 | shellPath = /bin/sh;
262 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-mobile/Pods-mobile-resources.sh\"\n";
263 | showEnvVarsInLog = 0;
264 | };
265 | F7945C893938CA168F685CCA /* [CP] Embed Pods Frameworks */ = {
266 | isa = PBXShellScriptBuildPhase;
267 | buildActionMask = 2147483647;
268 | files = (
269 | );
270 | inputPaths = (
271 | "${PODS_ROOT}/Target Support Files/Pods-mobile/Pods-mobile-frameworks.sh",
272 | "${PODS_XCFRAMEWORKS_BUILD_DIR}/hermes-engine/Pre-built/hermes.framework/hermes",
273 | );
274 | name = "[CP] Embed Pods Frameworks";
275 | outputPaths = (
276 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/hermes.framework",
277 | );
278 | runOnlyForDeploymentPostprocessing = 0;
279 | shellPath = /bin/sh;
280 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-mobile/Pods-mobile-frameworks.sh\"\n";
281 | showEnvVarsInLog = 0;
282 | };
283 | FD10A7F022414F080027D42C /* Start Packager */ = {
284 | isa = PBXShellScriptBuildPhase;
285 | buildActionMask = 2147483647;
286 | files = (
287 | );
288 | inputFileListPaths = (
289 | );
290 | inputPaths = (
291 | );
292 | name = "Start Packager";
293 | outputFileListPaths = (
294 | );
295 | outputPaths = (
296 | );
297 | runOnlyForDeploymentPostprocessing = 0;
298 | shellPath = /bin/sh;
299 | shellScript = "if [[ -f \"$PODS_ROOT/../.xcode.env\" ]]; then\n source \"$PODS_ROOT/../.xcode.env\"\nfi\nif [[ -f \"$PODS_ROOT/../.xcode.env.local\" ]]; then\n source \"$PODS_ROOT/../.xcode.env.local\"\nfi\n\nexport RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > `$NODE_BINARY --print \"require('path').dirname(require.resolve('react-native/package.json')) + '/scripts/.packager.env'\"`\nif [ -z \"${RCT_NO_LAUNCH_PACKAGER+xxx}\" ] ; then\n if nc -w 5 -z localhost ${RCT_METRO_PORT} ; then\n if ! curl -s \"http://localhost:${RCT_METRO_PORT}/status\" | grep -q \"packager-status:running\" ; then\n echo \"Port ${RCT_METRO_PORT} already in use, packager is either not running or not running correctly\"\n exit 2\n fi\n else\n open `$NODE_BINARY --print \"require('path').dirname(require.resolve('react-native/package.json')) + '/scripts/launchPackager.command'\"` || echo \"Can't start packager automatically\"\n fi\nfi\n";
300 | showEnvVarsInLog = 0;
301 | };
302 | /* End PBXShellScriptBuildPhase section */
303 |
304 | /* Begin PBXSourcesBuildPhase section */
305 | 13B07F871A680F5B00A75B9A /* Sources */ = {
306 | isa = PBXSourcesBuildPhase;
307 | buildActionMask = 2147483647;
308 | files = (
309 | 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */,
310 | 13B07FC11A68108700A75B9A /* main.m in Sources */,
311 | B18059E884C0ABDD17F3DC3D /* ExpoModulesProvider.swift in Sources */,
312 | E58A72E0C46F4C359289330C /* noop-file.swift in Sources */,
313 | );
314 | runOnlyForDeploymentPostprocessing = 0;
315 | };
316 | /* End PBXSourcesBuildPhase section */
317 |
318 | /* Begin XCBuildConfiguration section */
319 | 13B07F941A680F5B00A75B9A /* Debug */ = {
320 | isa = XCBuildConfiguration;
321 | baseConfigurationReference = 6C2E3173556A471DD304B334 /* Pods-mobile.debug.xcconfig */;
322 | buildSettings = {
323 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
324 | CLANG_ENABLE_MODULES = YES;
325 | CODE_SIGN_ENTITLEMENTS = mobile/mobile.entitlements;
326 | CURRENT_PROJECT_VERSION = 1;
327 | ENABLE_BITCODE = NO;
328 | GCC_PREPROCESSOR_DEFINITIONS = (
329 | "$(inherited)",
330 | "FB_SONARKIT_ENABLED=1",
331 | );
332 | INFOPLIST_FILE = mobile/Info.plist;
333 | IPHONEOS_DEPLOYMENT_TARGET = 13.0;
334 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
335 | MARKETING_VERSION = 1.0;
336 | OTHER_LDFLAGS = (
337 | "$(inherited)",
338 | "-ObjC",
339 | "-lc++",
340 | );
341 | OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_DEBUG";
342 | PRODUCT_BUNDLE_IDENTIFIER = com.minihacks.geese;
343 | PRODUCT_NAME = mobile;
344 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
345 | SWIFT_VERSION = 5.0;
346 | TARGETED_DEVICE_FAMILY = 1;
347 | VERSIONING_SYSTEM = "apple-generic";
348 | };
349 | name = Debug;
350 | };
351 | 13B07F951A680F5B00A75B9A /* Release */ = {
352 | isa = XCBuildConfiguration;
353 | baseConfigurationReference = 7A4D352CD337FB3A3BF06240 /* Pods-mobile.release.xcconfig */;
354 | buildSettings = {
355 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
356 | CLANG_ENABLE_MODULES = YES;
357 | CODE_SIGN_ENTITLEMENTS = mobile/mobile.entitlements;
358 | CURRENT_PROJECT_VERSION = 1;
359 | INFOPLIST_FILE = mobile/Info.plist;
360 | IPHONEOS_DEPLOYMENT_TARGET = 13.0;
361 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
362 | MARKETING_VERSION = 1.0;
363 | OTHER_LDFLAGS = (
364 | "$(inherited)",
365 | "-ObjC",
366 | "-lc++",
367 | );
368 | OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_RELEASE";
369 | PRODUCT_BUNDLE_IDENTIFIER = com.minihacks.geese;
370 | PRODUCT_NAME = mobile;
371 | SWIFT_VERSION = 5.0;
372 | TARGETED_DEVICE_FAMILY = 1;
373 | VERSIONING_SYSTEM = "apple-generic";
374 | };
375 | name = Release;
376 | };
377 | 83CBBA201A601CBA00E9B192 /* Debug */ = {
378 | isa = XCBuildConfiguration;
379 | buildSettings = {
380 | ALWAYS_SEARCH_USER_PATHS = NO;
381 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
382 | CLANG_CXX_LANGUAGE_STANDARD = "c++17";
383 | CLANG_CXX_LIBRARY = "libc++";
384 | CLANG_ENABLE_MODULES = YES;
385 | CLANG_ENABLE_OBJC_ARC = YES;
386 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
387 | CLANG_WARN_BOOL_CONVERSION = YES;
388 | CLANG_WARN_COMMA = YES;
389 | CLANG_WARN_CONSTANT_CONVERSION = YES;
390 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
391 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
392 | CLANG_WARN_EMPTY_BODY = YES;
393 | CLANG_WARN_ENUM_CONVERSION = YES;
394 | CLANG_WARN_INFINITE_RECURSION = YES;
395 | CLANG_WARN_INT_CONVERSION = YES;
396 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
397 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
398 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
399 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
400 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
401 | CLANG_WARN_STRICT_PROTOTYPES = YES;
402 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
403 | CLANG_WARN_UNREACHABLE_CODE = YES;
404 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
405 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
406 | COPY_PHASE_STRIP = NO;
407 | ENABLE_STRICT_OBJC_MSGSEND = YES;
408 | ENABLE_TESTABILITY = YES;
409 | "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386;
410 | GCC_C_LANGUAGE_STANDARD = gnu99;
411 | GCC_DYNAMIC_NO_PIC = NO;
412 | GCC_NO_COMMON_BLOCKS = YES;
413 | GCC_OPTIMIZATION_LEVEL = 0;
414 | GCC_PREPROCESSOR_DEFINITIONS = (
415 | "DEBUG=1",
416 | "$(inherited)",
417 | );
418 | GCC_SYMBOLS_PRIVATE_EXTERN = NO;
419 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
420 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
421 | GCC_WARN_UNDECLARED_SELECTOR = YES;
422 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
423 | GCC_WARN_UNUSED_FUNCTION = YES;
424 | GCC_WARN_UNUSED_VARIABLE = YES;
425 | IPHONEOS_DEPLOYMENT_TARGET = 13.0;
426 | LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
427 | LIBRARY_SEARCH_PATHS = "$(SDKROOT)/usr/lib/swift\"$(inherited)\"";
428 | MTL_ENABLE_DEBUG_INFO = YES;
429 | ONLY_ACTIVE_ARCH = YES;
430 | REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
431 | SDKROOT = iphoneos;
432 | };
433 | name = Debug;
434 | };
435 | 83CBBA211A601CBA00E9B192 /* Release */ = {
436 | isa = XCBuildConfiguration;
437 | buildSettings = {
438 | ALWAYS_SEARCH_USER_PATHS = NO;
439 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
440 | CLANG_CXX_LANGUAGE_STANDARD = "c++17";
441 | CLANG_CXX_LIBRARY = "libc++";
442 | CLANG_ENABLE_MODULES = YES;
443 | CLANG_ENABLE_OBJC_ARC = YES;
444 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
445 | CLANG_WARN_BOOL_CONVERSION = YES;
446 | CLANG_WARN_COMMA = YES;
447 | CLANG_WARN_CONSTANT_CONVERSION = YES;
448 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
449 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
450 | CLANG_WARN_EMPTY_BODY = YES;
451 | CLANG_WARN_ENUM_CONVERSION = YES;
452 | CLANG_WARN_INFINITE_RECURSION = YES;
453 | CLANG_WARN_INT_CONVERSION = YES;
454 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
455 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
456 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
457 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
458 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
459 | CLANG_WARN_STRICT_PROTOTYPES = YES;
460 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
461 | CLANG_WARN_UNREACHABLE_CODE = YES;
462 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
463 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
464 | COPY_PHASE_STRIP = YES;
465 | ENABLE_NS_ASSERTIONS = NO;
466 | ENABLE_STRICT_OBJC_MSGSEND = YES;
467 | "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386;
468 | GCC_C_LANGUAGE_STANDARD = gnu99;
469 | GCC_NO_COMMON_BLOCKS = YES;
470 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
471 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
472 | GCC_WARN_UNDECLARED_SELECTOR = YES;
473 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
474 | GCC_WARN_UNUSED_FUNCTION = YES;
475 | GCC_WARN_UNUSED_VARIABLE = YES;
476 | IPHONEOS_DEPLOYMENT_TARGET = 13.0;
477 | LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
478 | LIBRARY_SEARCH_PATHS = "$(SDKROOT)/usr/lib/swift\"$(inherited)\"";
479 | MTL_ENABLE_DEBUG_INFO = NO;
480 | REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
481 | SDKROOT = iphoneos;
482 | VALIDATE_PRODUCT = YES;
483 | };
484 | name = Release;
485 | };
486 | /* End XCBuildConfiguration section */
487 |
488 | /* Begin XCConfigurationList section */
489 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "mobile" */ = {
490 | isa = XCConfigurationList;
491 | buildConfigurations = (
492 | 13B07F941A680F5B00A75B9A /* Debug */,
493 | 13B07F951A680F5B00A75B9A /* Release */,
494 | );
495 | defaultConfigurationIsVisible = 0;
496 | defaultConfigurationName = Release;
497 | };
498 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "mobile" */ = {
499 | isa = XCConfigurationList;
500 | buildConfigurations = (
501 | 83CBBA201A601CBA00E9B192 /* Debug */,
502 | 83CBBA211A601CBA00E9B192 /* Release */,
503 | );
504 | defaultConfigurationIsVisible = 0;
505 | defaultConfigurationName = Release;
506 | };
507 | /* End XCConfigurationList section */
508 | };
509 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
510 | }
511 |
--------------------------------------------------------------------------------
/packages/mobile/ios/mobile.xcodeproj/xcshareddata/xcschemes/mobile.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
24 |
25 |
30 |
31 |
33 |
39 |
40 |
41 |
42 |
43 |
53 |
55 |
61 |
62 |
63 |
64 |
70 |
72 |
78 |
79 |
80 |
81 |
83 |
84 |
87 |
88 |
89 |
--------------------------------------------------------------------------------
/packages/mobile/ios/mobile.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/packages/mobile/ios/mobile/AppDelegate.h:
--------------------------------------------------------------------------------
1 | #import
2 | #import
3 | #import
4 |
5 | @interface AppDelegate : EXAppDelegateWrapper
6 |
7 | @end
8 |
--------------------------------------------------------------------------------
/packages/mobile/ios/mobile/AppDelegate.mm:
--------------------------------------------------------------------------------
1 | #import "AppDelegate.h"
2 |
3 | #import
4 | #import
5 |
6 | @implementation AppDelegate
7 |
8 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
9 | {
10 | self.moduleName = @"main";
11 |
12 | // You can add your custom initial props in the dictionary below.
13 | // They will be passed down to the ViewController used by React Native.
14 | self.initialProps = @{};
15 |
16 | return [super application:application didFinishLaunchingWithOptions:launchOptions];
17 | }
18 |
19 | - (NSURL *)sourceURLForBridge:(RCTBridge *)bridge
20 | {
21 | #if DEBUG
22 | return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index"];
23 | #else
24 | return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"];
25 | #endif
26 | }
27 |
28 | /// This method controls whether the `concurrentRoot`feature of React18 is turned on or off.
29 | ///
30 | /// @see: https://reactjs.org/blog/2022/03/29/react-v18.html
31 | /// @note: This requires to be rendering on Fabric (i.e. on the New Architecture).
32 | /// @return: `true` if the `concurrentRoot` feature is enabled. Otherwise, it returns `false`.
33 | - (BOOL)concurrentRootEnabled
34 | {
35 | return true;
36 | }
37 |
38 | // Linking API
39 | - (BOOL)application:(UIApplication *)application openURL:(NSURL *)url options:(NSDictionary *)options {
40 | return [super application:application openURL:url options:options] || [RCTLinkingManager application:application openURL:url options:options];
41 | }
42 |
43 | // Universal Links
44 | - (BOOL)application:(UIApplication *)application continueUserActivity:(nonnull NSUserActivity *)userActivity restorationHandler:(nonnull void (^)(NSArray> * _Nullable))restorationHandler {
45 | BOOL result = [RCTLinkingManager application:application continueUserActivity:userActivity restorationHandler:restorationHandler];
46 | return [super application:application continueUserActivity:userActivity restorationHandler:restorationHandler] || result;
47 | }
48 |
49 | // Explicitly define remote notification delegates to ensure compatibility with some third-party libraries
50 | - (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken
51 | {
52 | return [super application:application didRegisterForRemoteNotificationsWithDeviceToken:deviceToken];
53 | }
54 |
55 | // Explicitly define remote notification delegates to ensure compatibility with some third-party libraries
56 | - (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error
57 | {
58 | return [super application:application didFailToRegisterForRemoteNotificationsWithError:error];
59 | }
60 |
61 | // Explicitly define remote notification delegates to ensure compatibility with some third-party libraries
62 | - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler
63 | {
64 | return [super application:application didReceiveRemoteNotification:userInfo fetchCompletionHandler:completionHandler];
65 | }
66 |
67 | @end
68 |
--------------------------------------------------------------------------------
/packages/mobile/ios/mobile/Images.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "iphone",
5 | "size" : "29x29",
6 | "scale" : "2x"
7 | },
8 | {
9 | "idiom" : "iphone",
10 | "size" : "29x29",
11 | "scale" : "3x"
12 | },
13 | {
14 | "idiom" : "iphone",
15 | "size" : "40x40",
16 | "scale" : "2x"
17 | },
18 | {
19 | "idiom" : "iphone",
20 | "size" : "40x40",
21 | "scale" : "3x"
22 | },
23 | {
24 | "idiom" : "iphone",
25 | "size" : "60x60",
26 | "scale" : "2x"
27 | },
28 | {
29 | "idiom" : "iphone",
30 | "size" : "60x60",
31 | "scale" : "3x"
32 | }
33 | ],
34 | "info" : {
35 | "version" : 1,
36 | "author" : "expo"
37 | }
38 | }
--------------------------------------------------------------------------------
/packages/mobile/ios/mobile/Images.xcassets/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "info" : {
3 | "version" : 1,
4 | "author" : "expo"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/packages/mobile/ios/mobile/Images.xcassets/SplashScreenBackground.imageset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images": [
3 | {
4 | "idiom": "universal",
5 | "filename": "image.png",
6 | "scale": "1x"
7 | },
8 | {
9 | "idiom": "universal",
10 | "scale": "2x"
11 | },
12 | {
13 | "idiom": "universal",
14 | "scale": "3x"
15 | }
16 | ],
17 | "info": {
18 | "version": 1,
19 | "author": "expo"
20 | }
21 | }
--------------------------------------------------------------------------------
/packages/mobile/ios/mobile/Images.xcassets/SplashScreenBackground.imageset/image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MiniHacks/geese/68579dad1d3a9cfe3e7c498de5f55c477404dd0d/packages/mobile/ios/mobile/Images.xcassets/SplashScreenBackground.imageset/image.png
--------------------------------------------------------------------------------
/packages/mobile/ios/mobile/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | $(DEVELOPMENT_LANGUAGE)
7 | CFBundleDisplayName
8 | mobile
9 | CFBundleExecutable
10 | $(EXECUTABLE_NAME)
11 | CFBundleIdentifier
12 | $(PRODUCT_BUNDLE_IDENTIFIER)
13 | CFBundleInfoDictionaryVersion
14 | 6.0
15 | CFBundleName
16 | $(PRODUCT_NAME)
17 | CFBundlePackageType
18 | $(PRODUCT_BUNDLE_PACKAGE_TYPE)
19 | CFBundleShortVersionString
20 | 1.0.0
21 | CFBundleSignature
22 | ????
23 | CFBundleURLTypes
24 |
25 |
26 | CFBundleURLSchemes
27 |
28 | com.minihacks.geese
29 |
30 |
31 |
32 | CFBundleVersion
33 | 1
34 | LSRequiresIPhoneOS
35 |
36 | NSAppTransportSecurity
37 |
38 | NSAllowsArbitraryLoads
39 |
40 | NSExceptionDomains
41 |
42 | localhost
43 |
44 | NSExceptionAllowsInsecureHTTPLoads
45 |
46 |
47 |
48 |
49 | UILaunchStoryboardName
50 | SplashScreen
51 | UIRequiredDeviceCapabilities
52 |
53 | armv7
54 |
55 | UIRequiresFullScreen
56 |
57 | UIStatusBarStyle
58 | UIStatusBarStyleDefault
59 | UISupportedInterfaceOrientations
60 |
61 | UIInterfaceOrientationPortrait
62 | UIInterfaceOrientationPortraitUpsideDown
63 | UIInterfaceOrientationLandscapeLeft
64 | UIInterfaceOrientationLandscapeRight
65 |
66 | UISupportedInterfaceOrientations~ipad
67 |
68 | UIInterfaceOrientationPortrait
69 | UIInterfaceOrientationPortraitUpsideDown
70 | UIInterfaceOrientationLandscapeLeft
71 | UIInterfaceOrientationLandscapeRight
72 |
73 | UIUserInterfaceStyle
74 | Light
75 | UIViewControllerBasedStatusBarAppearance
76 |
77 |
78 |
--------------------------------------------------------------------------------
/packages/mobile/ios/mobile/SplashScreen.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
--------------------------------------------------------------------------------
/packages/mobile/ios/mobile/Supporting/Expo.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | EXUpdatesCheckOnLaunch
6 | ALWAYS
7 | EXUpdatesEnabled
8 |
9 | EXUpdatesLaunchWaitMs
10 | 0
11 | EXUpdatesSDKVersion
12 | 48.0.0
13 | EXUpdatesURL
14 | https://exp.host/@anonymous/mobile
15 |
16 |
--------------------------------------------------------------------------------
/packages/mobile/ios/mobile/main.m:
--------------------------------------------------------------------------------
1 | #import
2 |
3 | #import "AppDelegate.h"
4 |
5 | int main(int argc, char * argv[]) {
6 | @autoreleasepool {
7 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
8 | }
9 | }
10 |
11 |
--------------------------------------------------------------------------------
/packages/mobile/ios/mobile/mobile.entitlements:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | aps-environment
6 | development
7 |
8 |
--------------------------------------------------------------------------------
/packages/mobile/ios/mobile/noop-file.swift:
--------------------------------------------------------------------------------
1 | //
2 | // @generated
3 | // A blank Swift file must be created for native modules with Swift files to work correctly.
4 | //
5 |
--------------------------------------------------------------------------------
/packages/mobile/metro.config.js:
--------------------------------------------------------------------------------
1 | // Learn more https://docs.expo.io/guides/customizing-metro
2 | const { getDefaultConfig } = require('expo/metro-config');
3 |
4 | module.exports = getDefaultConfig(__dirname);
5 |
--------------------------------------------------------------------------------
/packages/mobile/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "mobile",
3 | "version": "1.0.0",
4 | "main": "index.js",
5 | "scripts": {
6 | "start": "expo start --dev-client",
7 | "android": "expo run:android",
8 | "ios": "expo run:ios",
9 | "web": "expo start --web",
10 | "studio": "studio android",
11 | "xcode": "open ios/*.xcworkspace",
12 | "clean": "npx react-native-clean-project"
13 | },
14 | "dependencies": {
15 | "@react-navigation/bottom-tabs": "^6.5.7",
16 | "@react-navigation/native": "^6.1.6",
17 | "expo": "~48.0.11",
18 | "expo-splash-screen": "~0.18.1",
19 | "expo-status-bar": "^1.4.4",
20 | "react": "18.2.0",
21 | "react-native": "0.71.6",
22 | "react-native-safe-area-context": "^4.5.1"
23 | },
24 | "devDependencies": {
25 | "@babel/core": "^7.20.0"
26 | },
27 | "private": true
28 | }
29 |
--------------------------------------------------------------------------------
/packages/mobile/screens/HomeScreen.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { Text, View } from "react-native";
3 |
4 | export default function HomeScreen() {
5 | return (
6 |
13 | Home
14 |
15 | );
16 | }
17 |
--------------------------------------------------------------------------------
/packages/mobile/screens/SettingsScreen.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { Text, View } from "react-native";
3 |
4 | export default function SettingsScreen() {
5 | return (
6 |
7 | Settings
8 |
9 | );
10 | }
11 |
--------------------------------------------------------------------------------