getTurboModule(
27 | const std::string name,
28 | const JavaTurboModule::InitParams ¶ms) override;
29 |
30 | /**
31 | * Test-only method. Allows user to verify whether a TurboModule can be
32 | * created by instances of this class.
33 | */
34 | bool canCreateTurboModule(std::string name);
35 | };
36 |
37 | } // namespace react
38 | } // namespace facebook
39 |
--------------------------------------------------------------------------------
/app/android/app/src/main/java/com/storagebenchmark/newarchitecture/components/MainComponentsRegistry.java:
--------------------------------------------------------------------------------
1 | package com.storagebenchmark.newarchitecture.components;
2 |
3 | import com.facebook.jni.HybridData;
4 | import com.facebook.proguard.annotations.DoNotStrip;
5 | import com.facebook.react.fabric.ComponentFactory;
6 | import com.facebook.soloader.SoLoader;
7 |
8 | /**
9 | * Class responsible to load the custom Fabric Components. This class has native methods and needs a
10 | * corresponding C++ implementation/header file to work correctly (already placed inside the jni/
11 | * folder for you).
12 | *
13 | * Please note that this class is used ONLY if you opt-in for the New Architecture (see the
14 | * `newArchEnabled` property). Is ignored otherwise.
15 | */
16 | @DoNotStrip
17 | public class MainComponentsRegistry {
18 | static {
19 | SoLoader.loadLibrary("fabricjni");
20 | }
21 |
22 | @DoNotStrip private final HybridData mHybridData;
23 |
24 | @DoNotStrip
25 | private native HybridData initHybrid(ComponentFactory componentFactory);
26 |
27 | @DoNotStrip
28 | private MainComponentsRegistry(ComponentFactory componentFactory) {
29 | mHybridData = initHybrid(componentFactory);
30 | }
31 |
32 | @DoNotStrip
33 | public static MainComponentsRegistry register(ComponentFactory componentFactory) {
34 | return new MainComponentsRegistry(componentFactory);
35 | }
36 | }
37 |
--------------------------------------------------------------------------------
/app/src/storages/WatermelonDB.ts:
--------------------------------------------------------------------------------
1 | import {appSchema, Database, Model, tableSchema} from '@nozbe/watermelondb';
2 | import {field} from '@nozbe/watermelondb/decorators';
3 | import SQLiteAdapter from '@nozbe/watermelondb/adapters/sqlite';
4 |
5 | const TABLE = 'Test';
6 |
7 | class TestModel extends Model {
8 | static table = TABLE;
9 |
10 | @field('value') value;
11 | }
12 |
13 | const schema = appSchema({
14 | version: 1,
15 | tables: [
16 | tableSchema({
17 | name: TABLE,
18 | columns: [{name: 'value', type: 'string'}],
19 | }),
20 | ],
21 | });
22 |
23 | // First, create the adapter to the underlying database:
24 | const adapter = new SQLiteAdapter({
25 | schema: schema,
26 | });
27 |
28 | const database = new Database({
29 | adapter: adapter,
30 | modelClasses: [TestModel],
31 | });
32 |
33 | const table = database.collections.get(TABLE);
34 |
35 | const promise = database.write(async () => {
36 | await database.unsafeResetDatabase();
37 | try {
38 | const entry = await table.create(m => {
39 | m._raw.id = 'hello';
40 | m.value = 'hello';
41 | });
42 | return entry;
43 | } catch (e) {
44 | console.error('WatermelonDB: Failed to set value!', e);
45 | }
46 | });
47 | let isCreated = false;
48 |
49 | export async function getFromWatermelonDB(): Promise {
50 | if (!isCreated) {
51 | await promise;
52 | isCreated = true;
53 | }
54 | const row = await table.find('hello');
55 | return row.value;
56 | }
57 |
--------------------------------------------------------------------------------
/app/android/app/_BUCK:
--------------------------------------------------------------------------------
1 | # To learn about Buck see [Docs](https://buckbuild.com/).
2 | # To run your application with Buck:
3 | # - install Buck
4 | # - `npm start` - to start the packager
5 | # - `cd android`
6 | # - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"`
7 | # - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck
8 | # - `buck install -r android/app` - compile, install and run application
9 | #
10 |
11 | load(":build_defs.bzl", "create_aar_targets", "create_jar_targets")
12 |
13 | lib_deps = []
14 |
15 | create_aar_targets(glob(["libs/*.aar"]))
16 |
17 | create_jar_targets(glob(["libs/*.jar"]))
18 |
19 | android_library(
20 | name = "all-libs",
21 | exported_deps = lib_deps,
22 | )
23 |
24 | android_library(
25 | name = "app-code",
26 | srcs = glob([
27 | "src/main/java/**/*.java",
28 | ]),
29 | deps = [
30 | ":all-libs",
31 | ":build_config",
32 | ":res",
33 | ],
34 | )
35 |
36 | android_build_config(
37 | name = "build_config",
38 | package = "com.storagebenchmark",
39 | )
40 |
41 | android_resource(
42 | name = "res",
43 | package = "com.storagebenchmark",
44 | res = "src/main/res",
45 | )
46 |
47 | android_binary(
48 | name = "app",
49 | keystore = "//android/keystores:debug",
50 | manifest = "src/main/AndroidManifest.xml",
51 | package_type = "debug",
52 | deps = [
53 | ":app-code",
54 | ],
55 | )
56 |
--------------------------------------------------------------------------------
/app/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp:
--------------------------------------------------------------------------------
1 | #include "MainApplicationTurboModuleManagerDelegate.h"
2 | #include "MainApplicationModuleProvider.h"
3 |
4 | namespace facebook {
5 | namespace react {
6 |
7 | jni::local_ref
8 | MainApplicationTurboModuleManagerDelegate::initHybrid(
9 | jni::alias_ref) {
10 | return makeCxxInstance();
11 | }
12 |
13 | void MainApplicationTurboModuleManagerDelegate::registerNatives() {
14 | registerHybrid({
15 | makeNativeMethod(
16 | "initHybrid", MainApplicationTurboModuleManagerDelegate::initHybrid),
17 | makeNativeMethod(
18 | "canCreateTurboModule",
19 | MainApplicationTurboModuleManagerDelegate::canCreateTurboModule),
20 | });
21 | }
22 |
23 | std::shared_ptr
24 | MainApplicationTurboModuleManagerDelegate::getTurboModule(
25 | const std::string name,
26 | const std::shared_ptr jsInvoker) {
27 | // Not implemented yet: provide pure-C++ NativeModules here.
28 | return nullptr;
29 | }
30 |
31 | std::shared_ptr
32 | MainApplicationTurboModuleManagerDelegate::getTurboModule(
33 | const std::string name,
34 | const JavaTurboModule::InitParams ¶ms) {
35 | return MainApplicationModuleProvider(name, params);
36 | }
37 |
38 | bool MainApplicationTurboModuleManagerDelegate::canCreateTurboModule(
39 | std::string name) {
40 | return getTurboModule(name, nullptr) != nullptr ||
41 | getTurboModule(name, {.moduleName = name}) != nullptr;
42 | }
43 |
44 | } // namespace react
45 | } // namespace facebook
46 |
--------------------------------------------------------------------------------
/app/android/app/src/main/java/com/storagebenchmark/MainActivity.java:
--------------------------------------------------------------------------------
1 | package com.storagebenchmark;
2 | import expo.modules.ReactActivityDelegateWrapper;
3 |
4 | import com.facebook.react.ReactActivity;
5 | import com.facebook.react.ReactActivityDelegate;
6 | import com.facebook.react.ReactRootView;
7 |
8 | public class MainActivity extends ReactActivity {
9 |
10 | /**
11 | * Returns the name of the main component registered from JavaScript. This is used to schedule
12 | * rendering of the component.
13 | */
14 | @Override
15 | protected String getMainComponentName() {
16 | return "StorageBenchmark";
17 | }
18 |
19 | /**
20 | * Returns the instance of the {@link ReactActivityDelegate}. There the RootView is created and
21 | * you can specify the rendered you wish to use (Fabric or the older renderer).
22 | */
23 | @Override
24 | protected ReactActivityDelegate createReactActivityDelegate() {
25 | return new ReactActivityDelegateWrapper(this, BuildConfig.IS_NEW_ARCHITECTURE_ENABLED, new MainActivityDelegate(this, getMainComponentName()));
26 | }
27 |
28 | public static class MainActivityDelegate extends ReactActivityDelegate {
29 | public MainActivityDelegate(ReactActivity activity, String mainComponentName) {
30 | super(activity, mainComponentName);
31 | }
32 |
33 | @Override
34 | protected ReactRootView createRootView() {
35 | ReactRootView reactRootView = new ReactRootView(getContext());
36 | // If you opted-in for the New Architecture, we enable the Fabric Renderer.
37 | reactRootView.setIsFabric(BuildConfig.IS_NEW_ARCHITECTURE_ENABLED);
38 | return reactRootView;
39 | }
40 | }
41 | }
42 |
--------------------------------------------------------------------------------
/app/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "storagebenchmark",
3 | "version": "0.0.1",
4 | "private": true,
5 | "scripts": {
6 | "android": "react-native run-android",
7 | "ios": "react-native run-ios",
8 | "start": "react-native start",
9 | "pods": "cd ios && pod install",
10 | "test": "jest",
11 | "lint": "eslint . --ext .js,.jsx,.ts,.tsx"
12 | },
13 | "dependencies": {
14 | "@nozbe/watermelondb": "^0.24.0",
15 | "@react-native-async-storage/async-storage": "^1.17.10",
16 | "expo": "^45.0.0",
17 | "expo-secure-store": "~11.2.0",
18 | "react": "17.0.2",
19 | "react-native": "0.68.7",
20 | "react-native-keychain": "^8.1.2",
21 | "react-native-mmkv": "^2.4.3",
22 | "react-native-quick-sqlite": "^4.0.7",
23 | "realm": "11.0.0-rc.0"
24 | },
25 | "devDependencies": {
26 | "@babel/core": "^7.12.9",
27 | "@babel/plugin-proposal-decorators": "^7.17.9",
28 | "@babel/runtime": "^7.12.5",
29 | "@react-native-community/eslint-config": "^2.0.0",
30 | "@types/jest": "^26.0.23",
31 | "@types/react-native": "^0.67.3",
32 | "@types/react-test-renderer": "^17.0.1",
33 | "@typescript-eslint/eslint-plugin": "^5.17.0",
34 | "@typescript-eslint/parser": "^5.17.0",
35 | "babel-jest": "^26.6.3",
36 | "eslint": "^7.32.0",
37 | "jest": "^26.6.3",
38 | "metro-react-native-babel-preset": "^0.67.0",
39 | "react-test-renderer": "17.0.2",
40 | "typescript": "^4.4.4"
41 | },
42 | "resolutions": {
43 | "@types/react": "^17"
44 | },
45 | "jest": {
46 | "preset": "react-native",
47 | "moduleFileExtensions": [
48 | "ts",
49 | "tsx",
50 | "js",
51 | "jsx",
52 | "json",
53 | "node"
54 | ]
55 | }
56 | }
57 |
--------------------------------------------------------------------------------
/app/android/app/src/main/jni/Android.mk:
--------------------------------------------------------------------------------
1 | THIS_DIR := $(call my-dir)
2 |
3 | include $(REACT_ANDROID_DIR)/Android-prebuilt.mk
4 |
5 | # If you wish to add a custom TurboModule or Fabric component in your app you
6 | # will have to include the following autogenerated makefile.
7 | # include $(GENERATED_SRC_DIR)/codegen/jni/Android.mk
8 | include $(CLEAR_VARS)
9 |
10 | LOCAL_PATH := $(THIS_DIR)
11 |
12 | # You can customize the name of your application .so file here.
13 | LOCAL_MODULE := storagebenchmark_appmodules
14 |
15 | LOCAL_C_INCLUDES := $(LOCAL_PATH)
16 | LOCAL_SRC_FILES := $(wildcard $(LOCAL_PATH)/*.cpp)
17 | LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)
18 |
19 | # If you wish to add a custom TurboModule or Fabric component in your app you
20 | # will have to uncomment those lines to include the generated source
21 | # files from the codegen (placed in $(GENERATED_SRC_DIR)/codegen/jni)
22 | #
23 | # LOCAL_C_INCLUDES += $(GENERATED_SRC_DIR)/codegen/jni
24 | # LOCAL_SRC_FILES += $(wildcard $(GENERATED_SRC_DIR)/codegen/jni/*.cpp)
25 | # LOCAL_EXPORT_C_INCLUDES += $(GENERATED_SRC_DIR)/codegen/jni
26 |
27 | # Here you should add any native library you wish to depend on.
28 | LOCAL_SHARED_LIBRARIES := \
29 | libfabricjni \
30 | libfbjni \
31 | libfolly_futures \
32 | libfolly_json \
33 | libglog \
34 | libjsi \
35 | libreact_codegen_rncore \
36 | libreact_debug \
37 | libreact_nativemodule_core \
38 | libreact_render_componentregistry \
39 | libreact_render_core \
40 | libreact_render_debug \
41 | libreact_render_graphics \
42 | librrc_view \
43 | libruntimeexecutor \
44 | libturbomodulejsijni \
45 | libyoga
46 |
47 | LOCAL_CFLAGS := -DLOG_TAG=\"ReactNative\" -fexceptions -frtti -std=c++17 -Wall
48 |
49 | include $(BUILD_SHARED_LIBRARY)
50 |
--------------------------------------------------------------------------------
/app/ios/StorageBenchmark/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleDisplayName
8 | StorageBenchmark
9 | CFBundleExecutable
10 | $(EXECUTABLE_NAME)
11 | CFBundleIdentifier
12 | $(PRODUCT_BUNDLE_IDENTIFIER)
13 | CFBundleInfoDictionaryVersion
14 | 6.0
15 | CFBundleName
16 | $(PRODUCT_NAME)
17 | CFBundlePackageType
18 | APPL
19 | CFBundleShortVersionString
20 | 1.0
21 | CFBundleSignature
22 | ????
23 | CFBundleVersion
24 | 1
25 | LSRequiresIPhoneOS
26 |
27 | NSAppTransportSecurity
28 |
29 | NSExceptionDomains
30 |
31 | localhost
32 |
33 | NSExceptionAllowsInsecureHTTPLoads
34 |
35 |
36 |
37 |
38 | NSLocationWhenInUseUsageDescription
39 |
40 | UILaunchStoryboardName
41 | LaunchScreen
42 | UIRequiredDeviceCapabilities
43 |
44 | armv7
45 |
46 | UISupportedInterfaceOrientations
47 |
48 | UIInterfaceOrientationPortrait
49 | UIInterfaceOrientationLandscapeLeft
50 | UIInterfaceOrientationLandscapeRight
51 |
52 | UIViewControllerBasedStatusBarAppearance
53 |
54 |
55 |
56 |
--------------------------------------------------------------------------------
/app/ios/Podfile:
--------------------------------------------------------------------------------
1 | require File.join(File.dirname(`node --print "require.resolve('expo/package.json')"`), "scripts/autolinking")
2 | require_relative '../node_modules/react-native/scripts/react_native_pods'
3 | require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
4 |
5 | platform :ios, '12.0'
6 | install! 'cocoapods', :deterministic_uuids => false
7 |
8 | target 'StorageBenchmark' do
9 | use_expo_modules!
10 | post_integrate do |installer|
11 | begin
12 | expo_patch_react_imports!(installer)
13 | rescue => e
14 | Pod::UI.warn e
15 | end
16 | end
17 | config = use_native_modules!
18 |
19 | # Flags change depending on the env values.
20 | flags = get_default_flags()
21 |
22 | use_react_native!(
23 | :path => config[:reactNativePath],
24 | # to enable hermes on iOS, change `false` to `true` and then install pods
25 | :hermes_enabled => true,
26 | :fabric_enabled => flags[:fabric_enabled],
27 | # An absolute path to your application root.
28 | :app_path => "#{Pod::Config.instance.installation_root}/.."
29 | )
30 |
31 | # If you're using autolinking, this line might not be needed
32 |
33 | # NOTE: Do not remove, needed to keep WatermelonDB compiling:
34 | pod 'React-jsi', :path => '../node_modules/react-native/ReactCommon/jsi', :modular_headers => true
35 |
36 | # NOTE: This is required as of v0.23
37 | pod 'simdjson', path: '../node_modules/@nozbe/simdjson'
38 |
39 | target 'StorageBenchmarkTests' do
40 | inherit! :complete
41 | # Pods for testing
42 | end
43 |
44 | # Enables Flipper.
45 | #
46 | # Note that if you have use_frameworks! enabled, Flipper will not work and
47 | # you should disable the next line.
48 | use_flipper!()
49 |
50 | post_install do |installer|
51 | react_native_post_install(installer)
52 | __apply_Xcode_12_5_M1_post_install_workaround(installer)
53 | end
54 | end
55 |
--------------------------------------------------------------------------------
/app/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 | # Automatically convert third-party libraries to use AndroidX
25 | android.enableJetifier=true
26 |
27 | # Version of flipper SDK to use with React Native
28 | FLIPPER_VERSION=0.125.0
29 |
30 | # Use this property to specify which architecture you want to build.
31 | # You can also override it from the CLI using
32 | # ./gradlew -PreactNativeArchitectures=x86_64
33 | reactNativeArchitectures=armeabi-v7a,arm64-v8a,x86,x86_64
34 |
35 | # Use this property to enable support to the new architecture.
36 | # This will allow you to use TurboModules and the Fabric render in
37 | # your application. You should enable this flag either if you want
38 | # to write custom TurboModules/Fabric components OR use libraries that
39 | # are providing them.
40 | newArchEnabled=false
41 |
--------------------------------------------------------------------------------
/app/android/app/src/main/res/drawable/rn_edit_text_material.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
21 |
22 |
23 |
32 |
33 |
34 |
35 |
36 |
37 |
--------------------------------------------------------------------------------
/app/android/app/src/main/java/com/storagebenchmark/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java:
--------------------------------------------------------------------------------
1 | package com.storagebenchmark.newarchitecture.modules;
2 |
3 | import com.facebook.jni.HybridData;
4 | import com.facebook.react.ReactPackage;
5 | import com.facebook.react.ReactPackageTurboModuleManagerDelegate;
6 | import com.facebook.react.bridge.ReactApplicationContext;
7 | import com.facebook.soloader.SoLoader;
8 | import java.util.List;
9 |
10 | /**
11 | * Class responsible to load the TurboModules. This class has native methods and needs a
12 | * corresponding C++ implementation/header file to work correctly (already placed inside the jni/
13 | * folder for you).
14 | *
15 | * Please note that this class is used ONLY if you opt-in for the New Architecture (see the
16 | * `newArchEnabled` property). Is ignored otherwise.
17 | */
18 | public class MainApplicationTurboModuleManagerDelegate
19 | extends ReactPackageTurboModuleManagerDelegate {
20 |
21 | private static volatile boolean sIsSoLibraryLoaded;
22 |
23 | protected MainApplicationTurboModuleManagerDelegate(
24 | ReactApplicationContext reactApplicationContext, List packages) {
25 | super(reactApplicationContext, packages);
26 | }
27 |
28 | protected native HybridData initHybrid();
29 |
30 | native boolean canCreateTurboModule(String moduleName);
31 |
32 | public static class Builder extends ReactPackageTurboModuleManagerDelegate.Builder {
33 | protected MainApplicationTurboModuleManagerDelegate build(
34 | ReactApplicationContext context, List packages) {
35 | return new MainApplicationTurboModuleManagerDelegate(context, packages);
36 | }
37 | }
38 |
39 | @Override
40 | protected synchronized void maybeLoadOtherSoLibraries() {
41 | if (!sIsSoLibraryLoaded) {
42 | // If you change the name of your application .so file in the Android.mk file,
43 | // make sure you update the name here as well.
44 | SoLoader.loadLibrary("storagebenchmark_appmodules");
45 | sIsSoLibraryLoaded = true;
46 | }
47 | }
48 | }
49 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Storage Benchmarks
2 |
3 | This is a benchmark app to compare popular storage solutions for React Native.
4 |
5 | It's running React Native 0.68, with Hermes enabled.
6 |
7 | The Benchmark consists of calling a _get_ operation (retrieve one value from the database) a thousand times.
8 |
9 | Here are the results, ranked from fastest to slowest:
10 |
11 | 1. [react-native-mmkv](https://github.com/mrousavy/react-native-mmkv): **12ms** 👑
12 | 2. [WatermelonDB](https://github.com/Nozbe/WatermelonDB): **53ms**
13 | 3. [RealmDB](https://github.com/realm/realm-js): **81ms**
14 | 4. [react-native-quick-sqlite](https://github.com/ospfranco/react-native-quick-sqlite): **82ms**
15 | 5. [AsyncStorage](https://github.com/react-native-async-storage/async-storage): **242ms**
16 |
17 | MMKV is **20x** faster than AsyncStorage (slowest), and **4x** faster than WatermelonDB (second fastest)!
18 |
19 |
20 |

21 |
22 |
23 | Output in the console:
24 |
25 |
26 |

27 |
28 |
29 | > Tested on an iPhone 11 Pro, Hermes, Debug
30 |
31 | ## Run it
32 |
33 | 1. Clone the repo and navigate to the `app/` directory
34 | 2. Run `yarn`
35 | 3. Run `yarn pods`
36 | 4. Run `yarn ios --device "YOURPHONENAME"`
37 |
38 | You can also omit the `--device "YOURPHONENAME"` flag, but running on a Simulator always gives different results than on an actual device.
39 |
40 | ### JS Engine
41 |
42 | The benchmark project currently uses Hermes. To benchmark using JSC instead, set `enable_hermes` to `false` in the [`Podfile`](./app/ios/Podfile).
43 |
44 | ### Hardware
45 |
46 | The above results were tested on an iPhone 11 Pro. Results may differ on different iPhones or Android Phones.
47 |
48 | ### Debug
49 |
50 | The above results were tested in a debug build. Release mode builds come with many optimizations and are therefore faster than debug.
51 |
52 | ### Operations
53 |
54 | The above results were tested using _get_ operations for a single string key (value: `'hello'`). Results may differ when using other operations, such as _set_, _delete_, _update_, and more.
55 |
--------------------------------------------------------------------------------
/app/android/build.gradle:
--------------------------------------------------------------------------------
1 | import org.apache.tools.ant.taskdefs.condition.Os
2 |
3 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
4 |
5 | buildscript {
6 | ext {
7 | buildToolsVersion = "31.0.0"
8 | minSdkVersion = 21
9 | compileSdkVersion = 31
10 | targetSdkVersion = 31
11 | kotlinVersion = '1.3.50'
12 |
13 | if (System.properties['os.arch'] == "aarch64") {
14 | // For M1 Users we need to use the NDK 24 which added support for aarch64
15 | ndkVersion = "24.0.8215888"
16 | } else if (Os.isFamily(Os.FAMILY_WINDOWS)) {
17 | // For Android Users, we need to use NDK 23, otherwise the build will
18 | // fail due to paths longer than the OS limit
19 | ndkVersion = "23.1.7779620"
20 | } else {
21 | // Otherwise we default to the side-by-side NDK version from AGP.
22 | ndkVersion = "21.4.7075529"
23 | }
24 | }
25 | repositories {
26 | google()
27 | mavenCentral()
28 | }
29 | dependencies {
30 | classpath("com.android.tools.build:gradle:7.0.4")
31 | classpath("com.facebook.react:react-native-gradle-plugin")
32 | classpath("de.undercouch:gradle-download-task:4.1.2")
33 | // NOTE: Do not place your application dependencies here; they belong
34 | // in the individual module build.gradle files
35 | }
36 | }
37 |
38 | allprojects {
39 | repositories {
40 | maven {
41 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
42 | url("$rootDir/../node_modules/react-native/android")
43 | }
44 | maven {
45 | // Android JSC is installed from npm
46 | url("$rootDir/../node_modules/jsc-android/dist")
47 | }
48 | mavenCentral {
49 | // We don't want to fetch react-native from Maven Central as there are
50 | // older versions over there.
51 | content {
52 | excludeGroup "com.facebook.react"
53 | }
54 | }
55 | google()
56 | maven { url 'https://www.jitpack.io' }
57 | }
58 | }
59 |
--------------------------------------------------------------------------------
/app/ios/StorageBenchmarkTests/StorageBenchmarkTests.m:
--------------------------------------------------------------------------------
1 | #import
2 | #import
3 |
4 | #import
5 | #import
6 |
7 | #define TIMEOUT_SECONDS 600
8 | #define TEXT_TO_LOOK_FOR @"Welcome to React"
9 |
10 | @interface StorageBenchmarkTests : XCTestCase
11 |
12 | @end
13 |
14 | @implementation StorageBenchmarkTests
15 |
16 | - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL (^)(UIView *view))test
17 | {
18 | if (test(view)) {
19 | return YES;
20 | }
21 | for (UIView *subview in [view subviews]) {
22 | if ([self findSubviewInView:subview matching:test]) {
23 | return YES;
24 | }
25 | }
26 | return NO;
27 | }
28 |
29 | - (void)testRendersWelcomeScreen
30 | {
31 | UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController];
32 | NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS];
33 | BOOL foundElement = NO;
34 |
35 | __block NSString *redboxError = nil;
36 | #ifdef DEBUG
37 | RCTSetLogFunction(
38 | ^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) {
39 | if (level >= RCTLogLevelError) {
40 | redboxError = message;
41 | }
42 | });
43 | #endif
44 |
45 | while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) {
46 | [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
47 | [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
48 |
49 | foundElement = [self findSubviewInView:vc.view
50 | matching:^BOOL(UIView *view) {
51 | if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) {
52 | return YES;
53 | }
54 | return NO;
55 | }];
56 | }
57 |
58 | #ifdef DEBUG
59 | RCTSetLogFunction(RCTDefaultLogFunction);
60 | #endif
61 |
62 | XCTAssertNil(redboxError, @"RedBox error: %@", redboxError);
63 | XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS);
64 | }
65 |
66 | @end
67 |
--------------------------------------------------------------------------------
/app/android/app/src/main/jni/MainComponentsRegistry.cpp:
--------------------------------------------------------------------------------
1 | #include "MainComponentsRegistry.h"
2 |
3 | #include
4 | #include
5 | #include
6 | #include
7 |
8 | namespace facebook {
9 | namespace react {
10 |
11 | MainComponentsRegistry::MainComponentsRegistry(ComponentFactory *delegate) {}
12 |
13 | std::shared_ptr
14 | MainComponentsRegistry::sharedProviderRegistry() {
15 | auto providerRegistry = CoreComponentsRegistry::sharedProviderRegistry();
16 |
17 | // Custom Fabric Components go here. You can register custom
18 | // components coming from your App or from 3rd party libraries here.
19 | //
20 | // providerRegistry->add(concreteComponentDescriptorProvider<
21 | // AocViewerComponentDescriptor>());
22 | return providerRegistry;
23 | }
24 |
25 | jni::local_ref
26 | MainComponentsRegistry::initHybrid(
27 | jni::alias_ref,
28 | ComponentFactory *delegate) {
29 | auto instance = makeCxxInstance(delegate);
30 |
31 | auto buildRegistryFunction =
32 | [](EventDispatcher::Weak const &eventDispatcher,
33 | ContextContainer::Shared const &contextContainer)
34 | -> ComponentDescriptorRegistry::Shared {
35 | auto registry = MainComponentsRegistry::sharedProviderRegistry()
36 | ->createComponentDescriptorRegistry(
37 | {eventDispatcher, contextContainer});
38 |
39 | auto mutableRegistry =
40 | std::const_pointer_cast(registry);
41 |
42 | mutableRegistry->setFallbackComponentDescriptor(
43 | std::make_shared(
44 | ComponentDescriptorParameters{
45 | eventDispatcher, contextContainer, nullptr}));
46 |
47 | return registry;
48 | };
49 |
50 | delegate->buildRegistryFunction = buildRegistryFunction;
51 | return instance;
52 | }
53 |
54 | void MainComponentsRegistry::registerNatives() {
55 | registerHybrid({
56 | makeNativeMethod("initHybrid", MainComponentsRegistry::initHybrid),
57 | });
58 | }
59 |
60 | } // namespace react
61 | } // namespace facebook
62 |
--------------------------------------------------------------------------------
/app/Gemfile.lock:
--------------------------------------------------------------------------------
1 | GEM
2 | remote: https://rubygems.org/
3 | specs:
4 | CFPropertyList (3.0.5)
5 | rexml
6 | activesupport (6.1.5)
7 | concurrent-ruby (~> 1.0, >= 1.0.2)
8 | i18n (>= 1.6, < 2)
9 | minitest (>= 5.1)
10 | tzinfo (~> 2.0)
11 | zeitwerk (~> 2.3)
12 | addressable (2.8.0)
13 | public_suffix (>= 2.0.2, < 5.0)
14 | algoliasearch (1.27.5)
15 | httpclient (~> 2.8, >= 2.8.3)
16 | json (>= 1.5.1)
17 | atomos (0.1.3)
18 | claide (1.1.0)
19 | cocoapods (1.11.3)
20 | addressable (~> 2.8)
21 | claide (>= 1.0.2, < 2.0)
22 | cocoapods-core (= 1.11.3)
23 | cocoapods-deintegrate (>= 1.0.3, < 2.0)
24 | cocoapods-downloader (>= 1.4.0, < 2.0)
25 | cocoapods-plugins (>= 1.0.0, < 2.0)
26 | cocoapods-search (>= 1.0.0, < 2.0)
27 | cocoapods-trunk (>= 1.4.0, < 2.0)
28 | cocoapods-try (>= 1.1.0, < 2.0)
29 | colored2 (~> 3.1)
30 | escape (~> 0.0.4)
31 | fourflusher (>= 2.3.0, < 3.0)
32 | gh_inspector (~> 1.0)
33 | molinillo (~> 0.8.0)
34 | nap (~> 1.0)
35 | ruby-macho (>= 1.0, < 3.0)
36 | xcodeproj (>= 1.21.0, < 2.0)
37 | cocoapods-core (1.11.3)
38 | activesupport (>= 5.0, < 7)
39 | addressable (~> 2.8)
40 | algoliasearch (~> 1.0)
41 | concurrent-ruby (~> 1.1)
42 | fuzzy_match (~> 2.0.4)
43 | nap (~> 1.0)
44 | netrc (~> 0.11)
45 | public_suffix (~> 4.0)
46 | typhoeus (~> 1.0)
47 | cocoapods-deintegrate (1.0.5)
48 | cocoapods-downloader (1.6.3)
49 | cocoapods-plugins (1.0.0)
50 | nap
51 | cocoapods-search (1.0.1)
52 | cocoapods-trunk (1.6.0)
53 | nap (>= 0.8, < 2.0)
54 | netrc (~> 0.11)
55 | cocoapods-try (1.2.0)
56 | colored2 (3.1.2)
57 | concurrent-ruby (1.1.10)
58 | escape (0.0.4)
59 | ethon (0.15.0)
60 | ffi (>= 1.15.0)
61 | ffi (1.15.5)
62 | fourflusher (2.3.1)
63 | fuzzy_match (2.0.4)
64 | gh_inspector (1.1.3)
65 | httpclient (2.8.3)
66 | i18n (1.10.0)
67 | concurrent-ruby (~> 1.0)
68 | json (2.6.1)
69 | minitest (5.15.0)
70 | molinillo (0.8.0)
71 | nanaimo (0.3.0)
72 | nap (1.1.0)
73 | netrc (0.11.0)
74 | public_suffix (4.0.7)
75 | rexml (3.2.5)
76 | ruby-macho (2.5.1)
77 | typhoeus (1.4.0)
78 | ethon (>= 0.9.0)
79 | tzinfo (2.0.4)
80 | concurrent-ruby (~> 1.0)
81 | xcodeproj (1.21.0)
82 | CFPropertyList (>= 2.3.3, < 4.0)
83 | atomos (~> 0.1.3)
84 | claide (>= 1.0.2, < 2.0)
85 | colored2 (~> 3.1)
86 | nanaimo (~> 0.3.0)
87 | rexml (~> 3.2.4)
88 | zeitwerk (2.5.4)
89 |
90 | PLATFORMS
91 | ruby
92 |
93 | DEPENDENCIES
94 | cocoapods (~> 1.11, >= 1.11.2)
95 |
96 | RUBY VERSION
97 | ruby 2.7.4p191
98 |
99 | BUNDLED WITH
100 | 2.2.27
101 |
--------------------------------------------------------------------------------
/app/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%" == "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%"=="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 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
84 | exit /b 1
85 |
86 | :mainEnd
87 | if "%OS%"=="Windows_NT" endlocal
88 |
89 | :omega
90 |
--------------------------------------------------------------------------------
/app/src/App.tsx:
--------------------------------------------------------------------------------
1 | import React, {useCallback} from 'react';
2 | import {
3 | Button,
4 | SafeAreaView,
5 | StatusBar,
6 | StyleSheet,
7 | useColorScheme,
8 | } from 'react-native';
9 | import {getFromAsyncStorage} from './storages/AsyncStorage';
10 | import {getFromMMKV} from './storages/MMKV';
11 | import {getFromReactNativeKeychain} from './storages/ReactNativeKeychain';
12 | import {getFromRealm} from './storages/Realm';
13 | import {getFromSQLite} from './storages/SQLite';
14 | import {getFromWatermelonDB} from './storages/WatermelonDB';
15 | import {getFromMMKVEncrypted} from './storages/MMKVEncrypted';
16 | import {getFromExpoSecureStorage} from "./storages/ExpoSecureStorage";
17 |
18 | declare global {
19 | const performance: {now: () => number};
20 | }
21 |
22 | const iterations = 1000;
23 |
24 | async function benchmark(
25 | label: string,
26 | fn: () => unknown | Promise,
27 | ): Promise {
28 | try {
29 | console.log(`Starting Benchmark "${label}"...`);
30 | const start = performance.now();
31 | for (let i = 0; i < iterations; i++) {
32 | const r = fn();
33 | if (r instanceof Promise) {
34 | await r;
35 | }
36 | }
37 | const end = performance.now();
38 | const diff = end - start;
39 | console.log(`Finished Benchmark "${label}"! Took ${diff.toFixed(4)}ms!`);
40 | return diff;
41 | } catch (e) {
42 | console.error(`Failed Benchmark "${label}"!`, e);
43 | return 0;
44 | }
45 | }
46 |
47 | async function waitForGC(): Promise {
48 | // Wait for Garbage Collection to run. We give a 500ms delay.
49 | return new Promise(r => setTimeout(r, 500));
50 | }
51 | const App = () => {
52 | const isDarkMode = useColorScheme() === 'dark';
53 |
54 | const runBenchmarks = useCallback(async () => {
55 | console.log('Running Benchmark in 3... 2... 1...');
56 | await waitForGC();
57 | await benchmark('MMKV ', getFromMMKV);
58 | await waitForGC();
59 | await benchmark('MMKV Encrypt ', getFromMMKVEncrypted);
60 | await waitForGC();
61 | await benchmark('AsyncStorage ', getFromAsyncStorage);
62 | await waitForGC();
63 | await benchmark('Expo Secure Storage ', getFromExpoSecureStorage);
64 | await waitForGC();
65 | await benchmark('React Native Keychain', getFromReactNativeKeychain);
66 | await waitForGC();
67 | await benchmark('SQLite ', getFromSQLite);
68 | await waitForGC();
69 | await benchmark('RealmDB ', getFromRealm);
70 | await waitForGC();
71 | await benchmark('WatermelonDB ', getFromWatermelonDB);
72 | }, []);
73 |
74 | return (
75 |
76 |
77 |
78 |
79 | );
80 | };
81 |
82 | const styles = StyleSheet.create({
83 | container: {flex: 1, justifyContent: 'center', alignItems: 'center'},
84 | });
85 |
86 | export default App;
87 |
--------------------------------------------------------------------------------
/app/android/app/src/debug/java/com/storagebenchmark/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.storagebenchmark;
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.react.ReactFlipperPlugin;
21 | import com.facebook.flipper.plugins.sharedpreferences.SharedPreferencesFlipperPlugin;
22 | import com.facebook.react.ReactInstanceEventListener;
23 | import com.facebook.react.ReactInstanceManager;
24 | import com.facebook.react.bridge.ReactContext;
25 | import com.facebook.react.modules.network.NetworkingModule;
26 | import okhttp3.OkHttpClient;
27 |
28 | public class ReactNativeFlipper {
29 | public static void initializeFlipper(Context context, ReactInstanceManager reactInstanceManager) {
30 | if (FlipperUtils.shouldEnableFlipper(context)) {
31 | final FlipperClient client = AndroidFlipperClient.getInstance(context);
32 |
33 | client.addPlugin(new InspectorFlipperPlugin(context, DescriptorMapping.withDefaults()));
34 | client.addPlugin(new ReactFlipperPlugin());
35 | client.addPlugin(new DatabasesFlipperPlugin(context));
36 | client.addPlugin(new SharedPreferencesFlipperPlugin(context));
37 | client.addPlugin(CrashReporterPlugin.getInstance());
38 |
39 | NetworkFlipperPlugin networkFlipperPlugin = new NetworkFlipperPlugin();
40 | NetworkingModule.setCustomClientBuilder(
41 | new NetworkingModule.CustomClientBuilder() {
42 | @Override
43 | public void apply(OkHttpClient.Builder builder) {
44 | builder.addNetworkInterceptor(new FlipperOkhttpInterceptor(networkFlipperPlugin));
45 | }
46 | });
47 | client.addPlugin(networkFlipperPlugin);
48 | client.start();
49 |
50 | // Fresco Plugin needs to ensure that ImagePipelineFactory is initialized
51 | // Hence we run if after all native modules have been initialized
52 | ReactContext reactContext = reactInstanceManager.getCurrentReactContext();
53 | if (reactContext == null) {
54 | reactInstanceManager.addReactInstanceEventListener(
55 | new ReactInstanceEventListener() {
56 | @Override
57 | public void onReactContextInitialized(ReactContext reactContext) {
58 | reactInstanceManager.removeReactInstanceEventListener(this);
59 | reactContext.runOnNativeModulesQueueThread(
60 | new Runnable() {
61 | @Override
62 | public void run() {
63 | client.addPlugin(new FrescoFlipperPlugin());
64 | }
65 | });
66 | }
67 | });
68 | } else {
69 | client.addPlugin(new FrescoFlipperPlugin());
70 | }
71 | }
72 | }
73 | }
74 |
--------------------------------------------------------------------------------
/app/ios/StorageBenchmark.xcodeproj/xcshareddata/xcschemes/StorageBenchmark.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 |
--------------------------------------------------------------------------------
/app/android/app/src/main/java/com/storagebenchmark/MainApplication.java:
--------------------------------------------------------------------------------
1 | package com.storagebenchmark;
2 | import android.content.res.Configuration;
3 | import expo.modules.ApplicationLifecycleDispatcher;
4 | import expo.modules.ReactNativeHostWrapper;
5 |
6 | import android.app.Application;
7 | import android.content.Context;
8 | import com.facebook.react.PackageList;
9 | import com.facebook.react.ReactApplication;
10 | import com.facebook.react.ReactInstanceManager;
11 | import com.facebook.react.ReactNativeHost;
12 | import com.facebook.react.ReactPackage;
13 | import com.facebook.react.config.ReactFeatureFlags;
14 | import com.facebook.soloader.SoLoader;
15 | import com.storagebenchmark.newarchitecture.MainApplicationReactNativeHost;
16 | import java.lang.reflect.InvocationTargetException;
17 | import java.util.List;
18 |
19 | public class MainApplication extends Application implements ReactApplication {
20 |
21 | private final ReactNativeHost mReactNativeHost =
22 | new ReactNativeHostWrapper(this, new ReactNativeHost(this) {
23 | @Override
24 | public boolean getUseDeveloperSupport() {
25 | return BuildConfig.DEBUG;
26 | }
27 |
28 | @Override
29 | protected List getPackages() {
30 | @SuppressWarnings("UnnecessaryLocalVariable")
31 | List packages = new PackageList(this).getPackages();
32 | // Packages that cannot be autolinked yet can be added manually here, for example:
33 | // packages.add(new MyReactNativePackage());
34 | return packages;
35 | }
36 |
37 | @Override
38 | protected String getJSMainModuleName() {
39 | return "index";
40 | }
41 | });
42 |
43 | private final ReactNativeHost mNewArchitectureNativeHost =
44 | new ReactNativeHostWrapper(this, new MainApplicationReactNativeHost(this));
45 |
46 | @Override
47 | public ReactNativeHost getReactNativeHost() {
48 | if (BuildConfig.IS_NEW_ARCHITECTURE_ENABLED) {
49 | return mNewArchitectureNativeHost;
50 | } else {
51 | return mReactNativeHost;
52 | }
53 | }
54 |
55 | @Override
56 | public void onCreate() {
57 | super.onCreate();
58 | // If you opted-in for the New Architecture, we enable the TurboModule system
59 | ReactFeatureFlags.useTurboModules = BuildConfig.IS_NEW_ARCHITECTURE_ENABLED;
60 | SoLoader.init(this, /* native exopackage */ false);
61 | initializeFlipper(this, getReactNativeHost().getReactInstanceManager());
62 | ApplicationLifecycleDispatcher.onApplicationCreate(this);
63 | }
64 |
65 | /**
66 | * Loads Flipper in React Native templates. Call this in the onCreate method with something like
67 | * initializeFlipper(this, getReactNativeHost().getReactInstanceManager());
68 | *
69 | * @param context
70 | * @param reactInstanceManager
71 | */
72 | private static void initializeFlipper(
73 | Context context, ReactInstanceManager reactInstanceManager) {
74 | if (BuildConfig.DEBUG) {
75 | try {
76 | /*
77 | We use reflection here to pick up the class that initializes Flipper,
78 | since Flipper library is not available in release mode
79 | */
80 | Class> aClass = Class.forName("com.storagebenchmark.ReactNativeFlipper");
81 | aClass
82 | .getMethod("initializeFlipper", Context.class, ReactInstanceManager.class)
83 | .invoke(null, context, reactInstanceManager);
84 | } catch (ClassNotFoundException e) {
85 | e.printStackTrace();
86 | } catch (NoSuchMethodException e) {
87 | e.printStackTrace();
88 | } catch (IllegalAccessException e) {
89 | e.printStackTrace();
90 | } catch (InvocationTargetException e) {
91 | e.printStackTrace();
92 | }
93 | }
94 | }
95 |
96 | @Override
97 | public void onConfigurationChanged(Configuration newConfig) {
98 | super.onConfigurationChanged(newConfig);
99 | ApplicationLifecycleDispatcher.onConfigurationChanged(this, newConfig);
100 | }
101 | }
102 |
--------------------------------------------------------------------------------
/app/ios/StorageBenchmark/AppDelegate.mm:
--------------------------------------------------------------------------------
1 | #import "AppDelegate.h"
2 |
3 | #import
4 | #import
5 | #import
6 |
7 | #import
8 |
9 | #if RCT_NEW_ARCH_ENABLED
10 | #import
11 | #import
12 | #import
13 | #import
14 | #import
15 | #import
16 |
17 | #import
18 |
19 | @interface AppDelegate () {
20 | RCTTurboModuleManager *_turboModuleManager;
21 | RCTSurfacePresenterBridgeAdapter *_bridgeAdapter;
22 | std::shared_ptr _reactNativeConfig;
23 | facebook::react::ContextContainer::Shared _contextContainer;
24 | }
25 | @end
26 | #endif
27 |
28 | @implementation AppDelegate
29 |
30 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
31 | {
32 | RCTAppSetupPrepareApp(application);
33 |
34 | RCTBridge *bridge = [self.reactDelegate createBridgeWithDelegate:self launchOptions:launchOptions];
35 |
36 | #if RCT_NEW_ARCH_ENABLED
37 | _contextContainer = std::make_shared();
38 | _reactNativeConfig = std::make_shared();
39 | _contextContainer->insert("ReactNativeConfig", _reactNativeConfig);
40 | _bridgeAdapter = [[RCTSurfacePresenterBridgeAdapter alloc] initWithBridge:bridge contextContainer:_contextContainer];
41 | bridge.surfacePresenter = _bridgeAdapter.surfacePresenter;
42 | #endif
43 |
44 | UIView *rootView = [self.reactDelegate createRootViewWithBridge:bridge moduleName:@"StorageBenchmark" initialProperties:nil];
45 |
46 | if (@available(iOS 13.0, *)) {
47 | rootView.backgroundColor = [UIColor systemBackgroundColor];
48 | } else {
49 | rootView.backgroundColor = [UIColor whiteColor];
50 | }
51 |
52 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
53 | UIViewController *rootViewController = [self.reactDelegate createRootViewController];
54 | rootViewController.view = rootView;
55 | self.window.rootViewController = rootViewController;
56 | [self.window makeKeyAndVisible];
57 | [super application:application didFinishLaunchingWithOptions:launchOptions];
58 | return YES;
59 | }
60 |
61 | - (NSURL *)sourceURLForBridge:(RCTBridge *)bridge
62 | {
63 | #if DEBUG
64 | return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index"];
65 | #else
66 | return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"];
67 | #endif
68 | }
69 |
70 | #if RCT_NEW_ARCH_ENABLED
71 |
72 | #pragma mark - RCTCxxBridgeDelegate
73 |
74 | - (std::unique_ptr)jsExecutorFactoryForBridge:(RCTBridge *)bridge
75 | {
76 | _turboModuleManager = [[RCTTurboModuleManager alloc] initWithBridge:bridge
77 | delegate:self
78 | jsInvoker:bridge.jsCallInvoker];
79 | return RCTAppSetupDefaultJsExecutorFactory(bridge, _turboModuleManager);
80 | }
81 |
82 | #pragma mark RCTTurboModuleManagerDelegate
83 |
84 | - (Class)getModuleClassFromName:(const char *)name
85 | {
86 | return RCTCoreModulesClassProvider(name);
87 | }
88 |
89 | - (std::shared_ptr)getTurboModule:(const std::string &)name
90 | jsInvoker:(std::shared_ptr)jsInvoker
91 | {
92 | return nullptr;
93 | }
94 |
95 | - (std::shared_ptr)getTurboModule:(const std::string &)name
96 | initParams:
97 | (const facebook::react::ObjCTurboModule::InitParams &)params
98 | {
99 | return nullptr;
100 | }
101 |
102 | - (id)getModuleInstanceFromClass:(Class)moduleClass
103 | {
104 | return RCTAppSetupDefaultModuleFromClass(moduleClass);
105 | }
106 |
107 | #endif
108 |
109 | @end
110 |
--------------------------------------------------------------------------------
/app/ios/StorageBenchmark/LaunchScreen.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
24 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
--------------------------------------------------------------------------------
/app/android/app/src/main/java/com/storagebenchmark/newarchitecture/MainApplicationReactNativeHost.java:
--------------------------------------------------------------------------------
1 | package com.storagebenchmark.newarchitecture;
2 |
3 | import android.app.Application;
4 | import androidx.annotation.NonNull;
5 | import com.facebook.react.PackageList;
6 | import com.facebook.react.ReactInstanceManager;
7 | import com.facebook.react.ReactNativeHost;
8 | import com.facebook.react.ReactPackage;
9 | import com.facebook.react.ReactPackageTurboModuleManagerDelegate;
10 | import com.facebook.react.bridge.JSIModulePackage;
11 | import com.facebook.react.bridge.JSIModuleProvider;
12 | import com.facebook.react.bridge.JSIModuleSpec;
13 | import com.facebook.react.bridge.JSIModuleType;
14 | import com.facebook.react.bridge.JavaScriptContextHolder;
15 | import com.facebook.react.bridge.ReactApplicationContext;
16 | import com.facebook.react.bridge.UIManager;
17 | import com.facebook.react.fabric.ComponentFactory;
18 | import com.facebook.react.fabric.CoreComponentsRegistry;
19 | import com.facebook.react.fabric.EmptyReactNativeConfig;
20 | import com.facebook.react.fabric.FabricJSIModuleProvider;
21 | import com.facebook.react.uimanager.ViewManagerRegistry;
22 | import com.storagebenchmark.BuildConfig;
23 | import com.storagebenchmark.newarchitecture.components.MainComponentsRegistry;
24 | import com.storagebenchmark.newarchitecture.modules.MainApplicationTurboModuleManagerDelegate;
25 | import java.util.ArrayList;
26 | import java.util.List;
27 |
28 | /**
29 | * A {@link ReactNativeHost} that helps you load everything needed for the New Architecture, both
30 | * TurboModule delegates and the Fabric Renderer.
31 | *
32 | * Please note that this class is used ONLY if you opt-in for the New Architecture (see the
33 | * `newArchEnabled` property). Is ignored otherwise.
34 | */
35 | public class MainApplicationReactNativeHost extends ReactNativeHost {
36 | public MainApplicationReactNativeHost(Application application) {
37 | super(application);
38 | }
39 |
40 | @Override
41 | public boolean getUseDeveloperSupport() {
42 | return BuildConfig.DEBUG;
43 | }
44 |
45 | @Override
46 | protected List getPackages() {
47 | List packages = new PackageList(this).getPackages();
48 | // Packages that cannot be autolinked yet can be added manually here, for example:
49 | // packages.add(new MyReactNativePackage());
50 | // TurboModules must also be loaded here providing a valid TurboReactPackage implementation:
51 | // packages.add(new TurboReactPackage() { ... });
52 | // If you have custom Fabric Components, their ViewManagers should also be loaded here
53 | // inside a ReactPackage.
54 | return packages;
55 | }
56 |
57 | @Override
58 | protected String getJSMainModuleName() {
59 | return "index";
60 | }
61 |
62 | @NonNull
63 | @Override
64 | protected ReactPackageTurboModuleManagerDelegate.Builder
65 | getReactPackageTurboModuleManagerDelegateBuilder() {
66 | // Here we provide the ReactPackageTurboModuleManagerDelegate Builder. This is necessary
67 | // for the new architecture and to use TurboModules correctly.
68 | return new MainApplicationTurboModuleManagerDelegate.Builder();
69 | }
70 |
71 | @Override
72 | protected JSIModulePackage getJSIModulePackage() {
73 | return new JSIModulePackage() {
74 | @Override
75 | public List getJSIModules(
76 | final ReactApplicationContext reactApplicationContext,
77 | final JavaScriptContextHolder jsContext) {
78 | final List specs = new ArrayList<>();
79 |
80 | // Here we provide a new JSIModuleSpec that will be responsible of providing the
81 | // custom Fabric Components.
82 | specs.add(
83 | new JSIModuleSpec() {
84 | @Override
85 | public JSIModuleType getJSIModuleType() {
86 | return JSIModuleType.UIManager;
87 | }
88 |
89 | @Override
90 | public JSIModuleProvider getJSIModuleProvider() {
91 | final ComponentFactory componentFactory = new ComponentFactory();
92 | CoreComponentsRegistry.register(componentFactory);
93 |
94 | // Here we register a Components Registry.
95 | // The one that is generated with the template contains no components
96 | // and just provides you the one from React Native core.
97 | MainComponentsRegistry.register(componentFactory);
98 |
99 | final ReactInstanceManager reactInstanceManager = getReactInstanceManager();
100 |
101 | ViewManagerRegistry viewManagerRegistry =
102 | new ViewManagerRegistry(
103 | reactInstanceManager.getOrCreateViewManagers(reactApplicationContext));
104 |
105 | return new FabricJSIModuleProvider(
106 | reactApplicationContext,
107 | componentFactory,
108 | new EmptyReactNativeConfig(),
109 | viewManagerRegistry);
110 | }
111 | });
112 | return specs;
113 | }
114 | };
115 | }
116 | }
117 |
--------------------------------------------------------------------------------
/app/tsconfig.json:
--------------------------------------------------------------------------------
1 |
2 | {
3 | "compilerOptions": {
4 | /* Basic Options */
5 | "target": "esnext", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */
6 | "module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
7 | "lib": ["es2017"], /* Specify library files to be included in the compilation. */
8 | "allowJs": true, /* Allow javascript files to be compiled. */
9 | // "checkJs": true, /* Report errors in .js files. */
10 | "jsx": "react-native", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */
11 | // "declaration": true, /* Generates corresponding '.d.ts' file. */
12 | // "sourceMap": true, /* Generates corresponding '.map' file. */
13 | // "outFile": "./", /* Concatenate and emit output to single file. */
14 | // "outDir": "./", /* Redirect output structure to the directory. */
15 | // "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
16 | // "removeComments": true, /* Do not emit comments to output. */
17 | "noEmit": true, /* Do not emit outputs. */
18 | // "incremental": true, /* Enable incremental compilation */
19 | // "importHelpers": true, /* Import emit helpers from 'tslib'. */
20 | // "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */
21 | "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */
22 |
23 | /* Strict Type-Checking Options */
24 | "strict": true, /* Enable all strict type-checking options. */
25 | // "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
26 | // "strictNullChecks": true, /* Enable strict null checks. */
27 | // "strictFunctionTypes": true, /* Enable strict checking of function types. */
28 | // "strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */
29 | // "noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */
30 | // "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */
31 |
32 | /* Additional Checks */
33 | // "noUnusedLocals": true, /* Report errors on unused locals. */
34 | // "noUnusedParameters": true, /* Report errors on unused parameters. */
35 | // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
36 | // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
37 |
38 | /* Module Resolution Options */
39 | "moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
40 | // "baseUrl": "./", /* Base directory to resolve non-absolute module names. */
41 | // "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
42 | // "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */
43 | // "typeRoots": [], /* List of folders to include type definitions from. */
44 | // "types": [], /* Type declaration files to be included in compilation. */
45 | "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
46 | "esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
47 | // "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */
48 | "skipLibCheck": true, /* Skip type checking of declaration files. */
49 | "resolveJsonModule": true /* Allows importing modules with a ‘.json’ extension, which is a common practice in node projects. */
50 |
51 | /* Source Map Options */
52 | // "sourceRoot": "./", /* Specify the location where debugger should locate TypeScript files instead of source locations. */
53 | // "mapRoot": "./", /* Specify the location where debugger should locate map files instead of generated locations. */
54 | // "inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */
55 | // "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */
56 |
57 | /* Experimental Options */
58 | // "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
59 | // "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
60 | },
61 | "exclude": [
62 | "node_modules", "babel.config.js", "metro.config.js", "jest.config.js"
63 | ]
64 | }
65 |
--------------------------------------------------------------------------------
/app/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 | # Use "xargs" to parse quoted args.
209 | #
210 | # With -n1 it outputs one arg per line, with the quotes and backslashes removed.
211 | #
212 | # In Bash we could simply go:
213 | #
214 | # readarray ARGS < <( xargs -n1 <<<"$var" ) &&
215 | # set -- "${ARGS[@]}" "$@"
216 | #
217 | # but POSIX shell has neither arrays nor command substitution, so instead we
218 | # post-process each arg (as a line of input to sed) to backslash-escape any
219 | # character that might be a shell metacharacter, then use eval to reverse
220 | # that process (while maintaining the separation between arguments), and wrap
221 | # the whole thing up as a single "set" statement.
222 | #
223 | # This will of course break if any of these variables contains a newline or
224 | # an unmatched quote.
225 | #
226 |
227 | eval "set -- $(
228 | printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" |
229 | xargs -n1 |
230 | sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' |
231 | tr '\n' ' '
232 | )" '"$@"'
233 |
234 | exec "$JAVACMD" "$@"
235 |
--------------------------------------------------------------------------------
/app/android/app/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: "com.android.application"
2 |
3 | import com.android.build.OutputFile
4 | import org.apache.tools.ant.taskdefs.condition.Os
5 |
6 | /**
7 | * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets
8 | * and bundleReleaseJsAndAssets).
9 | * These basically call `react-native bundle` with the correct arguments during the Android build
10 | * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the
11 | * bundle directly from the development server. Below you can see all the possible configurations
12 | * and their defaults. If you decide to add a configuration block, make sure to add it before the
13 | * `apply from: "../../node_modules/react-native/react.gradle"` line.
14 | *
15 | * project.ext.react = [
16 | * // the name of the generated asset file containing your JS bundle
17 | * bundleAssetName: "index.android.bundle",
18 | *
19 | * // the entry file for bundle generation. If none specified and
20 | * // "index.android.js" exists, it will be used. Otherwise "index.js" is
21 | * // default. Can be overridden with ENTRY_FILE environment variable.
22 | * entryFile: "index.android.js",
23 | *
24 | * // https://reactnative.dev/docs/performance#enable-the-ram-format
25 | * bundleCommand: "ram-bundle",
26 | *
27 | * // whether to bundle JS and assets in debug mode
28 | * bundleInDebug: false,
29 | *
30 | * // whether to bundle JS and assets in release mode
31 | * bundleInRelease: true,
32 | *
33 | * // whether to bundle JS and assets in another build variant (if configured).
34 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants
35 | * // The configuration property can be in the following formats
36 | * // 'bundleIn${productFlavor}${buildType}'
37 | * // 'bundleIn${buildType}'
38 | * // bundleInFreeDebug: true,
39 | * // bundleInPaidRelease: true,
40 | * // bundleInBeta: true,
41 | *
42 | * // whether to disable dev mode in custom build variants (by default only disabled in release)
43 | * // for example: to disable dev mode in the staging build type (if configured)
44 | * devDisabledInStaging: true,
45 | * // The configuration property can be in the following formats
46 | * // 'devDisabledIn${productFlavor}${buildType}'
47 | * // 'devDisabledIn${buildType}'
48 | *
49 | * // the root of your project, i.e. where "package.json" lives
50 | * root: "../../",
51 | *
52 | * // where to put the JS bundle asset in debug mode
53 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug",
54 | *
55 | * // where to put the JS bundle asset in release mode
56 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release",
57 | *
58 | * // where to put drawable resources / React Native assets, e.g. the ones you use via
59 | * // require('./image.png')), in debug mode
60 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug",
61 | *
62 | * // where to put drawable resources / React Native assets, e.g. the ones you use via
63 | * // require('./image.png')), in release mode
64 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release",
65 | *
66 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means
67 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to
68 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle
69 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/
70 | * // for example, you might want to remove it from here.
71 | * inputExcludes: ["android/**", "ios/**"],
72 | *
73 | * // override which node gets called and with what additional arguments
74 | * nodeExecutableAndArgs: ["node"],
75 | *
76 | * // supply additional arguments to the packager
77 | * extraPackagerArgs: []
78 | * ]
79 | */
80 |
81 | project.ext.react = [
82 | enableHermes: false, // clean and rebuild if changing
83 | ]
84 |
85 | apply from: "../../node_modules/react-native/react.gradle"
86 |
87 | /**
88 | * Set this to true to create two separate APKs instead of one:
89 | * - An APK that only works on ARM devices
90 | * - An APK that only works on x86 devices
91 | * The advantage is the size of the APK is reduced by about 4MB.
92 | * Upload all the APKs to the Play Store and people will download
93 | * the correct one based on the CPU architecture of their device.
94 | */
95 | def enableSeparateBuildPerCPUArchitecture = false
96 |
97 | /**
98 | * Run Proguard to shrink the Java bytecode in release builds.
99 | */
100 | def enableProguardInReleaseBuilds = false
101 |
102 | /**
103 | * The preferred build flavor of JavaScriptCore.
104 | *
105 | * For example, to use the international variant, you can use:
106 | * `def jscFlavor = 'org.webkit:android-jsc-intl:+'`
107 | *
108 | * The international variant includes ICU i18n library and necessary data
109 | * allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that
110 | * give correct results when using with locales other than en-US. Note that
111 | * this variant is about 6MiB larger per architecture than default.
112 | */
113 | def jscFlavor = 'org.webkit:android-jsc:+'
114 |
115 | /**
116 | * Whether to enable the Hermes VM.
117 | *
118 | * This should be set on project.ext.react and that value will be read here. If it is not set
119 | * on project.ext.react, JavaScript will not be compiled to Hermes Bytecode
120 | * and the benefits of using Hermes will therefore be sharply reduced.
121 | */
122 | def enableHermes = project.ext.react.get("enableHermes", false);
123 |
124 | /**
125 | * Architectures to build native code for.
126 | */
127 | def reactNativeArchitectures() {
128 | def value = project.getProperties().get("reactNativeArchitectures")
129 | return value ? value.split(",") : ["armeabi-v7a", "x86", "x86_64", "arm64-v8a"]
130 | }
131 |
132 | android {
133 | ndkVersion rootProject.ext.ndkVersion
134 |
135 | compileSdkVersion rootProject.ext.compileSdkVersion
136 |
137 | defaultConfig {
138 | applicationId "com.storagebenchmark"
139 | minSdkVersion rootProject.ext.minSdkVersion
140 | targetSdkVersion rootProject.ext.targetSdkVersion
141 | versionCode 1
142 | versionName "1.0"
143 | buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()
144 |
145 | if (isNewArchitectureEnabled()) {
146 | // We configure the NDK build only if you decide to opt-in for the New Architecture.
147 | externalNativeBuild {
148 | ndkBuild {
149 | arguments "APP_PLATFORM=android-21",
150 | "APP_STL=c++_shared",
151 | "NDK_TOOLCHAIN_VERSION=clang",
152 | "GENERATED_SRC_DIR=$buildDir/generated/source",
153 | "PROJECT_BUILD_DIR=$buildDir",
154 | "REACT_ANDROID_DIR=$rootDir/../node_modules/react-native/ReactAndroid",
155 | "REACT_ANDROID_BUILD_DIR=$rootDir/../node_modules/react-native/ReactAndroid/build"
156 | cFlags "-Wall", "-Werror", "-fexceptions", "-frtti", "-DWITH_INSPECTOR=1"
157 | cppFlags "-std=c++17"
158 | // Make sure this target name is the same you specify inside the
159 | // src/main/jni/Android.mk file for the `LOCAL_MODULE` variable.
160 | targets "storagebenchmark_appmodules"
161 |
162 | // Fix for windows limit on number of character in file paths and in command lines
163 | if (Os.isFamily(Os.FAMILY_WINDOWS)) {
164 | arguments "NDK_OUT=${rootProject.projectDir.getParent()}\\.cxx",
165 | "NDK_APP_SHORT_COMMANDS=true"
166 | }
167 | }
168 | }
169 | if (!enableSeparateBuildPerCPUArchitecture) {
170 | ndk {
171 | abiFilters (*reactNativeArchitectures())
172 | }
173 | }
174 | }
175 | }
176 |
177 | if (isNewArchitectureEnabled()) {
178 | // We configure the NDK build only if you decide to opt-in for the New Architecture.
179 | externalNativeBuild {
180 | ndkBuild {
181 | path "$projectDir/src/main/jni/Android.mk"
182 | }
183 | }
184 | def reactAndroidProjectDir = project(':ReactAndroid').projectDir
185 | def packageReactNdkDebugLibs = tasks.register("packageReactNdkDebugLibs", Copy) {
186 | dependsOn(":ReactAndroid:packageReactNdkDebugLibsForBuck")
187 | from("$reactAndroidProjectDir/src/main/jni/prebuilt/lib")
188 | into("$buildDir/react-ndk/exported")
189 | }
190 | def packageReactNdkReleaseLibs = tasks.register("packageReactNdkReleaseLibs", Copy) {
191 | dependsOn(":ReactAndroid:packageReactNdkReleaseLibsForBuck")
192 | from("$reactAndroidProjectDir/src/main/jni/prebuilt/lib")
193 | into("$buildDir/react-ndk/exported")
194 | }
195 | afterEvaluate {
196 | // If you wish to add a custom TurboModule or component locally,
197 | // you should uncomment this line.
198 | // preBuild.dependsOn("generateCodegenArtifactsFromSchema")
199 | preDebugBuild.dependsOn(packageReactNdkDebugLibs)
200 | preReleaseBuild.dependsOn(packageReactNdkReleaseLibs)
201 |
202 | // Due to a bug inside AGP, we have to explicitly set a dependency
203 | // between configureNdkBuild* tasks and the preBuild tasks.
204 | // This can be removed once this is solved: https://issuetracker.google.com/issues/207403732
205 | configureNdkBuildRelease.dependsOn(preReleaseBuild)
206 | configureNdkBuildDebug.dependsOn(preDebugBuild)
207 | reactNativeArchitectures().each { architecture ->
208 | tasks.findByName("configureNdkBuildDebug[${architecture}]")?.configure {
209 | dependsOn("preDebugBuild")
210 | }
211 | tasks.findByName("configureNdkBuildRelease[${architecture}]")?.configure {
212 | dependsOn("preReleaseBuild")
213 | }
214 | }
215 | }
216 | }
217 |
218 | splits {
219 | abi {
220 | reset()
221 | enable enableSeparateBuildPerCPUArchitecture
222 | universalApk false // If true, also generate a universal APK
223 | include (*reactNativeArchitectures())
224 | }
225 | }
226 | signingConfigs {
227 | debug {
228 | storeFile file('debug.keystore')
229 | storePassword 'android'
230 | keyAlias 'androiddebugkey'
231 | keyPassword 'android'
232 | }
233 | }
234 | buildTypes {
235 | debug {
236 | signingConfig signingConfigs.debug
237 | }
238 | release {
239 | // Caution! In production, you need to generate your own keystore file.
240 | // see https://reactnative.dev/docs/signed-apk-android.
241 | signingConfig signingConfigs.debug
242 | minifyEnabled enableProguardInReleaseBuilds
243 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
244 | }
245 | }
246 |
247 | // applicationVariants are e.g. debug, release
248 | applicationVariants.all { variant ->
249 | variant.outputs.each { output ->
250 | // For each separate APK per architecture, set a unique version code as described here:
251 | // https://developer.android.com/studio/build/configure-apk-splits.html
252 | // Example: versionCode 1 will generate 1001 for armeabi-v7a, 1002 for x86, etc.
253 | def versionCodes = ["armeabi-v7a": 1, "x86": 2, "arm64-v8a": 3, "x86_64": 4]
254 | def abi = output.getFilter(OutputFile.ABI)
255 | if (abi != null) { // null for the universal-debug, universal-release variants
256 | output.versionCodeOverride =
257 | defaultConfig.versionCode * 1000 + versionCodes.get(abi)
258 | }
259 |
260 | }
261 | }
262 | }
263 |
264 | dependencies {
265 | implementation fileTree(dir: "libs", include: ["*.jar"])
266 |
267 | //noinspection GradleDynamicVersion
268 | implementation "com.facebook.react:react-native:+" // From node_modules
269 |
270 | implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0"
271 |
272 | debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}") {
273 | exclude group:'com.facebook.fbjni'
274 | }
275 |
276 | debugImplementation("com.facebook.flipper:flipper-network-plugin:${FLIPPER_VERSION}") {
277 | exclude group:'com.facebook.flipper'
278 | exclude group:'com.squareup.okhttp3', module:'okhttp'
279 | }
280 |
281 | debugImplementation("com.facebook.flipper:flipper-fresco-plugin:${FLIPPER_VERSION}") {
282 | exclude group:'com.facebook.flipper'
283 | }
284 |
285 | if (enableHermes) {
286 | def hermesPath = "../../node_modules/hermes-engine/android/";
287 | debugImplementation files(hermesPath + "hermes-debug.aar")
288 | releaseImplementation files(hermesPath + "hermes-release.aar")
289 | } else {
290 | implementation jscFlavor
291 | }
292 | }
293 |
294 | if (isNewArchitectureEnabled()) {
295 | // If new architecture is enabled, we let you build RN from source
296 | // Otherwise we fallback to a prebuilt .aar bundled in the NPM package.
297 | // This will be applied to all the imported transtitive dependency.
298 | configurations.all {
299 | resolutionStrategy.dependencySubstitution {
300 | substitute(module("com.facebook.react:react-native"))
301 | .using(project(":ReactAndroid")).because("On New Architecture we're building React Native from source")
302 | }
303 | }
304 | }
305 |
306 | // Run this once to be able to run the application with BUCK
307 | // puts all compile dependencies into folder libs for BUCK to use
308 | task copyDownloadableDepsToLibs(type: Copy) {
309 | from configurations.implementation
310 | into 'libs'
311 | }
312 |
313 | apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project)
314 |
315 | def isNewArchitectureEnabled() {
316 | // To opt-in for the New Architecture, you can either:
317 | // - Set `newArchEnabled` to true inside the `gradle.properties` file
318 | // - Invoke gradle with `-newArchEnabled=true`
319 | // - Set an environment variable `ORG_GRADLE_PROJECT_newArchEnabled=true`
320 | return project.hasProperty("newArchEnabled") && project.newArchEnabled == "true"
321 | }
322 |
--------------------------------------------------------------------------------
/app/ios/Podfile.lock:
--------------------------------------------------------------------------------
1 | PODS:
2 | - boost (1.76.0)
3 | - CocoaAsyncSocket (7.6.5)
4 | - DoubleConversion (1.1.6)
5 | - EXApplication (4.1.0):
6 | - ExpoModulesCore
7 | - EXConstants (13.1.1):
8 | - ExpoModulesCore
9 | - EXErrorRecovery (3.1.0):
10 | - ExpoModulesCore
11 | - EXFileSystem (14.0.0):
12 | - ExpoModulesCore
13 | - EXFont (10.1.0):
14 | - ExpoModulesCore
15 | - Expo (45.0.8):
16 | - ExpoModulesCore
17 | - ExpoKeepAwake (10.1.1):
18 | - ExpoModulesCore
19 | - ExpoModulesCore (0.9.2):
20 | - React-Core
21 | - ReactCommon/turbomodule/core
22 | - EXSecureStore (11.2.0):
23 | - ExpoModulesCore
24 | - FBLazyVector (0.68.7)
25 | - FBReactNativeSpec (0.68.7):
26 | - RCT-Folly (= 2021.06.28.00-v2)
27 | - RCTRequired (= 0.68.7)
28 | - RCTTypeSafety (= 0.68.7)
29 | - React-Core (= 0.68.7)
30 | - React-jsi (= 0.68.7)
31 | - ReactCommon/turbomodule/core (= 0.68.7)
32 | - Flipper (0.125.0):
33 | - Flipper-Folly (~> 2.6)
34 | - Flipper-RSocket (~> 1.4)
35 | - Flipper-Boost-iOSX (1.76.0.1.11)
36 | - Flipper-DoubleConversion (3.2.0)
37 | - Flipper-Fmt (7.1.7)
38 | - Flipper-Folly (2.6.10):
39 | - Flipper-Boost-iOSX
40 | - Flipper-DoubleConversion
41 | - Flipper-Fmt (= 7.1.7)
42 | - Flipper-Glog
43 | - libevent (~> 2.1.12)
44 | - OpenSSL-Universal (= 1.1.1100)
45 | - Flipper-Glog (0.5.0.4)
46 | - Flipper-PeerTalk (0.0.4)
47 | - Flipper-RSocket (1.4.3):
48 | - Flipper-Folly (~> 2.6)
49 | - FlipperKit (0.125.0):
50 | - FlipperKit/Core (= 0.125.0)
51 | - FlipperKit/Core (0.125.0):
52 | - Flipper (~> 0.125.0)
53 | - FlipperKit/CppBridge
54 | - FlipperKit/FBCxxFollyDynamicConvert
55 | - FlipperKit/FBDefines
56 | - FlipperKit/FKPortForwarding
57 | - SocketRocket (~> 0.6.0)
58 | - FlipperKit/CppBridge (0.125.0):
59 | - Flipper (~> 0.125.0)
60 | - FlipperKit/FBCxxFollyDynamicConvert (0.125.0):
61 | - Flipper-Folly (~> 2.6)
62 | - FlipperKit/FBDefines (0.125.0)
63 | - FlipperKit/FKPortForwarding (0.125.0):
64 | - CocoaAsyncSocket (~> 7.6)
65 | - Flipper-PeerTalk (~> 0.0.4)
66 | - FlipperKit/FlipperKitHighlightOverlay (0.125.0)
67 | - FlipperKit/FlipperKitLayoutHelpers (0.125.0):
68 | - FlipperKit/Core
69 | - FlipperKit/FlipperKitHighlightOverlay
70 | - FlipperKit/FlipperKitLayoutTextSearchable
71 | - FlipperKit/FlipperKitLayoutIOSDescriptors (0.125.0):
72 | - FlipperKit/Core
73 | - FlipperKit/FlipperKitHighlightOverlay
74 | - FlipperKit/FlipperKitLayoutHelpers
75 | - YogaKit (~> 1.18)
76 | - FlipperKit/FlipperKitLayoutPlugin (0.125.0):
77 | - FlipperKit/Core
78 | - FlipperKit/FlipperKitHighlightOverlay
79 | - FlipperKit/FlipperKitLayoutHelpers
80 | - FlipperKit/FlipperKitLayoutIOSDescriptors
81 | - FlipperKit/FlipperKitLayoutTextSearchable
82 | - YogaKit (~> 1.18)
83 | - FlipperKit/FlipperKitLayoutTextSearchable (0.125.0)
84 | - FlipperKit/FlipperKitNetworkPlugin (0.125.0):
85 | - FlipperKit/Core
86 | - FlipperKit/FlipperKitReactPlugin (0.125.0):
87 | - FlipperKit/Core
88 | - FlipperKit/FlipperKitUserDefaultsPlugin (0.125.0):
89 | - FlipperKit/Core
90 | - FlipperKit/SKIOSNetworkPlugin (0.125.0):
91 | - FlipperKit/Core
92 | - FlipperKit/FlipperKitNetworkPlugin
93 | - fmt (6.2.1)
94 | - glog (0.3.5)
95 | - hermes-engine (0.11.0)
96 | - libevent (2.1.12)
97 | - MMKV (1.2.13):
98 | - MMKVCore (~> 1.2.13)
99 | - MMKVCore (1.2.13)
100 | - OpenSSL-Universal (1.1.1100)
101 | - RCT-Folly (2021.06.28.00-v2):
102 | - boost
103 | - DoubleConversion
104 | - fmt (~> 6.2.1)
105 | - glog
106 | - RCT-Folly/Default (= 2021.06.28.00-v2)
107 | - RCT-Folly/Default (2021.06.28.00-v2):
108 | - boost
109 | - DoubleConversion
110 | - fmt (~> 6.2.1)
111 | - glog
112 | - RCT-Folly/Futures (2021.06.28.00-v2):
113 | - boost
114 | - DoubleConversion
115 | - fmt (~> 6.2.1)
116 | - glog
117 | - libevent
118 | - RCTRequired (0.68.7)
119 | - RCTTypeSafety (0.68.7):
120 | - FBLazyVector (= 0.68.7)
121 | - RCT-Folly (= 2021.06.28.00-v2)
122 | - RCTRequired (= 0.68.7)
123 | - React-Core (= 0.68.7)
124 | - React (0.68.7):
125 | - React-Core (= 0.68.7)
126 | - React-Core/DevSupport (= 0.68.7)
127 | - React-Core/RCTWebSocket (= 0.68.7)
128 | - React-RCTActionSheet (= 0.68.7)
129 | - React-RCTAnimation (= 0.68.7)
130 | - React-RCTBlob (= 0.68.7)
131 | - React-RCTImage (= 0.68.7)
132 | - React-RCTLinking (= 0.68.7)
133 | - React-RCTNetwork (= 0.68.7)
134 | - React-RCTSettings (= 0.68.7)
135 | - React-RCTText (= 0.68.7)
136 | - React-RCTVibration (= 0.68.7)
137 | - React-callinvoker (0.68.7)
138 | - React-Codegen (0.68.7):
139 | - FBReactNativeSpec (= 0.68.7)
140 | - RCT-Folly (= 2021.06.28.00-v2)
141 | - RCTRequired (= 0.68.7)
142 | - RCTTypeSafety (= 0.68.7)
143 | - React-Core (= 0.68.7)
144 | - React-jsi (= 0.68.7)
145 | - React-jsiexecutor (= 0.68.7)
146 | - ReactCommon/turbomodule/core (= 0.68.7)
147 | - React-Core (0.68.7):
148 | - glog
149 | - RCT-Folly (= 2021.06.28.00-v2)
150 | - React-Core/Default (= 0.68.7)
151 | - React-cxxreact (= 0.68.7)
152 | - React-jsi (= 0.68.7)
153 | - React-jsiexecutor (= 0.68.7)
154 | - React-perflogger (= 0.68.7)
155 | - Yoga
156 | - React-Core/CoreModulesHeaders (0.68.7):
157 | - glog
158 | - RCT-Folly (= 2021.06.28.00-v2)
159 | - React-Core/Default
160 | - React-cxxreact (= 0.68.7)
161 | - React-jsi (= 0.68.7)
162 | - React-jsiexecutor (= 0.68.7)
163 | - React-perflogger (= 0.68.7)
164 | - Yoga
165 | - React-Core/Default (0.68.7):
166 | - glog
167 | - RCT-Folly (= 2021.06.28.00-v2)
168 | - React-cxxreact (= 0.68.7)
169 | - React-jsi (= 0.68.7)
170 | - React-jsiexecutor (= 0.68.7)
171 | - React-perflogger (= 0.68.7)
172 | - Yoga
173 | - React-Core/DevSupport (0.68.7):
174 | - glog
175 | - RCT-Folly (= 2021.06.28.00-v2)
176 | - React-Core/Default (= 0.68.7)
177 | - React-Core/RCTWebSocket (= 0.68.7)
178 | - React-cxxreact (= 0.68.7)
179 | - React-jsi (= 0.68.7)
180 | - React-jsiexecutor (= 0.68.7)
181 | - React-jsinspector (= 0.68.7)
182 | - React-perflogger (= 0.68.7)
183 | - Yoga
184 | - React-Core/RCTActionSheetHeaders (0.68.7):
185 | - glog
186 | - RCT-Folly (= 2021.06.28.00-v2)
187 | - React-Core/Default
188 | - React-cxxreact (= 0.68.7)
189 | - React-jsi (= 0.68.7)
190 | - React-jsiexecutor (= 0.68.7)
191 | - React-perflogger (= 0.68.7)
192 | - Yoga
193 | - React-Core/RCTAnimationHeaders (0.68.7):
194 | - glog
195 | - RCT-Folly (= 2021.06.28.00-v2)
196 | - React-Core/Default
197 | - React-cxxreact (= 0.68.7)
198 | - React-jsi (= 0.68.7)
199 | - React-jsiexecutor (= 0.68.7)
200 | - React-perflogger (= 0.68.7)
201 | - Yoga
202 | - React-Core/RCTBlobHeaders (0.68.7):
203 | - glog
204 | - RCT-Folly (= 2021.06.28.00-v2)
205 | - React-Core/Default
206 | - React-cxxreact (= 0.68.7)
207 | - React-jsi (= 0.68.7)
208 | - React-jsiexecutor (= 0.68.7)
209 | - React-perflogger (= 0.68.7)
210 | - Yoga
211 | - React-Core/RCTImageHeaders (0.68.7):
212 | - glog
213 | - RCT-Folly (= 2021.06.28.00-v2)
214 | - React-Core/Default
215 | - React-cxxreact (= 0.68.7)
216 | - React-jsi (= 0.68.7)
217 | - React-jsiexecutor (= 0.68.7)
218 | - React-perflogger (= 0.68.7)
219 | - Yoga
220 | - React-Core/RCTLinkingHeaders (0.68.7):
221 | - glog
222 | - RCT-Folly (= 2021.06.28.00-v2)
223 | - React-Core/Default
224 | - React-cxxreact (= 0.68.7)
225 | - React-jsi (= 0.68.7)
226 | - React-jsiexecutor (= 0.68.7)
227 | - React-perflogger (= 0.68.7)
228 | - Yoga
229 | - React-Core/RCTNetworkHeaders (0.68.7):
230 | - glog
231 | - RCT-Folly (= 2021.06.28.00-v2)
232 | - React-Core/Default
233 | - React-cxxreact (= 0.68.7)
234 | - React-jsi (= 0.68.7)
235 | - React-jsiexecutor (= 0.68.7)
236 | - React-perflogger (= 0.68.7)
237 | - Yoga
238 | - React-Core/RCTSettingsHeaders (0.68.7):
239 | - glog
240 | - RCT-Folly (= 2021.06.28.00-v2)
241 | - React-Core/Default
242 | - React-cxxreact (= 0.68.7)
243 | - React-jsi (= 0.68.7)
244 | - React-jsiexecutor (= 0.68.7)
245 | - React-perflogger (= 0.68.7)
246 | - Yoga
247 | - React-Core/RCTTextHeaders (0.68.7):
248 | - glog
249 | - RCT-Folly (= 2021.06.28.00-v2)
250 | - React-Core/Default
251 | - React-cxxreact (= 0.68.7)
252 | - React-jsi (= 0.68.7)
253 | - React-jsiexecutor (= 0.68.7)
254 | - React-perflogger (= 0.68.7)
255 | - Yoga
256 | - React-Core/RCTVibrationHeaders (0.68.7):
257 | - glog
258 | - RCT-Folly (= 2021.06.28.00-v2)
259 | - React-Core/Default
260 | - React-cxxreact (= 0.68.7)
261 | - React-jsi (= 0.68.7)
262 | - React-jsiexecutor (= 0.68.7)
263 | - React-perflogger (= 0.68.7)
264 | - Yoga
265 | - React-Core/RCTWebSocket (0.68.7):
266 | - glog
267 | - RCT-Folly (= 2021.06.28.00-v2)
268 | - React-Core/Default (= 0.68.7)
269 | - React-cxxreact (= 0.68.7)
270 | - React-jsi (= 0.68.7)
271 | - React-jsiexecutor (= 0.68.7)
272 | - React-perflogger (= 0.68.7)
273 | - Yoga
274 | - React-CoreModules (0.68.7):
275 | - RCT-Folly (= 2021.06.28.00-v2)
276 | - RCTTypeSafety (= 0.68.7)
277 | - React-Codegen (= 0.68.7)
278 | - React-Core/CoreModulesHeaders (= 0.68.7)
279 | - React-jsi (= 0.68.7)
280 | - React-RCTImage (= 0.68.7)
281 | - ReactCommon/turbomodule/core (= 0.68.7)
282 | - React-cxxreact (0.68.7):
283 | - boost (= 1.76.0)
284 | - DoubleConversion
285 | - glog
286 | - RCT-Folly (= 2021.06.28.00-v2)
287 | - React-callinvoker (= 0.68.7)
288 | - React-jsi (= 0.68.7)
289 | - React-jsinspector (= 0.68.7)
290 | - React-logger (= 0.68.7)
291 | - React-perflogger (= 0.68.7)
292 | - React-runtimeexecutor (= 0.68.7)
293 | - React-hermes (0.68.7):
294 | - DoubleConversion
295 | - glog
296 | - hermes-engine
297 | - RCT-Folly (= 2021.06.28.00-v2)
298 | - RCT-Folly/Futures (= 2021.06.28.00-v2)
299 | - React-cxxreact (= 0.68.7)
300 | - React-jsi (= 0.68.7)
301 | - React-jsiexecutor (= 0.68.7)
302 | - React-jsinspector (= 0.68.7)
303 | - React-perflogger (= 0.68.7)
304 | - React-jsi (0.68.7):
305 | - boost (= 1.76.0)
306 | - DoubleConversion
307 | - glog
308 | - RCT-Folly (= 2021.06.28.00-v2)
309 | - React-jsi/Default (= 0.68.7)
310 | - React-jsi/Default (0.68.7):
311 | - boost (= 1.76.0)
312 | - DoubleConversion
313 | - glog
314 | - RCT-Folly (= 2021.06.28.00-v2)
315 | - React-jsiexecutor (0.68.7):
316 | - DoubleConversion
317 | - glog
318 | - RCT-Folly (= 2021.06.28.00-v2)
319 | - React-cxxreact (= 0.68.7)
320 | - React-jsi (= 0.68.7)
321 | - React-perflogger (= 0.68.7)
322 | - React-jsinspector (0.68.7)
323 | - React-logger (0.68.7):
324 | - glog
325 | - react-native-mmkv (2.4.3):
326 | - MMKV (>= 1.2.13)
327 | - React-Core
328 | - react-native-quick-sqlite (4.0.7):
329 | - React
330 | - React-callinvoker
331 | - React-Core
332 | - React-perflogger (0.68.7)
333 | - React-RCTActionSheet (0.68.7):
334 | - React-Core/RCTActionSheetHeaders (= 0.68.7)
335 | - React-RCTAnimation (0.68.7):
336 | - RCT-Folly (= 2021.06.28.00-v2)
337 | - RCTTypeSafety (= 0.68.7)
338 | - React-Codegen (= 0.68.7)
339 | - React-Core/RCTAnimationHeaders (= 0.68.7)
340 | - React-jsi (= 0.68.7)
341 | - ReactCommon/turbomodule/core (= 0.68.7)
342 | - React-RCTBlob (0.68.7):
343 | - RCT-Folly (= 2021.06.28.00-v2)
344 | - React-Codegen (= 0.68.7)
345 | - React-Core/RCTBlobHeaders (= 0.68.7)
346 | - React-Core/RCTWebSocket (= 0.68.7)
347 | - React-jsi (= 0.68.7)
348 | - React-RCTNetwork (= 0.68.7)
349 | - ReactCommon/turbomodule/core (= 0.68.7)
350 | - React-RCTImage (0.68.7):
351 | - RCT-Folly (= 2021.06.28.00-v2)
352 | - RCTTypeSafety (= 0.68.7)
353 | - React-Codegen (= 0.68.7)
354 | - React-Core/RCTImageHeaders (= 0.68.7)
355 | - React-jsi (= 0.68.7)
356 | - React-RCTNetwork (= 0.68.7)
357 | - ReactCommon/turbomodule/core (= 0.68.7)
358 | - React-RCTLinking (0.68.7):
359 | - React-Codegen (= 0.68.7)
360 | - React-Core/RCTLinkingHeaders (= 0.68.7)
361 | - React-jsi (= 0.68.7)
362 | - ReactCommon/turbomodule/core (= 0.68.7)
363 | - React-RCTNetwork (0.68.7):
364 | - RCT-Folly (= 2021.06.28.00-v2)
365 | - RCTTypeSafety (= 0.68.7)
366 | - React-Codegen (= 0.68.7)
367 | - React-Core/RCTNetworkHeaders (= 0.68.7)
368 | - React-jsi (= 0.68.7)
369 | - ReactCommon/turbomodule/core (= 0.68.7)
370 | - React-RCTSettings (0.68.7):
371 | - RCT-Folly (= 2021.06.28.00-v2)
372 | - RCTTypeSafety (= 0.68.7)
373 | - React-Codegen (= 0.68.7)
374 | - React-Core/RCTSettingsHeaders (= 0.68.7)
375 | - React-jsi (= 0.68.7)
376 | - ReactCommon/turbomodule/core (= 0.68.7)
377 | - React-RCTText (0.68.7):
378 | - React-Core/RCTTextHeaders (= 0.68.7)
379 | - React-RCTVibration (0.68.7):
380 | - RCT-Folly (= 2021.06.28.00-v2)
381 | - React-Codegen (= 0.68.7)
382 | - React-Core/RCTVibrationHeaders (= 0.68.7)
383 | - React-jsi (= 0.68.7)
384 | - ReactCommon/turbomodule/core (= 0.68.7)
385 | - React-runtimeexecutor (0.68.7):
386 | - React-jsi (= 0.68.7)
387 | - ReactCommon/turbomodule/core (0.68.7):
388 | - DoubleConversion
389 | - glog
390 | - RCT-Folly (= 2021.06.28.00-v2)
391 | - React-callinvoker (= 0.68.7)
392 | - React-Core (= 0.68.7)
393 | - React-cxxreact (= 0.68.7)
394 | - React-jsi (= 0.68.7)
395 | - React-logger (= 0.68.7)
396 | - React-perflogger (= 0.68.7)
397 | - RealmJS (11.0.0-rc.0):
398 | - React
399 | - RNCAsyncStorage (1.17.10):
400 | - React-Core
401 | - RNKeychain (8.1.2):
402 | - React-Core
403 | - simdjson (1.0.0)
404 | - SocketRocket (0.6.0)
405 | - WatermelonDB (0.24.0):
406 | - React
407 | - React-jsi
408 | - Yoga (1.14.0)
409 | - YogaKit (1.18.1):
410 | - Yoga (~> 1.14)
411 |
412 | DEPENDENCIES:
413 | - boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
414 | - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
415 | - EXApplication (from `../node_modules/expo-application/ios`)
416 | - EXConstants (from `../node_modules/expo-constants/ios`)
417 | - EXErrorRecovery (from `../node_modules/expo-error-recovery/ios`)
418 | - EXFileSystem (from `../node_modules/expo-file-system/ios`)
419 | - EXFont (from `../node_modules/expo-font/ios`)
420 | - Expo (from `../node_modules/expo/ios`)
421 | - ExpoKeepAwake (from `../node_modules/expo-keep-awake/ios`)
422 | - ExpoModulesCore (from `../node_modules/expo-modules-core/ios`)
423 | - EXSecureStore (from `../node_modules/expo-secure-store/ios`)
424 | - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
425 | - FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`)
426 | - Flipper (= 0.125.0)
427 | - Flipper-Boost-iOSX (= 1.76.0.1.11)
428 | - Flipper-DoubleConversion (= 3.2.0)
429 | - Flipper-Fmt (= 7.1.7)
430 | - Flipper-Folly (= 2.6.10)
431 | - Flipper-Glog (= 0.5.0.4)
432 | - Flipper-PeerTalk (= 0.0.4)
433 | - Flipper-RSocket (= 1.4.3)
434 | - FlipperKit (= 0.125.0)
435 | - FlipperKit/Core (= 0.125.0)
436 | - FlipperKit/CppBridge (= 0.125.0)
437 | - FlipperKit/FBCxxFollyDynamicConvert (= 0.125.0)
438 | - FlipperKit/FBDefines (= 0.125.0)
439 | - FlipperKit/FKPortForwarding (= 0.125.0)
440 | - FlipperKit/FlipperKitHighlightOverlay (= 0.125.0)
441 | - FlipperKit/FlipperKitLayoutPlugin (= 0.125.0)
442 | - FlipperKit/FlipperKitLayoutTextSearchable (= 0.125.0)
443 | - FlipperKit/FlipperKitNetworkPlugin (= 0.125.0)
444 | - FlipperKit/FlipperKitReactPlugin (= 0.125.0)
445 | - FlipperKit/FlipperKitUserDefaultsPlugin (= 0.125.0)
446 | - FlipperKit/SKIOSNetworkPlugin (= 0.125.0)
447 | - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
448 | - hermes-engine (~> 0.11.0)
449 | - libevent (~> 2.1.12)
450 | - OpenSSL-Universal (= 1.1.1100)
451 | - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
452 | - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
453 | - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
454 | - React (from `../node_modules/react-native/`)
455 | - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
456 | - React-Codegen (from `build/generated/ios`)
457 | - React-Core (from `../node_modules/react-native/`)
458 | - React-Core/DevSupport (from `../node_modules/react-native/`)
459 | - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
460 | - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
461 | - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
462 | - React-hermes (from `../node_modules/react-native/ReactCommon/hermes`)
463 | - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
464 | - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
465 | - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
466 | - React-logger (from `../node_modules/react-native/ReactCommon/logger`)
467 | - react-native-mmkv (from `../node_modules/react-native-mmkv`)
468 | - react-native-quick-sqlite (from `../node_modules/react-native-quick-sqlite`)
469 | - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
470 | - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
471 | - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
472 | - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
473 | - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
474 | - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
475 | - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
476 | - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
477 | - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
478 | - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
479 | - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
480 | - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
481 | - RealmJS (from `../node_modules/realm`)
482 | - "RNCAsyncStorage (from `../node_modules/@react-native-async-storage/async-storage`)"
483 | - RNKeychain (from `../node_modules/react-native-keychain`)
484 | - "simdjson (from `../node_modules/@nozbe/simdjson`)"
485 | - "WatermelonDB (from `../node_modules/@nozbe/watermelondb`)"
486 | - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
487 |
488 | SPEC REPOS:
489 | trunk:
490 | - CocoaAsyncSocket
491 | - Flipper
492 | - Flipper-Boost-iOSX
493 | - Flipper-DoubleConversion
494 | - Flipper-Fmt
495 | - Flipper-Folly
496 | - Flipper-Glog
497 | - Flipper-PeerTalk
498 | - Flipper-RSocket
499 | - FlipperKit
500 | - fmt
501 | - hermes-engine
502 | - libevent
503 | - MMKV
504 | - MMKVCore
505 | - OpenSSL-Universal
506 | - SocketRocket
507 | - YogaKit
508 |
509 | EXTERNAL SOURCES:
510 | boost:
511 | :podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
512 | DoubleConversion:
513 | :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
514 | EXApplication:
515 | :path: "../node_modules/expo-application/ios"
516 | EXConstants:
517 | :path: "../node_modules/expo-constants/ios"
518 | EXErrorRecovery:
519 | :path: "../node_modules/expo-error-recovery/ios"
520 | EXFileSystem:
521 | :path: "../node_modules/expo-file-system/ios"
522 | EXFont:
523 | :path: "../node_modules/expo-font/ios"
524 | Expo:
525 | :path: "../node_modules/expo/ios"
526 | ExpoKeepAwake:
527 | :path: "../node_modules/expo-keep-awake/ios"
528 | ExpoModulesCore:
529 | :path: "../node_modules/expo-modules-core/ios"
530 | EXSecureStore:
531 | :path: "../node_modules/expo-secure-store/ios"
532 | FBLazyVector:
533 | :path: "../node_modules/react-native/Libraries/FBLazyVector"
534 | FBReactNativeSpec:
535 | :path: "../node_modules/react-native/React/FBReactNativeSpec"
536 | glog:
537 | :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
538 | RCT-Folly:
539 | :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
540 | RCTRequired:
541 | :path: "../node_modules/react-native/Libraries/RCTRequired"
542 | RCTTypeSafety:
543 | :path: "../node_modules/react-native/Libraries/TypeSafety"
544 | React:
545 | :path: "../node_modules/react-native/"
546 | React-callinvoker:
547 | :path: "../node_modules/react-native/ReactCommon/callinvoker"
548 | React-Codegen:
549 | :path: build/generated/ios
550 | React-Core:
551 | :path: "../node_modules/react-native/"
552 | React-CoreModules:
553 | :path: "../node_modules/react-native/React/CoreModules"
554 | React-cxxreact:
555 | :path: "../node_modules/react-native/ReactCommon/cxxreact"
556 | React-hermes:
557 | :path: "../node_modules/react-native/ReactCommon/hermes"
558 | React-jsi:
559 | :path: "../node_modules/react-native/ReactCommon/jsi"
560 | React-jsiexecutor:
561 | :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
562 | React-jsinspector:
563 | :path: "../node_modules/react-native/ReactCommon/jsinspector"
564 | React-logger:
565 | :path: "../node_modules/react-native/ReactCommon/logger"
566 | react-native-mmkv:
567 | :path: "../node_modules/react-native-mmkv"
568 | react-native-quick-sqlite:
569 | :path: "../node_modules/react-native-quick-sqlite"
570 | React-perflogger:
571 | :path: "../node_modules/react-native/ReactCommon/reactperflogger"
572 | React-RCTActionSheet:
573 | :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
574 | React-RCTAnimation:
575 | :path: "../node_modules/react-native/Libraries/NativeAnimation"
576 | React-RCTBlob:
577 | :path: "../node_modules/react-native/Libraries/Blob"
578 | React-RCTImage:
579 | :path: "../node_modules/react-native/Libraries/Image"
580 | React-RCTLinking:
581 | :path: "../node_modules/react-native/Libraries/LinkingIOS"
582 | React-RCTNetwork:
583 | :path: "../node_modules/react-native/Libraries/Network"
584 | React-RCTSettings:
585 | :path: "../node_modules/react-native/Libraries/Settings"
586 | React-RCTText:
587 | :path: "../node_modules/react-native/Libraries/Text"
588 | React-RCTVibration:
589 | :path: "../node_modules/react-native/Libraries/Vibration"
590 | React-runtimeexecutor:
591 | :path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
592 | ReactCommon:
593 | :path: "../node_modules/react-native/ReactCommon"
594 | RealmJS:
595 | :path: "../node_modules/realm"
596 | RNCAsyncStorage:
597 | :path: "../node_modules/@react-native-async-storage/async-storage"
598 | RNKeychain:
599 | :path: "../node_modules/react-native-keychain"
600 | simdjson:
601 | :path: "../node_modules/@nozbe/simdjson"
602 | WatermelonDB:
603 | :path: "../node_modules/@nozbe/watermelondb"
604 | Yoga:
605 | :path: "../node_modules/react-native/ReactCommon/yoga"
606 |
607 | SPEC CHECKSUMS:
608 | boost: a7c83b31436843459a1961bfd74b96033dc77234
609 | CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99
610 | DoubleConversion: 831926d9b8bf8166fd87886c4abab286c2422662
611 | EXApplication: d6562af1204162e0ac46d341a7d4e5dc720b33de
612 | EXConstants: fdbe52259365b6a6faaa5e99a3b82cfa6bc2eb61
613 | EXErrorRecovery: 3ce46e5d42e53c0371ff048a7f0cbc959968ef4a
614 | EXFileSystem: 2aa2d9289f84bca9532b9ccbd81504fa31eb1ded
615 | EXFont: 04235cc22e6fef86028feb67db452978dc6f240f
616 | Expo: 1133eaf0e12dc265ac82a256f3815401b7570f96
617 | ExpoKeepAwake: c0c494b442ecd8122974c13b93ccfb57bd408e88
618 | ExpoModulesCore: e4278a668e8c13c0269ed8b8a4200989deea2973
619 | EXSecureStore: aaae919d83aec2faf031e99398807edac0313285
620 | FBLazyVector: 63b89dc85804d5817261f56dc4cfb43a9b6d57f5
621 | FBReactNativeSpec: 1fa200a9862d9369a53b6fddbbfcdc22bab24062
622 | Flipper: 26fc4b7382499f1281eb8cb921e5c3ad6de91fe0
623 | Flipper-Boost-iOSX: fd1e2b8cbef7e662a122412d7ac5f5bea715403c
624 | Flipper-DoubleConversion: 3d3d04a078d4f3a1b6c6916587f159dc11f232c4
625 | Flipper-Fmt: 60cbdd92fc254826e61d669a5d87ef7015396a9b
626 | Flipper-Folly: 584845625005ff068a6ebf41f857f468decd26b3
627 | Flipper-Glog: 87bc98ff48de90cb5b0b5114ed3da79d85ee2dd4
628 | Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9
629 | Flipper-RSocket: d9d9ade67cbecf6ac10730304bf5607266dd2541
630 | FlipperKit: cbdee19bdd4e7f05472a66ce290f1b729ba3cb86
631 | fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
632 | glog: 476ee3e89abb49e07f822b48323c51c57124b572
633 | hermes-engine: 84e3af1ea01dd7351ac5d8689cbbea1f9903ffc3
634 | libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
635 | MMKV: aac95d817a100479445633f2b3ed8961b4ac5043
636 | MMKVCore: 3388952ded307e41b3ed8a05892736a236ed1b8e
637 | OpenSSL-Universal: ebc357f1e6bc71fa463ccb2fe676756aff50e88c
638 | RCT-Folly: 4d8508a426467c48885f1151029bc15fa5d7b3b8
639 | RCTRequired: 530916cd48c5f7cf1fc16966ad5ea01638ca4799
640 | RCTTypeSafety: 5fb4cb3080efd582e5563c3e9a0e459fc51396c5
641 | React: 097b19fbc7aecb3bd23de54b462d2051d7ca8a38
642 | React-callinvoker: 4f118545cf884f0d8fce5bcd6e1847147ea9cc05
643 | React-Codegen: 24e59be16f8ed24b3e49e5ff0738dad91988c760
644 | React-Core: 0b464d0bec18dde90fa819c4be14dbcbdbf3077f
645 | React-CoreModules: 9bb7d5d5530d474cf8514e2dc8274af82a0bcf2f
646 | React-cxxreact: 027e192b8008ba5c200163ab6ded55d134c839d5
647 | React-hermes: 182741a40f11362a9bca11a65a96a7f0cbd74385
648 | React-jsi: 9019a0a0b42e9eac6c1e8c251a8dffe65055a2f1
649 | React-jsiexecutor: 7c0bd030a84f2ec446fb104b7735af2f5ed11eea
650 | React-jsinspector: cab4d37ebde480f84c79ac89568abbf76b916c3e
651 | React-logger: b75b80500ea80457b2cf169427d66de986cdcb29
652 | react-native-mmkv: 1265a348a4711097ba29c8bcefd5971f48220f2b
653 | react-native-quick-sqlite: 1207a3a3c184b059a78385d206f3e6e2436730f7
654 | React-perflogger: 44436b315d757100a53dfb1ab6b77c58cb646d7d
655 | React-RCTActionSheet: 1888a229684762c40cc96c7ff4716f809655dc09
656 | React-RCTAnimation: f05da175751867521d14b02ab4d3994a7b96f131
657 | React-RCTBlob: 792b966e48d599383d7a0753f75e8f2ff71be1ce
658 | React-RCTImage: 065cf66546f625295efd36bce3a1806a9b93399c
659 | React-RCTLinking: 8246290c072bd2d1f336792038d7ec4b91f9847a
660 | React-RCTNetwork: 6b2331c74684fae61b1ef38f4510fe5da3de3f3a
661 | React-RCTSettings: 2898e15b249b085f8b8c7401cfab71983a2d40da
662 | React-RCTText: bd1da1cd805e0765e3ba9089a9fd807d4860a901
663 | React-RCTVibration: 2a4bf853281d4981ab471509102300d3c9e6c693
664 | React-runtimeexecutor: 18932e685b4893be88d1efc18f5f8ca1c9cd39d8
665 | ReactCommon: 29bb6fad3242e30e9d049bc9d592736fa3da9e50
666 | RealmJS: 6ee99e016e85a71233f92c64b8255007810b7478
667 | RNCAsyncStorage: 0c357f3156fcb16c8589ede67cc036330b6698ca
668 | RNKeychain: a65256b6ca6ba6976132cc4124b238a5b13b3d9c
669 | simdjson: c96317b3a50dff3468a42f586ab7ed22c6ab2fd9
670 | SocketRocket: fccef3f9c5cedea1353a9ef6ada904fde10d6608
671 | WatermelonDB: e043b1a32ddc63864eb539b562e86ef80f8224cd
672 | Yoga: 0bc4b37c3b8a345336ff601e2cf7d9704bab7e93
673 | YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
674 |
675 | PODFILE CHECKSUM: a546172f35e4e9779e7a839472ae80c91443afab
676 |
677 | COCOAPODS: 1.12.1
678 |
--------------------------------------------------------------------------------
/app/ios/StorageBenchmark.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 54;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | 00E356F31AD99517003FC87E /* StorageBenchmarkTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* StorageBenchmarkTests.m */; };
11 | 0C80B921A6F3F58F76C31292 /* libPods-StorageBenchmark.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-StorageBenchmark.a */; };
12 | 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; };
13 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
14 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
15 | 2270DB9E17A43E810E32612E /* ExpoModulesProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 959B0B5FBC0D2FA35E3B6280 /* ExpoModulesProvider.swift */; };
16 | 7699B88040F8A987B510C191 /* libPods-StorageBenchmark-StorageBenchmarkTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 19F6CBCC0A4E27FBF8BF4A61 /* libPods-StorageBenchmark-StorageBenchmarkTests.a */; };
17 | 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
18 | B8BB2CA3282A780F00C755D5 /* File.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8BB2CA2282A780F00C755D5 /* File.swift */; };
19 | FE3549D4F1AD98C9ED024C70 /* ExpoModulesProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFAC3C520C11564F5E566F6D /* ExpoModulesProvider.swift */; };
20 | /* End PBXBuildFile section */
21 |
22 | /* Begin PBXContainerItemProxy section */
23 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
24 | isa = PBXContainerItemProxy;
25 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
26 | proxyType = 1;
27 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
28 | remoteInfo = StorageBenchmark;
29 | };
30 | /* End PBXContainerItemProxy section */
31 |
32 | /* Begin PBXFileReference section */
33 | 00E356EE1AD99517003FC87E /* StorageBenchmarkTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = StorageBenchmarkTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
34 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
35 | 00E356F21AD99517003FC87E /* StorageBenchmarkTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = StorageBenchmarkTests.m; sourceTree = ""; };
36 | 13B07F961A680F5B00A75B9A /* StorageBenchmark.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = StorageBenchmark.app; sourceTree = BUILT_PRODUCTS_DIR; };
37 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = StorageBenchmark/AppDelegate.h; sourceTree = ""; };
38 | 13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = StorageBenchmark/AppDelegate.mm; sourceTree = ""; };
39 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = StorageBenchmark/Images.xcassets; sourceTree = ""; };
40 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = StorageBenchmark/Info.plist; sourceTree = ""; };
41 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = StorageBenchmark/main.m; sourceTree = ""; };
42 | 19F6CBCC0A4E27FBF8BF4A61 /* libPods-StorageBenchmark-StorageBenchmarkTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-StorageBenchmark-StorageBenchmarkTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
43 | 3B4392A12AC88292D35C810B /* Pods-StorageBenchmark.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-StorageBenchmark.debug.xcconfig"; path = "Target Support Files/Pods-StorageBenchmark/Pods-StorageBenchmark.debug.xcconfig"; sourceTree = ""; };
44 | 5709B34CF0A7D63546082F79 /* Pods-StorageBenchmark.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-StorageBenchmark.release.xcconfig"; path = "Target Support Files/Pods-StorageBenchmark/Pods-StorageBenchmark.release.xcconfig"; sourceTree = ""; };
45 | 5B7EB9410499542E8C5724F5 /* Pods-StorageBenchmark-StorageBenchmarkTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-StorageBenchmark-StorageBenchmarkTests.debug.xcconfig"; path = "Target Support Files/Pods-StorageBenchmark-StorageBenchmarkTests/Pods-StorageBenchmark-StorageBenchmarkTests.debug.xcconfig"; sourceTree = ""; };
46 | 5DCACB8F33CDC322A6C60F78 /* libPods-StorageBenchmark.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-StorageBenchmark.a"; sourceTree = BUILT_PRODUCTS_DIR; };
47 | 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = StorageBenchmark/LaunchScreen.storyboard; sourceTree = ""; };
48 | 89C6BE57DB24E9ADA2F236DE /* Pods-StorageBenchmark-StorageBenchmarkTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-StorageBenchmark-StorageBenchmarkTests.release.xcconfig"; path = "Target Support Files/Pods-StorageBenchmark-StorageBenchmarkTests/Pods-StorageBenchmark-StorageBenchmarkTests.release.xcconfig"; sourceTree = ""; };
49 | 959B0B5FBC0D2FA35E3B6280 /* ExpoModulesProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExpoModulesProvider.swift; path = "Pods/Target Support Files/Pods-StorageBenchmark/ExpoModulesProvider.swift"; sourceTree = ""; };
50 | B8BB2CA1282A780D00C755D5 /* StorageBenchmark-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "StorageBenchmark-Bridging-Header.h"; sourceTree = ""; };
51 | B8BB2CA2282A780F00C755D5 /* File.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = File.swift; sourceTree = ""; };
52 | CFAC3C520C11564F5E566F6D /* ExpoModulesProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExpoModulesProvider.swift; path = "Pods/Target Support Files/Pods-StorageBenchmark-StorageBenchmarkTests/ExpoModulesProvider.swift"; sourceTree = ""; };
53 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
54 | /* End PBXFileReference section */
55 |
56 | /* Begin PBXFrameworksBuildPhase section */
57 | 00E356EB1AD99517003FC87E /* Frameworks */ = {
58 | isa = PBXFrameworksBuildPhase;
59 | buildActionMask = 2147483647;
60 | files = (
61 | 7699B88040F8A987B510C191 /* libPods-StorageBenchmark-StorageBenchmarkTests.a in Frameworks */,
62 | );
63 | runOnlyForDeploymentPostprocessing = 0;
64 | };
65 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
66 | isa = PBXFrameworksBuildPhase;
67 | buildActionMask = 2147483647;
68 | files = (
69 | 0C80B921A6F3F58F76C31292 /* libPods-StorageBenchmark.a in Frameworks */,
70 | );
71 | runOnlyForDeploymentPostprocessing = 0;
72 | };
73 | /* End PBXFrameworksBuildPhase section */
74 |
75 | /* Begin PBXGroup section */
76 | 00E356EF1AD99517003FC87E /* StorageBenchmarkTests */ = {
77 | isa = PBXGroup;
78 | children = (
79 | 00E356F21AD99517003FC87E /* StorageBenchmarkTests.m */,
80 | 00E356F01AD99517003FC87E /* Supporting Files */,
81 | );
82 | path = StorageBenchmarkTests;
83 | sourceTree = "";
84 | };
85 | 00E356F01AD99517003FC87E /* Supporting Files */ = {
86 | isa = PBXGroup;
87 | children = (
88 | 00E356F11AD99517003FC87E /* Info.plist */,
89 | );
90 | name = "Supporting Files";
91 | sourceTree = "";
92 | };
93 | 13B07FAE1A68108700A75B9A /* StorageBenchmark */ = {
94 | isa = PBXGroup;
95 | children = (
96 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
97 | 13B07FB01A68108700A75B9A /* AppDelegate.mm */,
98 | 13B07FB51A68108700A75B9A /* Images.xcassets */,
99 | 13B07FB61A68108700A75B9A /* Info.plist */,
100 | 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
101 | 13B07FB71A68108700A75B9A /* main.m */,
102 | B8BB2CA2282A780F00C755D5 /* File.swift */,
103 | B8BB2CA1282A780D00C755D5 /* StorageBenchmark-Bridging-Header.h */,
104 | );
105 | name = StorageBenchmark;
106 | sourceTree = "";
107 | };
108 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
109 | isa = PBXGroup;
110 | children = (
111 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
112 | 5DCACB8F33CDC322A6C60F78 /* libPods-StorageBenchmark.a */,
113 | 19F6CBCC0A4E27FBF8BF4A61 /* libPods-StorageBenchmark-StorageBenchmarkTests.a */,
114 | );
115 | name = Frameworks;
116 | sourceTree = "";
117 | };
118 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
119 | isa = PBXGroup;
120 | children = (
121 | );
122 | name = Libraries;
123 | sourceTree = "";
124 | };
125 | 83CBB9F61A601CBA00E9B192 = {
126 | isa = PBXGroup;
127 | children = (
128 | 13B07FAE1A68108700A75B9A /* StorageBenchmark */,
129 | 832341AE1AAA6A7D00B99B32 /* Libraries */,
130 | 00E356EF1AD99517003FC87E /* StorageBenchmarkTests */,
131 | 83CBBA001A601CBA00E9B192 /* Products */,
132 | 2D16E6871FA4F8E400B85C8A /* Frameworks */,
133 | BBD78D7AC51CEA395F1C20DB /* Pods */,
134 | 885DA241C85AA9DE3A64C8BB /* ExpoModulesProviders */,
135 | );
136 | indentWidth = 2;
137 | sourceTree = "";
138 | tabWidth = 2;
139 | usesTabs = 0;
140 | };
141 | 83CBBA001A601CBA00E9B192 /* Products */ = {
142 | isa = PBXGroup;
143 | children = (
144 | 13B07F961A680F5B00A75B9A /* StorageBenchmark.app */,
145 | 00E356EE1AD99517003FC87E /* StorageBenchmarkTests.xctest */,
146 | );
147 | name = Products;
148 | sourceTree = "";
149 | };
150 | 885DA241C85AA9DE3A64C8BB /* ExpoModulesProviders */ = {
151 | isa = PBXGroup;
152 | children = (
153 | 99E4689625F94F6A6BCF77DD /* StorageBenchmark */,
154 | C700E80A7FE6376C2A6D2BD5 /* StorageBenchmarkTests */,
155 | );
156 | name = ExpoModulesProviders;
157 | sourceTree = "";
158 | };
159 | 99E4689625F94F6A6BCF77DD /* StorageBenchmark */ = {
160 | isa = PBXGroup;
161 | children = (
162 | 959B0B5FBC0D2FA35E3B6280 /* ExpoModulesProvider.swift */,
163 | );
164 | name = StorageBenchmark;
165 | sourceTree = "";
166 | };
167 | BBD78D7AC51CEA395F1C20DB /* Pods */ = {
168 | isa = PBXGroup;
169 | children = (
170 | 3B4392A12AC88292D35C810B /* Pods-StorageBenchmark.debug.xcconfig */,
171 | 5709B34CF0A7D63546082F79 /* Pods-StorageBenchmark.release.xcconfig */,
172 | 5B7EB9410499542E8C5724F5 /* Pods-StorageBenchmark-StorageBenchmarkTests.debug.xcconfig */,
173 | 89C6BE57DB24E9ADA2F236DE /* Pods-StorageBenchmark-StorageBenchmarkTests.release.xcconfig */,
174 | );
175 | path = Pods;
176 | sourceTree = "";
177 | };
178 | C700E80A7FE6376C2A6D2BD5 /* StorageBenchmarkTests */ = {
179 | isa = PBXGroup;
180 | children = (
181 | CFAC3C520C11564F5E566F6D /* ExpoModulesProvider.swift */,
182 | );
183 | name = StorageBenchmarkTests;
184 | sourceTree = "";
185 | };
186 | /* End PBXGroup section */
187 |
188 | /* Begin PBXNativeTarget section */
189 | 00E356ED1AD99517003FC87E /* StorageBenchmarkTests */ = {
190 | isa = PBXNativeTarget;
191 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "StorageBenchmarkTests" */;
192 | buildPhases = (
193 | A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */,
194 | 00E356EA1AD99517003FC87E /* Sources */,
195 | 00E356EB1AD99517003FC87E /* Frameworks */,
196 | 00E356EC1AD99517003FC87E /* Resources */,
197 | C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */,
198 | F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */,
199 | );
200 | buildRules = (
201 | );
202 | dependencies = (
203 | 00E356F51AD99517003FC87E /* PBXTargetDependency */,
204 | );
205 | name = StorageBenchmarkTests;
206 | productName = StorageBenchmarkTests;
207 | productReference = 00E356EE1AD99517003FC87E /* StorageBenchmarkTests.xctest */;
208 | productType = "com.apple.product-type.bundle.unit-test";
209 | };
210 | 13B07F861A680F5B00A75B9A /* StorageBenchmark */ = {
211 | isa = PBXNativeTarget;
212 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "StorageBenchmark" */;
213 | buildPhases = (
214 | C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */,
215 | FD10A7F022414F080027D42C /* Start Packager */,
216 | 13B07F871A680F5B00A75B9A /* Sources */,
217 | 13B07F8C1A680F5B00A75B9A /* Frameworks */,
218 | 13B07F8E1A680F5B00A75B9A /* Resources */,
219 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
220 | 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */,
221 | E235C05ADACE081382539298 /* [CP] Copy Pods Resources */,
222 | );
223 | buildRules = (
224 | );
225 | dependencies = (
226 | );
227 | name = StorageBenchmark;
228 | productName = StorageBenchmark;
229 | productReference = 13B07F961A680F5B00A75B9A /* StorageBenchmark.app */;
230 | productType = "com.apple.product-type.application";
231 | };
232 | /* End PBXNativeTarget section */
233 |
234 | /* Begin PBXProject section */
235 | 83CBB9F71A601CBA00E9B192 /* Project object */ = {
236 | isa = PBXProject;
237 | attributes = {
238 | LastUpgradeCheck = 1210;
239 | TargetAttributes = {
240 | 00E356ED1AD99517003FC87E = {
241 | CreatedOnToolsVersion = 6.2;
242 | TestTargetID = 13B07F861A680F5B00A75B9A;
243 | };
244 | 13B07F861A680F5B00A75B9A = {
245 | LastSwiftMigration = 1330;
246 | };
247 | };
248 | };
249 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "StorageBenchmark" */;
250 | compatibilityVersion = "Xcode 12.0";
251 | developmentRegion = en;
252 | hasScannedForEncodings = 0;
253 | knownRegions = (
254 | en,
255 | Base,
256 | );
257 | mainGroup = 83CBB9F61A601CBA00E9B192;
258 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
259 | projectDirPath = "";
260 | projectRoot = "";
261 | targets = (
262 | 13B07F861A680F5B00A75B9A /* StorageBenchmark */,
263 | 00E356ED1AD99517003FC87E /* StorageBenchmarkTests */,
264 | );
265 | };
266 | /* End PBXProject section */
267 |
268 | /* Begin PBXResourcesBuildPhase section */
269 | 00E356EC1AD99517003FC87E /* Resources */ = {
270 | isa = PBXResourcesBuildPhase;
271 | buildActionMask = 2147483647;
272 | files = (
273 | );
274 | runOnlyForDeploymentPostprocessing = 0;
275 | };
276 | 13B07F8E1A680F5B00A75B9A /* Resources */ = {
277 | isa = PBXResourcesBuildPhase;
278 | buildActionMask = 2147483647;
279 | files = (
280 | 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
281 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
282 | );
283 | runOnlyForDeploymentPostprocessing = 0;
284 | };
285 | /* End PBXResourcesBuildPhase section */
286 |
287 | /* Begin PBXShellScriptBuildPhase section */
288 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
289 | isa = PBXShellScriptBuildPhase;
290 | buildActionMask = 2147483647;
291 | files = (
292 | );
293 | inputPaths = (
294 | );
295 | name = "Bundle React Native code and images";
296 | outputPaths = (
297 | );
298 | runOnlyForDeploymentPostprocessing = 0;
299 | shellPath = /bin/sh;
300 | shellScript = "set -e\n\nexport NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n";
301 | };
302 | 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */ = {
303 | isa = PBXShellScriptBuildPhase;
304 | buildActionMask = 2147483647;
305 | files = (
306 | );
307 | inputFileListPaths = (
308 | "${PODS_ROOT}/Target Support Files/Pods-StorageBenchmark/Pods-StorageBenchmark-frameworks-${CONFIGURATION}-input-files.xcfilelist",
309 | );
310 | name = "[CP] Embed Pods Frameworks";
311 | outputFileListPaths = (
312 | "${PODS_ROOT}/Target Support Files/Pods-StorageBenchmark/Pods-StorageBenchmark-frameworks-${CONFIGURATION}-output-files.xcfilelist",
313 | );
314 | runOnlyForDeploymentPostprocessing = 0;
315 | shellPath = /bin/sh;
316 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-StorageBenchmark/Pods-StorageBenchmark-frameworks.sh\"\n";
317 | showEnvVarsInLog = 0;
318 | };
319 | A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */ = {
320 | isa = PBXShellScriptBuildPhase;
321 | buildActionMask = 2147483647;
322 | files = (
323 | );
324 | inputFileListPaths = (
325 | );
326 | inputPaths = (
327 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
328 | "${PODS_ROOT}/Manifest.lock",
329 | );
330 | name = "[CP] Check Pods Manifest.lock";
331 | outputFileListPaths = (
332 | );
333 | outputPaths = (
334 | "$(DERIVED_FILE_DIR)/Pods-StorageBenchmark-StorageBenchmarkTests-checkManifestLockResult.txt",
335 | );
336 | runOnlyForDeploymentPostprocessing = 0;
337 | shellPath = /bin/sh;
338 | 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";
339 | showEnvVarsInLog = 0;
340 | };
341 | C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */ = {
342 | isa = PBXShellScriptBuildPhase;
343 | buildActionMask = 2147483647;
344 | files = (
345 | );
346 | inputFileListPaths = (
347 | );
348 | inputPaths = (
349 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
350 | "${PODS_ROOT}/Manifest.lock",
351 | );
352 | name = "[CP] Check Pods Manifest.lock";
353 | outputFileListPaths = (
354 | );
355 | outputPaths = (
356 | "$(DERIVED_FILE_DIR)/Pods-StorageBenchmark-checkManifestLockResult.txt",
357 | );
358 | runOnlyForDeploymentPostprocessing = 0;
359 | shellPath = /bin/sh;
360 | 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";
361 | showEnvVarsInLog = 0;
362 | };
363 | C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */ = {
364 | isa = PBXShellScriptBuildPhase;
365 | buildActionMask = 2147483647;
366 | files = (
367 | );
368 | inputFileListPaths = (
369 | "${PODS_ROOT}/Target Support Files/Pods-StorageBenchmark-StorageBenchmarkTests/Pods-StorageBenchmark-StorageBenchmarkTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
370 | );
371 | name = "[CP] Embed Pods Frameworks";
372 | outputFileListPaths = (
373 | "${PODS_ROOT}/Target Support Files/Pods-StorageBenchmark-StorageBenchmarkTests/Pods-StorageBenchmark-StorageBenchmarkTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
374 | );
375 | runOnlyForDeploymentPostprocessing = 0;
376 | shellPath = /bin/sh;
377 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-StorageBenchmark-StorageBenchmarkTests/Pods-StorageBenchmark-StorageBenchmarkTests-frameworks.sh\"\n";
378 | showEnvVarsInLog = 0;
379 | };
380 | E235C05ADACE081382539298 /* [CP] Copy Pods Resources */ = {
381 | isa = PBXShellScriptBuildPhase;
382 | buildActionMask = 2147483647;
383 | files = (
384 | );
385 | inputFileListPaths = (
386 | "${PODS_ROOT}/Target Support Files/Pods-StorageBenchmark/Pods-StorageBenchmark-resources-${CONFIGURATION}-input-files.xcfilelist",
387 | );
388 | name = "[CP] Copy Pods Resources";
389 | outputFileListPaths = (
390 | "${PODS_ROOT}/Target Support Files/Pods-StorageBenchmark/Pods-StorageBenchmark-resources-${CONFIGURATION}-output-files.xcfilelist",
391 | );
392 | runOnlyForDeploymentPostprocessing = 0;
393 | shellPath = /bin/sh;
394 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-StorageBenchmark/Pods-StorageBenchmark-resources.sh\"\n";
395 | showEnvVarsInLog = 0;
396 | };
397 | F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */ = {
398 | isa = PBXShellScriptBuildPhase;
399 | buildActionMask = 2147483647;
400 | files = (
401 | );
402 | inputFileListPaths = (
403 | "${PODS_ROOT}/Target Support Files/Pods-StorageBenchmark-StorageBenchmarkTests/Pods-StorageBenchmark-StorageBenchmarkTests-resources-${CONFIGURATION}-input-files.xcfilelist",
404 | );
405 | name = "[CP] Copy Pods Resources";
406 | outputFileListPaths = (
407 | "${PODS_ROOT}/Target Support Files/Pods-StorageBenchmark-StorageBenchmarkTests/Pods-StorageBenchmark-StorageBenchmarkTests-resources-${CONFIGURATION}-output-files.xcfilelist",
408 | );
409 | runOnlyForDeploymentPostprocessing = 0;
410 | shellPath = /bin/sh;
411 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-StorageBenchmark-StorageBenchmarkTests/Pods-StorageBenchmark-StorageBenchmarkTests-resources.sh\"\n";
412 | showEnvVarsInLog = 0;
413 | };
414 | FD10A7F022414F080027D42C /* Start Packager */ = {
415 | isa = PBXShellScriptBuildPhase;
416 | buildActionMask = 2147483647;
417 | files = (
418 | );
419 | inputFileListPaths = (
420 | );
421 | inputPaths = (
422 | );
423 | name = "Start Packager";
424 | outputFileListPaths = (
425 | );
426 | outputPaths = (
427 | );
428 | runOnlyForDeploymentPostprocessing = 0;
429 | shellPath = /bin/sh;
430 | shellScript = "export RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > \"${SRCROOT}/../node_modules/react-native/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 \"$SRCROOT/../node_modules/react-native/scripts/launchPackager.command\" || echo \"Can't start packager automatically\"\n fi\nfi\n";
431 | showEnvVarsInLog = 0;
432 | };
433 | /* End PBXShellScriptBuildPhase section */
434 |
435 | /* Begin PBXSourcesBuildPhase section */
436 | 00E356EA1AD99517003FC87E /* Sources */ = {
437 | isa = PBXSourcesBuildPhase;
438 | buildActionMask = 2147483647;
439 | files = (
440 | 00E356F31AD99517003FC87E /* StorageBenchmarkTests.m in Sources */,
441 | FE3549D4F1AD98C9ED024C70 /* ExpoModulesProvider.swift in Sources */,
442 | );
443 | runOnlyForDeploymentPostprocessing = 0;
444 | };
445 | 13B07F871A680F5B00A75B9A /* Sources */ = {
446 | isa = PBXSourcesBuildPhase;
447 | buildActionMask = 2147483647;
448 | files = (
449 | 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */,
450 | B8BB2CA3282A780F00C755D5 /* File.swift in Sources */,
451 | 13B07FC11A68108700A75B9A /* main.m in Sources */,
452 | 2270DB9E17A43E810E32612E /* ExpoModulesProvider.swift in Sources */,
453 | );
454 | runOnlyForDeploymentPostprocessing = 0;
455 | };
456 | /* End PBXSourcesBuildPhase section */
457 |
458 | /* Begin PBXTargetDependency section */
459 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
460 | isa = PBXTargetDependency;
461 | target = 13B07F861A680F5B00A75B9A /* StorageBenchmark */;
462 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
463 | };
464 | /* End PBXTargetDependency section */
465 |
466 | /* Begin XCBuildConfiguration section */
467 | 00E356F61AD99517003FC87E /* Debug */ = {
468 | isa = XCBuildConfiguration;
469 | baseConfigurationReference = 5B7EB9410499542E8C5724F5 /* Pods-StorageBenchmark-StorageBenchmarkTests.debug.xcconfig */;
470 | buildSettings = {
471 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
472 | BUNDLE_LOADER = "$(TEST_HOST)";
473 | GCC_PREPROCESSOR_DEFINITIONS = (
474 | "DEBUG=1",
475 | "$(inherited)",
476 | );
477 | INFOPLIST_FILE = StorageBenchmarkTests/Info.plist;
478 | IPHONEOS_DEPLOYMENT_TARGET = 12.0;
479 | LD_RUNPATH_SEARCH_PATHS = (
480 | "$(inherited)",
481 | "@executable_path/Frameworks",
482 | "@loader_path/Frameworks",
483 | );
484 | OTHER_LDFLAGS = (
485 | "-ObjC",
486 | "-lc++",
487 | "$(inherited)",
488 | );
489 | OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_DEBUG";
490 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
491 | PRODUCT_NAME = "$(TARGET_NAME)";
492 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/StorageBenchmark.app/StorageBenchmark";
493 | };
494 | name = Debug;
495 | };
496 | 00E356F71AD99517003FC87E /* Release */ = {
497 | isa = XCBuildConfiguration;
498 | baseConfigurationReference = 89C6BE57DB24E9ADA2F236DE /* Pods-StorageBenchmark-StorageBenchmarkTests.release.xcconfig */;
499 | buildSettings = {
500 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
501 | BUNDLE_LOADER = "$(TEST_HOST)";
502 | COPY_PHASE_STRIP = NO;
503 | INFOPLIST_FILE = StorageBenchmarkTests/Info.plist;
504 | IPHONEOS_DEPLOYMENT_TARGET = 12.0;
505 | LD_RUNPATH_SEARCH_PATHS = (
506 | "$(inherited)",
507 | "@executable_path/Frameworks",
508 | "@loader_path/Frameworks",
509 | );
510 | OTHER_LDFLAGS = (
511 | "-ObjC",
512 | "-lc++",
513 | "$(inherited)",
514 | );
515 | OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_RELEASE";
516 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
517 | PRODUCT_NAME = "$(TARGET_NAME)";
518 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/StorageBenchmark.app/StorageBenchmark";
519 | };
520 | name = Release;
521 | };
522 | 13B07F941A680F5B00A75B9A /* Debug */ = {
523 | isa = XCBuildConfiguration;
524 | baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-StorageBenchmark.debug.xcconfig */;
525 | buildSettings = {
526 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
527 | CLANG_ENABLE_MODULES = YES;
528 | CURRENT_PROJECT_VERSION = 1;
529 | DEVELOPMENT_TEAM = CJW62Q77E7;
530 | ENABLE_BITCODE = NO;
531 | INFOPLIST_FILE = StorageBenchmark/Info.plist;
532 | LD_RUNPATH_SEARCH_PATHS = (
533 | "$(inherited)",
534 | "@executable_path/Frameworks",
535 | );
536 | OTHER_LDFLAGS = (
537 | "$(inherited)",
538 | "-ObjC",
539 | "-lc++",
540 | );
541 | OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_DEBUG";
542 | PRODUCT_BUNDLE_IDENTIFIER = "com.mrousavy.storage-benchmark";
543 | PRODUCT_NAME = StorageBenchmark;
544 | SWIFT_OBJC_BRIDGING_HEADER = "StorageBenchmark-Bridging-Header.h";
545 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
546 | SWIFT_VERSION = 5.0;
547 | VERSIONING_SYSTEM = "apple-generic";
548 | };
549 | name = Debug;
550 | };
551 | 13B07F951A680F5B00A75B9A /* Release */ = {
552 | isa = XCBuildConfiguration;
553 | baseConfigurationReference = 5709B34CF0A7D63546082F79 /* Pods-StorageBenchmark.release.xcconfig */;
554 | buildSettings = {
555 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
556 | CLANG_ENABLE_MODULES = YES;
557 | CURRENT_PROJECT_VERSION = 1;
558 | DEVELOPMENT_TEAM = CJW62Q77E7;
559 | INFOPLIST_FILE = StorageBenchmark/Info.plist;
560 | LD_RUNPATH_SEARCH_PATHS = (
561 | "$(inherited)",
562 | "@executable_path/Frameworks",
563 | );
564 | OTHER_LDFLAGS = (
565 | "$(inherited)",
566 | "-ObjC",
567 | "-lc++",
568 | );
569 | OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_RELEASE";
570 | PRODUCT_BUNDLE_IDENTIFIER = "com.mrousavy.storage-benchmark";
571 | PRODUCT_NAME = StorageBenchmark;
572 | SWIFT_OBJC_BRIDGING_HEADER = "StorageBenchmark-Bridging-Header.h";
573 | SWIFT_VERSION = 5.0;
574 | VERSIONING_SYSTEM = "apple-generic";
575 | };
576 | name = Release;
577 | };
578 | 83CBBA201A601CBA00E9B192 /* Debug */ = {
579 | isa = XCBuildConfiguration;
580 | buildSettings = {
581 | ALWAYS_SEARCH_USER_PATHS = NO;
582 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
583 | CLANG_CXX_LANGUAGE_STANDARD = "c++17";
584 | CLANG_CXX_LIBRARY = "libc++";
585 | CLANG_ENABLE_MODULES = YES;
586 | CLANG_ENABLE_OBJC_ARC = YES;
587 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
588 | CLANG_WARN_BOOL_CONVERSION = YES;
589 | CLANG_WARN_COMMA = YES;
590 | CLANG_WARN_CONSTANT_CONVERSION = YES;
591 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
592 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
593 | CLANG_WARN_EMPTY_BODY = YES;
594 | CLANG_WARN_ENUM_CONVERSION = YES;
595 | CLANG_WARN_INFINITE_RECURSION = YES;
596 | CLANG_WARN_INT_CONVERSION = YES;
597 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
598 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
599 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
600 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
601 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
602 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
603 | CLANG_WARN_STRICT_PROTOTYPES = YES;
604 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
605 | CLANG_WARN_UNREACHABLE_CODE = YES;
606 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
607 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
608 | COPY_PHASE_STRIP = NO;
609 | ENABLE_STRICT_OBJC_MSGSEND = YES;
610 | ENABLE_TESTABILITY = YES;
611 | "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386;
612 | GCC_C_LANGUAGE_STANDARD = gnu99;
613 | GCC_DYNAMIC_NO_PIC = NO;
614 | GCC_NO_COMMON_BLOCKS = YES;
615 | GCC_OPTIMIZATION_LEVEL = 0;
616 | GCC_PREPROCESSOR_DEFINITIONS = (
617 | "DEBUG=1",
618 | "$(inherited)",
619 | );
620 | GCC_SYMBOLS_PRIVATE_EXTERN = NO;
621 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
622 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
623 | GCC_WARN_UNDECLARED_SELECTOR = YES;
624 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
625 | GCC_WARN_UNUSED_FUNCTION = YES;
626 | GCC_WARN_UNUSED_VARIABLE = YES;
627 | IPHONEOS_DEPLOYMENT_TARGET = 12.0;
628 | LD_RUNPATH_SEARCH_PATHS = (
629 | /usr/lib/swift,
630 | "$(inherited)",
631 | );
632 | LIBRARY_SEARCH_PATHS = (
633 | "\"$(SDKROOT)/usr/lib/swift\"",
634 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
635 | "\"$(inherited)\"",
636 | );
637 | MTL_ENABLE_DEBUG_INFO = YES;
638 | ONLY_ACTIVE_ARCH = YES;
639 | OTHER_CPLUSPLUSFLAGS = (
640 | "$(OTHER_CFLAGS)",
641 | "-DFOLLY_NO_CONFIG",
642 | "-DFOLLY_MOBILE=1",
643 | "-DFOLLY_USE_LIBCPP=1",
644 | );
645 | SDKROOT = iphoneos;
646 | };
647 | name = Debug;
648 | };
649 | 83CBBA211A601CBA00E9B192 /* Release */ = {
650 | isa = XCBuildConfiguration;
651 | buildSettings = {
652 | ALWAYS_SEARCH_USER_PATHS = NO;
653 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
654 | CLANG_CXX_LANGUAGE_STANDARD = "c++17";
655 | CLANG_CXX_LIBRARY = "libc++";
656 | CLANG_ENABLE_MODULES = YES;
657 | CLANG_ENABLE_OBJC_ARC = YES;
658 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
659 | CLANG_WARN_BOOL_CONVERSION = YES;
660 | CLANG_WARN_COMMA = YES;
661 | CLANG_WARN_CONSTANT_CONVERSION = YES;
662 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
663 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
664 | CLANG_WARN_EMPTY_BODY = YES;
665 | CLANG_WARN_ENUM_CONVERSION = YES;
666 | CLANG_WARN_INFINITE_RECURSION = YES;
667 | CLANG_WARN_INT_CONVERSION = YES;
668 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
669 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
670 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
671 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
672 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
673 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
674 | CLANG_WARN_STRICT_PROTOTYPES = YES;
675 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
676 | CLANG_WARN_UNREACHABLE_CODE = YES;
677 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
678 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
679 | COPY_PHASE_STRIP = YES;
680 | ENABLE_NS_ASSERTIONS = NO;
681 | ENABLE_STRICT_OBJC_MSGSEND = YES;
682 | "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386;
683 | GCC_C_LANGUAGE_STANDARD = gnu99;
684 | GCC_NO_COMMON_BLOCKS = YES;
685 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
686 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
687 | GCC_WARN_UNDECLARED_SELECTOR = YES;
688 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
689 | GCC_WARN_UNUSED_FUNCTION = YES;
690 | GCC_WARN_UNUSED_VARIABLE = YES;
691 | IPHONEOS_DEPLOYMENT_TARGET = 12.0;
692 | LD_RUNPATH_SEARCH_PATHS = (
693 | /usr/lib/swift,
694 | "$(inherited)",
695 | );
696 | LIBRARY_SEARCH_PATHS = (
697 | "\"$(SDKROOT)/usr/lib/swift\"",
698 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
699 | "\"$(inherited)\"",
700 | );
701 | MTL_ENABLE_DEBUG_INFO = NO;
702 | OTHER_CPLUSPLUSFLAGS = (
703 | "$(OTHER_CFLAGS)",
704 | "-DFOLLY_NO_CONFIG",
705 | "-DFOLLY_MOBILE=1",
706 | "-DFOLLY_USE_LIBCPP=1",
707 | );
708 | SDKROOT = iphoneos;
709 | VALIDATE_PRODUCT = YES;
710 | };
711 | name = Release;
712 | };
713 | /* End XCBuildConfiguration section */
714 |
715 | /* Begin XCConfigurationList section */
716 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "StorageBenchmarkTests" */ = {
717 | isa = XCConfigurationList;
718 | buildConfigurations = (
719 | 00E356F61AD99517003FC87E /* Debug */,
720 | 00E356F71AD99517003FC87E /* Release */,
721 | );
722 | defaultConfigurationIsVisible = 0;
723 | defaultConfigurationName = Release;
724 | };
725 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "StorageBenchmark" */ = {
726 | isa = XCConfigurationList;
727 | buildConfigurations = (
728 | 13B07F941A680F5B00A75B9A /* Debug */,
729 | 13B07F951A680F5B00A75B9A /* Release */,
730 | );
731 | defaultConfigurationIsVisible = 0;
732 | defaultConfigurationName = Release;
733 | };
734 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "StorageBenchmark" */ = {
735 | isa = XCConfigurationList;
736 | buildConfigurations = (
737 | 83CBBA201A601CBA00E9B192 /* Debug */,
738 | 83CBBA211A601CBA00E9B192 /* Release */,
739 | );
740 | defaultConfigurationIsVisible = 0;
741 | defaultConfigurationName = Release;
742 | };
743 | /* End XCConfigurationList section */
744 | };
745 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
746 | }
747 |
--------------------------------------------------------------------------------