tsrntemp 1.1.5 → 1.2.1
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +51 -48
- package/package.json +33 -33
- package/template/.eslintrc.js +1 -1
- package/template/.prettierrc.js +7 -15
- package/template/.watchmanconfig +1 -1
- package/template/App.tsx +5 -8
- package/template/Gemfile +9 -6
- package/template/README.md +51 -0
- package/template/README_zh-CN.md +51 -0
- package/template/__tests__/{App-test.tsx → App.test.tsx} +3 -0
- package/template/android/app/build.gradle +2 -49
- package/template/android/app/src/main/java/com/template/MainActivity.java +39 -35
- package/template/android/app/src/main/res/drawable/rn_edit_text_material.xml +1 -1
- package/template/android/build.gradle +1 -1
- package/template/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/template/android/gradle/wrapper/gradle-wrapper.properties +2 -1
- package/template/android/gradle.properties +1 -1
- package/template/android/gradlew +244 -234
- package/template/android/gradlew.bat +9 -6
- package/template/android/settings.gradle +1 -1
- package/template/app.json +1 -1
- package/template/babel.config.js +9 -18
- package/template/global.d.ts +3 -0
- package/template/index.js +2 -3
- package/template/ios/Podfile +8 -6
- package/template/ios/Podfile.lock +754 -652
- package/template/ios/build/generated/ios/FBReactNativeSpec/FBReactNativeSpec-generated.mm +2008 -0
- package/template/ios/build/generated/ios/FBReactNativeSpec/FBReactNativeSpec.h +2448 -0
- package/template/ios/build/generated/ios/FBReactNativeSpecJSI-generated.cpp +1523 -0
- package/template/ios/build/generated/ios/FBReactNativeSpecJSI.h +5509 -0
- package/template/ios/build/generated/ios/React-Codegen.podspec.json +1 -0
- package/template/ios/template/AppDelegate.mm +0 -10
- package/template/ios/template.xcodeproj/project.pbxproj +719 -704
- package/template/ios/template.xcworkspace/contents.xcworkspacedata +10 -10
- package/template/jest.config.js +3 -0
- package/template/metro.config.js +7 -13
- package/template/package.json +53 -50
- package/template/src/config/color.ts +415 -415
- package/template/src/config/index.ts +2 -0
- package/template/src/config/routesConfig.ts +10 -0
- package/template/src/pages/Home/index.tsx +25 -28
- package/template/src/pages/Login/index.tsx +50 -58
- package/template/src/pages/Mine/index.tsx +30 -32
- package/template/src/route/BottomTab.tsx +44 -64
- package/template/src/route/RouterContainer.tsx +81 -0
- package/template/src/serviceType/LoginUserInfo.ts +19 -0
- package/template/src/serviceType/index.ts +1 -0
- package/template/src/types/index.ts +1 -0
- package/template/src/types/routes.ts +61 -0
- package/template/src/utils/index.ts +2 -0
- package/template/src/utils/request.ts +28 -28
- package/template/src/utils/storage.ts +3 -67
- package/template/tsconfig.json +5 -70
- package/template/yarn.lock +7173 -7462
- package/template.config.js +3 -3
- package/template/.node-version +0 -1
- package/template/Gemfile.lock +0 -98
- package/template/android/app/build/generated/res/resValues/debug/values/gradleResValues.xml +0 -11
- package/template/android/app/build/generated/rncli/src/main/java/com/facebook/react/PackageList.java +0 -73
- package/template/android/app/build/generated/source/buildConfig/debug/com/template/BuildConfig.java +0 -16
- package/template/android/app/build/intermediates/annotation_processor_list/debug/annotationProcessors.json +0 -1
- package/template/android/app/build/intermediates/apk_ide_redirect_file/debug/redirect.txt +0 -2
- package/template/android/app/build/intermediates/app_metadata/debug/app-metadata.properties +0 -2
- package/template/android/app/build/intermediates/compatible_screen_manifest/debug/output-metadata.json +0 -10
- package/template/android/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debug/R.jar +0 -0
- package/template/android/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_0/graph.bin +0 -0
- package/template/android/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_1/graph.bin +0 -0
- package/template/android/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_2/graph.bin +0 -0
- package/template/android/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_3/graph.bin +0 -0
- package/template/android/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_005bf11066d5bb4c531255a85c0bffe9272f1b602d38ade441e0ec09dfb504c7_bucket_0/graph.bin +0 -0
- package/template/android/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_005bf11066d5bb4c531255a85c0bffe9272f1b602d38ade441e0ec09dfb504c7_bucket_1/graph.bin +0 -0
- package/template/android/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_005bf11066d5bb4c531255a85c0bffe9272f1b602d38ade441e0ec09dfb504c7_bucket_2/graph.bin +0 -0
- package/template/android/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_005bf11066d5bb4c531255a85c0bffe9272f1b602d38ade441e0ec09dfb504c7_bucket_3/graph.bin +0 -0
- package/template/android/app/build/intermediates/dex/debug/mergeExtDexDebug/classes.dex +0 -0
- package/template/android/app/build/intermediates/dex/debug/mergeLibDexDebug/0/classes.dex +0 -0
- package/template/android/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex +0 -0
- package/template/android/app/build/intermediates/dex/debug/mergeProjectDexDebug/1/classes.dex +0 -0
- package/template/android/app/build/intermediates/dex/debug/mergeProjectDexDebug/14/classes.dex +0 -0
- package/template/android/app/build/intermediates/dex_archive_input_jar_hashes/debug/out +0 -0
- package/template/android/app/build/intermediates/dex_number_of_buckets_file/debug/out +0 -1
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/compile-file-map.properties +0 -12
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values/values.xml +0 -7117
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-af/values-af.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-am/values-am.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ar/values-ar.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-as/values-as.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-az/values-az.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-be/values-be.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-bg/values-bg.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-bn/values-bn.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-bs/values-bs.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ca/values-ca.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-cs/values-cs.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-da/values-da.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-de/values-de.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-el/values-el.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rAU/values-en-rAU.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rCA/values-en-rCA.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rXC/values-en-rXC.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-es/values-es.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-et/values-et.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-eu/values-eu.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fa/values-fa.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fi/values-fi.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fr/values-fr.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-gl/values-gl.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-gu/values-gu.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-h360dp-land-v13/values-h360dp-land-v13.xml +0 -12
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-h480dp-land-v13/values-h480dp-land-v13.xml +0 -12
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml +0 -4
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml +0 -8
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hi/values-hi.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hr/values-hr.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hu/values-hu.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hy/values-hy.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-in/values-in.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-is/values-is.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-it/values-it.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-iw/values-iw.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ja/values-ja.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ka/values-ka.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-kk/values-kk.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-km/values-km.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-kn/values-kn.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ko/values-ko.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ky/values-ky.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-land/values-land.xml +0 -39
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml +0 -14
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ldltr-v21/values-ldltr-v21.xml +0 -4
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-lo/values-lo.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-lt/values-lt.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-lv/values-lv.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-mk/values-mk.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ml/values-ml.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-mn/values-mn.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-mr/values-mr.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ms/values-ms.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-my/values-my.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-nb/values-nb.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ne/values-ne.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-night-v8/values-night-v8.xml +0 -34
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-nl/values-nl.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-or/values-or.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-pa/values-pa.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-pl/values-pl.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-port/values-port.xml +0 -4
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-pt/values-pt.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-pt-rBR/values-pt-rBR.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-pt-rPT/values-pt-rPT.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ro/values-ro.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ru/values-ru.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-si/values-si.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sk/values-sk.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sl/values-sl.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-small-v4/values-small-v4.xml +0 -7
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sq/values-sq.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sr/values-sr.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sv/values-sv.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sw/values-sw.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml +0 -27
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ta/values-ta.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-te/values-te.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-th/values-th.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-tl/values-tl.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-tr/values-tr.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-uk/values-uk.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ur/values-ur.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-uz/values-uz.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v16/values-v16.xml +0 -8
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v17/values-v17.xml +0 -62
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v18/values-v18.xml +0 -4
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v21/values-v21.xml +0 -364
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v22/values-v22.xml +0 -15
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v23/values-v23.xml +0 -62
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v24/values-v24.xml +0 -5
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v25/values-v25.xml +0 -9
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v26/values-v26.xml +0 -18
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v28/values-v28.xml +0 -21
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-vi/values-vi.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w360dp-port-v13/values-w360dp-port-v13.xml +0 -11
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w480dp-port-v13/values-w480dp-port-v13.xml +0 -11
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-watch-v20/values-watch-v20.xml +0 -12
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-watch-v21/values-watch-v21.xml +0 -15
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml +0 -9
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zu/values-zu.xml +0 -32
- package/template/android/app/build/intermediates/incremental/debug/mergeDebugResources/merger.xml +0 -8309
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/merge-state +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/+YyM3jecisHzlBbNeOwVvTm15Dg= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/0GseZtXHCVfD8Xqv_0IMfwE+jmM= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/0UM9GfsLlzInTYm0yrOwUwyHTTc= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/2mZ99Z7VxNYKMACeFx99n+2yrjI= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/43khoneyyTninN_2dl3rfyhSnz4= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/4T9sLg9f219sHgAdLqJHH6ncTSM= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/5nI5KwPGUXYy6gtGnklCJXgW+3Y= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/60FMyyutNar5Y6JoD3LEiz79BCg= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/7BoRPjABxaieeaxuQrt_QNleWoA= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/7OhRsGhNQUANolbspGhRO5B7+jQ= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/7l90lwESEs61vTv6UK1W+FTnnCM= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/8HckAMa3FtHv8Qtai1RAJH_BegQ= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/8bvy588yoIdRxQAK3kmp9UrgIyw= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/8uLkxauGPJuQtlsoKXakysuyZaM= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/9OMQOia75HspmcL2pLv5cv8uXlE= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/AbEhpeZ24OfqVaXwo0PvMa8eubc= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/D0mV2LDMJpwdHW0WJyp1Gr32bKc= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/F9db5z8xshu6fEF5TR73_nqAYnI= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/FkV1Wf6azVtTTRjUfdjPquAJVOM= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ISOw4r2tCPPauAqnBvfDpVac0VA= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Im0LHx6KYJuU2pJdOPcHE6Tv6v0= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/JZ8wnIf7s21DmcnmAvKNwpP3ZKk= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/JzsEdBdupkPeHoXbW2HuyW65M+g= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/KEWpAkmUEvUnSH8jQXgi_KKPIBw= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/L3EVKs7Ig5_KN_kZDe4_rqpi+rc= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/LcgFT2AG2rlYn0hRm+8O7E_LN38= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/MWmSVHhjMf8LrKRK_S0hjj7VpT8= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/N+W4WkZES2aYnpstbHTESkOoQLI= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/NL2aM7TJLJROSFsTej8GerFixkw= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/NMvIagPm9569b9l3ttVQnMb83As= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Q9CJg3ONqkcC7L_ko1kmK2RjQ84= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/QQygO1m4_19YcW91BfZqd7U0Xz8= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/QqBMkLpM5C5S+wM47oyJtxpgZgU= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/R5v52jFTWRSfnUB82NIYKpSHKjA= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/RI9wugMibypaG4mA0JvIViG_jh4= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Rp098wKfRnPHqyB76UoZoHFfW1Y= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/UEOOzXtMQ1AJIKyMc29_MuqaLy0= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/UObk7cvbmAkwPYn3WKZOwUW3pIs= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/UYwLWaBxREaWEwcEcHRhQoYI57M= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/VL2L4VAGyc+rojwVYoZPaUHtxT0= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/VSKPK++pvJimsw97SbJzFvLmtk8= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Vg3sm8ITzREKUT35XRHJ5qrNhIE= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/W1P9Znbffi2KphTbdcKRsJXvQsY= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/WV_5uXMXna9tsLZi7eW6NBeIvmw= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/WieKANzqDEm9iWDIXUsvmcvNheo= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/YT0YnLn5lINV3uN4+zBw1JxAD8c= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Zbl8ADc3lcC0pMZNKJcp7erYp7Q= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Zu+hxfnijmNHGaxNhjfvpi3vyb8= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/adFhMRAW9dfvjfLEMPR++osCxuo= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/bXPhMTEtgbIpn0kakBP2755d+pU= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/buYYGOHxFD4SRB_uPfZ46VsxOTU= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/bvzSUJ2rm5QDtomGuOObSOAFHHc= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/c6uNKUPAbT55MFNkdh6LpCKAW88= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/eUqCDisAUuy0nx7BM1vyE3hXyO4= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/efxzfG2bfVK_RwM8_dURj6L7j5Y= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/erPI8DGNdzdr6bRrW0NYSQ2CWog= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/gFsmikbu33eovehkot9DPrdYPrY= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/gIQP9VZYzTu3m1eyFsLanVyUSUs= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/gSxVFB+jQaHguoJPyBsGPm0MbzQ= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/h2YdIICpdHBcMgJT_C0g4QEttrE= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/h3b78_gxarYTnWNaI4RWXCZAIdE= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/hguvwXhFLhJ8WTT4aCqLJK4ybfA= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/irEFSDCYciV7uq8IMxRu6fkwwQs= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/jZesaajp_ixsVikVSFc_ktL8w+I= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/kAgigQTg0y6GRNn2Jlk428FOKN4= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/kmmMnKTzqR440J8xFk4XiLfQH1Q= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/kqLjess4WB75s55dVPVkDXGJJUI= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ljuazvTuOPfA6pbqhNuUGRzGg8M= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/o718Fi0flW7aKA9yACQ+1TqJqso= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/pK3ZrAlmzn1G6f7bAUUy6aMe9z0= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/pwKoBxAsjveM4LpBkaXqaJ_+m0A= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/q9wdFndfyTCu5jZPrdTKs8O9kYc= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/qBh4vFUDuJiVh3kxcWFtlxbY4us= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/qMeiVk7ZEt2flVCZ0sPpdNB9n7w= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/qPl5wl48g8+OFYnjxy1h3HL8yDs= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/rF_WlUYgo1iz2JSjLE9TuDoGIYA= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/rlmsB3EHP2mS+qSuPB_eTDy8O_E= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/sDsamSL+7hJSjWcRvMOm_wI_RGM= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/svI42RpksM1iG9aGJ7iYCe3a94U= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/tTVYfaoO2J1xtHexEWIMQgrX4HQ= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/uUggFAVCrsVPQYjCQacoBrLhlng= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/uZDT094Op2bIanMmirmiQB6rb7g= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/vCi_cRw6vXX2cw8tMF6_xU80Wz8= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/vF5grkZQQJQhgiuf0DyQNGrJbZM= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/vK_tj6yy7HEZLE1s3CKyJFMEPTI= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/w_sG+Zg4lM1Bsxp+tmixtzPPBQw= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/xVpEh5V51XTC4UOi74xCX1eKKuw= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/y5vP1ExlGe8RPuR4uXTfcjn75Y4= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/yCgHl7JN81S+PQFOiGUKlAGwkW4= +0 -0
- package/template/android/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/yPmW2rJzZtJvNY7TgTIVyNvfrkc= +0 -0
- package/template/android/app/build/intermediates/incremental/mergeDebugAssets/merger.xml +0 -2
- package/template/android/app/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +0 -2
- package/template/android/app/build/intermediates/incremental/mergeDebugShaders/merger.xml +0 -2
- package/template/android/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt +0 -16
- package/template/android/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/androidResources +0 -0
- package/template/android/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/javaResources0 +0 -0
- package/template/android/app/build/intermediates/javac/debug/classes/com/facebook/react/PackageList.class +0 -0
- package/template/android/app/build/intermediates/javac/debug/classes/com/template/BuildConfig.class +0 -0
- package/template/android/app/build/intermediates/javac/debug/classes/com/template/MainActivity.class +0 -0
- package/template/android/app/build/intermediates/javac/debug/classes/com/template/MainApplication$1.class +0 -0
- package/template/android/app/build/intermediates/javac/debug/classes/com/template/MainApplication.class +0 -0
- package/template/android/app/build/intermediates/javac/debug/classes/com/template/ReactNativeFlipper$1.class +0 -0
- package/template/android/app/build/intermediates/javac/debug/classes/com/template/ReactNativeFlipper$2$1.class +0 -0
- package/template/android/app/build/intermediates/javac/debug/classes/com/template/ReactNativeFlipper$2.class +0 -0
- package/template/android/app/build/intermediates/javac/debug/classes/com/template/ReactNativeFlipper.class +0 -0
- package/template/android/app/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt +0 -95
- package/template/android/app/build/intermediates/merged_java_res/debug/base.jar +0 -0
- package/template/android/app/build/intermediates/merged_manifest/debug/AndroidManifest.xml +0 -55
- package/template/android/app/build/intermediates/merged_manifests/debug/AndroidManifest.xml +0 -55
- package/template/android/app/build/intermediates/merged_manifests/debug/output-metadata.json +0 -20
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libc++_shared.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libcxxcomponents.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libevent-2.1.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libevent_core-2.1.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libevent_extra-2.1.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libfabricjni.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libfb.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libfbjni.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libflipper.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libfolly_runtime.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libglog.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libglog_init.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libhermes.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libhermes_executor.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libimagepipeline.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libjsi.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libjsijniprofiler.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libjsinspector.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/liblogger.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libmapbufferjni.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libnative-filters.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libnative-imagetranscoder.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libreact_codegen_rncore.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libreact_config.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libreact_debug.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libreact_nativemodule_core.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libreact_newarchdefaults.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libreact_render_animations.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libreact_render_attributedstring.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libreact_render_componentregistry.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libreact_render_core.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libreact_render_debug.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libreact_render_graphics.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libreact_render_imagemanager.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libreact_render_leakchecker.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libreact_render_mapbuffer.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libreact_render_mounting.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libreact_render_runtimescheduler.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libreact_render_scheduler.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libreact_render_telemetry.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libreact_render_templateprocessor.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libreact_render_textlayoutmanager.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libreact_render_uimanager.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libreact_utils.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libreactnativeblob.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libreactnativejni.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libreactperfloggerjni.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/librrc_image.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/librrc_root.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/librrc_scrollview.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/librrc_text.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/librrc_textinput.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/librrc_unimplementedview.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/librrc_view.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libruntimeexecutor.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libturbomodulejsijni.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libyoga.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libc++_shared.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libcxxcomponents.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libevent-2.1.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libevent_core-2.1.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libevent_extra-2.1.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libfabricjni.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libfb.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libfbjni.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libflipper.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libfolly_runtime.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libglog.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libglog_init.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libhermes.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libhermes_executor.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libimagepipeline.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libjsi.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libjsijniprofiler.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libjsinspector.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/liblogger.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libmapbufferjni.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libnative-filters.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libnative-imagetranscoder.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libreact_codegen_rncore.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libreact_config.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libreact_debug.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libreact_nativemodule_core.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libreact_newarchdefaults.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libreact_render_animations.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libreact_render_attributedstring.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libreact_render_componentregistry.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libreact_render_core.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libreact_render_debug.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libreact_render_graphics.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libreact_render_imagemanager.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libreact_render_leakchecker.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libreact_render_mapbuffer.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libreact_render_mounting.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libreact_render_runtimescheduler.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libreact_render_scheduler.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libreact_render_telemetry.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libreact_render_templateprocessor.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libreact_render_textlayoutmanager.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libreact_render_uimanager.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libreact_utils.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libreactnativeblob.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libreactnativejni.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libreactperfloggerjni.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/librrc_image.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/librrc_root.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/librrc_scrollview.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/librrc_text.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/librrc_textinput.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/librrc_unimplementedview.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/librrc_view.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libruntimeexecutor.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libturbomodulejsijni.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libyoga.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libc++_shared.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libcxxcomponents.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libevent-2.1.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libevent_core-2.1.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libevent_extra-2.1.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libfabricjni.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libfb.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libfbjni.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libflipper.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libfolly_runtime.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libglog.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libglog_init.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libhermes.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libhermes_executor.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libimagepipeline.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libjsi.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libjsijniprofiler.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libjsinspector.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/liblogger.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libmapbufferjni.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libnative-filters.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libnative-imagetranscoder.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libreact_codegen_rncore.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libreact_config.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libreact_debug.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libreact_nativemodule_core.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libreact_newarchdefaults.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libreact_render_animations.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libreact_render_attributedstring.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libreact_render_componentregistry.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libreact_render_core.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libreact_render_debug.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libreact_render_graphics.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libreact_render_imagemanager.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libreact_render_leakchecker.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libreact_render_mapbuffer.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libreact_render_mounting.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libreact_render_runtimescheduler.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libreact_render_scheduler.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libreact_render_telemetry.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libreact_render_templateprocessor.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libreact_render_textlayoutmanager.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libreact_render_uimanager.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libreact_utils.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libreactnativeblob.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libreactnativejni.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libreactperfloggerjni.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/librrc_image.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/librrc_root.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/librrc_scrollview.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/librrc_text.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/librrc_textinput.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/librrc_unimplementedview.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/librrc_view.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libruntimeexecutor.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libturbomodulejsijni.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86/libyoga.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libc++_shared.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libcxxcomponents.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libevent-2.1.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libevent_core-2.1.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libevent_extra-2.1.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libfabricjni.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libfb.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libfbjni.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libflipper.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libfolly_runtime.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libglog.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libglog_init.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libhermes.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libhermes_executor.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libimagepipeline.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libjsi.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libjsijniprofiler.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libjsinspector.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/liblogger.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libmapbufferjni.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libnative-filters.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libnative-imagetranscoder.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libreact_codegen_rncore.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libreact_config.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libreact_debug.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libreact_nativemodule_core.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libreact_newarchdefaults.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libreact_render_animations.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libreact_render_attributedstring.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libreact_render_componentregistry.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libreact_render_core.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libreact_render_debug.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libreact_render_graphics.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libreact_render_imagemanager.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libreact_render_leakchecker.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libreact_render_mapbuffer.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libreact_render_mounting.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libreact_render_runtimescheduler.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libreact_render_scheduler.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libreact_render_telemetry.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libreact_render_templateprocessor.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libreact_render_textlayoutmanager.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libreact_render_uimanager.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libreact_utils.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libreactnativeblob.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libreactnativejni.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libreactperfloggerjni.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/librrc_image.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/librrc_root.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/librrc_scrollview.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/librrc_text.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/librrc_textinput.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/librrc_unimplementedview.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/librrc_view.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libruntimeexecutor.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libturbomodulejsijni.so +0 -0
- package/template/android/app/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libyoga.so +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/drawable_rn_edit_text_material.xml.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/mipmap-hdpi_ic_launcher.png.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/mipmap-hdpi_ic_launcher_round.png.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/mipmap-mdpi_ic_launcher.png.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/mipmap-mdpi_ic_launcher_round.png.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/mipmap-xhdpi_ic_launcher.png.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/mipmap-xhdpi_ic_launcher_round.png.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/mipmap-xxhdpi_ic_launcher.png.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/mipmap-xxhdpi_ic_launcher_round.png.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/mipmap-xxxhdpi_ic_launcher.png.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/mipmap-xxxhdpi_ic_launcher_round.png.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-af_values-af.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-am_values-am.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-ar_values-ar.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-as_values-as.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-az_values-az.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-b+sr+Latn_values-b+sr+Latn.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-be_values-be.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-bg_values-bg.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-bn_values-bn.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-bs_values-bs.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-ca_values-ca.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-cs_values-cs.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-da_values-da.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-de_values-de.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-el_values-el.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-en-rAU_values-en-rAU.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-en-rCA_values-en-rCA.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-en-rGB_values-en-rGB.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-en-rIN_values-en-rIN.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-en-rXC_values-en-rXC.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-es-rUS_values-es-rUS.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-es_values-es.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-et_values-et.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-eu_values-eu.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-fa_values-fa.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-fi_values-fi.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-fr-rCA_values-fr-rCA.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-fr_values-fr.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-gl_values-gl.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-gu_values-gu.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-h360dp-land-v13_values-h360dp-land-v13.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-h480dp-land-v13_values-h480dp-land-v13.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-h720dp-v13_values-h720dp-v13.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-hdpi-v4_values-hdpi-v4.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-hi_values-hi.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-hr_values-hr.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-hu_values-hu.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-hy_values-hy.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-in_values-in.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-is_values-is.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-it_values-it.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-iw_values-iw.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-ja_values-ja.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-ka_values-ka.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-kk_values-kk.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-km_values-km.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-kn_values-kn.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-ko_values-ko.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-ky_values-ky.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-land_values-land.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-large-v4_values-large-v4.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-ldltr-v21_values-ldltr-v21.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-lo_values-lo.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-lt_values-lt.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-lv_values-lv.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-mk_values-mk.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-ml_values-ml.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-mn_values-mn.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-mr_values-mr.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-ms_values-ms.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-my_values-my.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-nb_values-nb.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-ne_values-ne.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-night-v8_values-night-v8.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-nl_values-nl.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-or_values-or.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-pa_values-pa.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-pl_values-pl.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-port_values-port.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-pt-rBR_values-pt-rBR.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-pt-rPT_values-pt-rPT.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-pt_values-pt.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-ro_values-ro.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-ru_values-ru.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-si_values-si.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-sk_values-sk.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-sl_values-sl.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-small-v4_values-small-v4.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-sq_values-sq.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-sr_values-sr.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-sv_values-sv.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-sw600dp-v13_values-sw600dp-v13.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-sw_values-sw.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-ta_values-ta.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-te_values-te.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-th_values-th.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-tl_values-tl.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-tr_values-tr.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-uk_values-uk.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-ur_values-ur.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-uz_values-uz.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-v16_values-v16.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-v17_values-v17.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-v18_values-v18.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-v21_values-v21.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-v22_values-v22.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-v23_values-v23.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-v24_values-v24.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-v25_values-v25.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-v26_values-v26.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-v28_values-v28.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-vi_values-vi.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-w360dp-port-v13_values-w360dp-port-v13.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-w480dp-port-v13_values-w480dp-port-v13.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-watch-v20_values-watch-v20.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-watch-v21_values-watch-v21.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-xlarge-v4_values-xlarge-v4.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-zh-rCN_values-zh-rCN.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-zh-rHK_values-zh-rHK.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-zh-rTW_values-zh-rTW.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values-zu_values-zu.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res/debug/values_values.arsc.flat +0 -0
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/debug.json +0 -3736
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-af.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-am.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ar.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-as.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-az.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-b+sr+Latn.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-be.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-bg.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-bn.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-bs.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ca.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-cs.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-da.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-de.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-el.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rAU.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rCA.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rGB.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rIN.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rXC.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-es-rUS.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-es.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-et.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-eu.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fa.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fi.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fr-rCA.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fr.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-gl.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-gu.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-h360dp-land-v13.json +0 -19
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-h480dp-land-v13.json +0 -19
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-h720dp-v13.json +0 -19
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hdpi-v4.json +0 -20
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hi.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hr.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hu.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hy.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-in.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-is.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-it.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-iw.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ja.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ka.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-kk.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-km.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-kn.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ko.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ky.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-land.json +0 -38
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-large-v4.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ldltr-v21.json +0 -19
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-lo.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-lt.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-lv.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-mk.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ml.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-mn.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-mr.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ms.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-my.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-nb.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ne.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-night-v8.json +0 -43
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-nl.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-or.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pa.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pl.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-port.json +0 -19
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pt-rBR.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pt-rPT.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pt.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ro.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ru.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-si.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sk.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sl.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-small-v4.json +0 -19
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sq.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sr.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sv.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sw.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sw600dp-v13.json +0 -38
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ta.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-te.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-th.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-tl.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-tr.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-uk.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ur.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-uz.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v16.json +0 -38
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v17.json +0 -20
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v18.json +0 -19
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v21.json +0 -66
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v22.json +0 -28
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v23.json +0 -66
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v24.json +0 -19
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v25.json +0 -20
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v26.json +0 -28
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v28.json +0 -38
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-vi.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-w360dp-port-v13.json +0 -19
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-w480dp-port-v13.json +0 -19
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-watch-v20.json +0 -20
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-watch-v21.json +0 -20
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-xlarge-v4.json +0 -19
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zh-rCN.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zh-rHK.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zh-rTW.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zu.json +0 -36
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values.json +0 -392
- package/template/android/app/build/intermediates/merged_res_blame_folder/debug/out/single/debug.json +0 -46
- package/template/android/app/build/intermediates/navigation_json/debug/navigation.json +0 -1
- package/template/android/app/build/intermediates/packaged_manifests/debug/AndroidManifest.xml +0 -55
- package/template/android/app/build/intermediates/packaged_manifests/debug/output-metadata.json +0 -20
- package/template/android/app/build/intermediates/processed_res/debug/out/output-metadata.json +0 -20
- package/template/android/app/build/intermediates/processed_res/debug/out/resources-debug.ap_ +0 -0
- package/template/android/app/build/intermediates/project_dex_archive/debug/out/9c2e7de867ad53124b551f1c8edbcd77895b9c26f4bb4a94997699983d9cd6a2_0.jar +0 -0
- package/template/android/app/build/intermediates/project_dex_archive/debug/out/9c2e7de867ad53124b551f1c8edbcd77895b9c26f4bb4a94997699983d9cd6a2_1.jar +0 -0
- package/template/android/app/build/intermediates/project_dex_archive/debug/out/9c2e7de867ad53124b551f1c8edbcd77895b9c26f4bb4a94997699983d9cd6a2_2.jar +0 -0
- package/template/android/app/build/intermediates/project_dex_archive/debug/out/9c2e7de867ad53124b551f1c8edbcd77895b9c26f4bb4a94997699983d9cd6a2_3.jar +0 -0
- package/template/android/app/build/intermediates/project_dex_archive/debug/out/com/facebook/react/PackageList.dex +0 -0
- package/template/android/app/build/intermediates/project_dex_archive/debug/out/com/template/BuildConfig.dex +0 -0
- package/template/android/app/build/intermediates/project_dex_archive/debug/out/com/template/MainActivity.dex +0 -0
- package/template/android/app/build/intermediates/project_dex_archive/debug/out/com/template/MainApplication$1.dex +0 -0
- package/template/android/app/build/intermediates/project_dex_archive/debug/out/com/template/MainApplication.dex +0 -0
- package/template/android/app/build/intermediates/project_dex_archive/debug/out/com/template/ReactNativeFlipper$1.dex +0 -0
- package/template/android/app/build/intermediates/project_dex_archive/debug/out/com/template/ReactNativeFlipper$2$1.dex +0 -0
- package/template/android/app/build/intermediates/project_dex_archive/debug/out/com/template/ReactNativeFlipper$2.dex +0 -0
- package/template/android/app/build/intermediates/project_dex_archive/debug/out/com/template/ReactNativeFlipper.dex +0 -0
- package/template/android/app/build/intermediates/runtime_symbol_list/debug/R.txt +0 -3687
- package/template/android/app/build/intermediates/signing_config_versions/debug/signing-config-versions.json +0 -1
- package/template/android/app/build/intermediates/source_set_path_map/debug/file-map.txt +0 -36
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libc++_shared.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libcxxcomponents.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libevent-2.1.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libevent_core-2.1.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libevent_extra-2.1.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libfabricjni.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libfb.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libfbjni.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libflipper.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libfolly_runtime.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libglog.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libglog_init.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libhermes.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libhermes_executor.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libimagepipeline.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libjsi.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libjsijniprofiler.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libjsinspector.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/liblogger.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libmapbufferjni.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libnative-filters.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libnative-imagetranscoder.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libreact_codegen_rncore.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libreact_config.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libreact_debug.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libreact_nativemodule_core.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libreact_newarchdefaults.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libreact_render_animations.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libreact_render_attributedstring.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libreact_render_componentregistry.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libreact_render_core.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libreact_render_debug.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libreact_render_graphics.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libreact_render_imagemanager.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libreact_render_leakchecker.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libreact_render_mapbuffer.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libreact_render_mounting.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libreact_render_runtimescheduler.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libreact_render_scheduler.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libreact_render_telemetry.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libreact_render_templateprocessor.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libreact_render_textlayoutmanager.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libreact_render_uimanager.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libreact_utils.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libreactnativeblob.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libreactnativejni.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libreactperfloggerjni.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/librrc_image.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/librrc_root.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/librrc_scrollview.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/librrc_text.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/librrc_textinput.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/librrc_unimplementedview.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/librrc_view.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libruntimeexecutor.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libturbomodulejsijni.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libyoga.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libc++_shared.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libcxxcomponents.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libevent-2.1.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libevent_core-2.1.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libevent_extra-2.1.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libfabricjni.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libfb.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libfbjni.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libflipper.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libfolly_runtime.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libglog.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libglog_init.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libhermes.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libhermes_executor.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libimagepipeline.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libjsi.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libjsijniprofiler.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libjsinspector.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/liblogger.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libmapbufferjni.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libnative-filters.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libnative-imagetranscoder.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libreact_codegen_rncore.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libreact_config.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libreact_debug.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libreact_nativemodule_core.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libreact_newarchdefaults.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libreact_render_animations.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libreact_render_attributedstring.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libreact_render_componentregistry.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libreact_render_core.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libreact_render_debug.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libreact_render_graphics.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libreact_render_imagemanager.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libreact_render_leakchecker.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libreact_render_mapbuffer.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libreact_render_mounting.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libreact_render_runtimescheduler.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libreact_render_scheduler.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libreact_render_telemetry.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libreact_render_templateprocessor.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libreact_render_textlayoutmanager.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libreact_render_uimanager.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libreact_utils.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libreactnativeblob.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libreactnativejni.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libreactperfloggerjni.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/librrc_image.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/librrc_root.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/librrc_scrollview.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/librrc_text.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/librrc_textinput.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/librrc_unimplementedview.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/librrc_view.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libruntimeexecutor.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libturbomodulejsijni.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libyoga.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libc++_shared.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libcxxcomponents.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libevent-2.1.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libevent_core-2.1.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libevent_extra-2.1.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libfabricjni.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libfb.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libfbjni.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libflipper.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libfolly_runtime.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libglog.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libglog_init.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libhermes.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libhermes_executor.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libimagepipeline.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libjsi.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libjsijniprofiler.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libjsinspector.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/liblogger.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libmapbufferjni.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libnative-filters.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libnative-imagetranscoder.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libreact_codegen_rncore.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libreact_config.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libreact_debug.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libreact_nativemodule_core.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libreact_newarchdefaults.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libreact_render_animations.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libreact_render_attributedstring.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libreact_render_componentregistry.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libreact_render_core.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libreact_render_debug.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libreact_render_graphics.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libreact_render_imagemanager.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libreact_render_leakchecker.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libreact_render_mapbuffer.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libreact_render_mounting.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libreact_render_runtimescheduler.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libreact_render_scheduler.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libreact_render_telemetry.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libreact_render_templateprocessor.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libreact_render_textlayoutmanager.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libreact_render_uimanager.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libreact_utils.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libreactnativeblob.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libreactnativejni.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libreactperfloggerjni.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/librrc_image.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/librrc_root.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/librrc_scrollview.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/librrc_text.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/librrc_textinput.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/librrc_unimplementedview.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/librrc_view.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libruntimeexecutor.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libturbomodulejsijni.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libyoga.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libc++_shared.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libcxxcomponents.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libevent-2.1.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libevent_core-2.1.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libevent_extra-2.1.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libfabricjni.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libfb.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libfbjni.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libflipper.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libfolly_runtime.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libglog.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libglog_init.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libhermes.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libhermes_executor.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libimagepipeline.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libjsi.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libjsijniprofiler.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libjsinspector.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/liblogger.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libmapbufferjni.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libnative-filters.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libnative-imagetranscoder.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libreact_codegen_rncore.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libreact_config.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libreact_debug.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libreact_nativemodule_core.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libreact_newarchdefaults.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libreact_render_animations.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libreact_render_attributedstring.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libreact_render_componentregistry.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libreact_render_core.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libreact_render_debug.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libreact_render_graphics.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libreact_render_imagemanager.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libreact_render_leakchecker.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libreact_render_mapbuffer.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libreact_render_mounting.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libreact_render_runtimescheduler.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libreact_render_scheduler.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libreact_render_telemetry.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libreact_render_templateprocessor.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libreact_render_textlayoutmanager.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libreact_render_uimanager.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libreact_utils.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libreactnativeblob.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libreactnativejni.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libreactperfloggerjni.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/librrc_image.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/librrc_root.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/librrc_scrollview.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/librrc_text.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/librrc_textinput.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/librrc_unimplementedview.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/librrc_view.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libruntimeexecutor.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libturbomodulejsijni.so +0 -0
- package/template/android/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libyoga.so +0 -0
- package/template/android/app/build/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt +0 -2810
- package/template/android/app/build/outputs/apk/debug/app-debug.apk +0 -0
- package/template/android/app/build/outputs/apk/debug/output-metadata.json +0 -20
- package/template/android/app/build/outputs/logs/manifest-merger-debug-report.txt +0 -352
- package/template/android/app/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin +0 -0
- package/template/resetDefault.js +0 -22
- package/template/src/config/routeArr.ts +0 -25
- package/template/src/route/RouteContainer.tsx +0 -156
- package/template/src/types/RouteParamList.ts +0 -10
@@ -1,704 +1,719 @@
|
|
1
|
-
// !$*UTF8*$!
|
2
|
-
{
|
3
|
-
archiveVersion = 1;
|
4
|
-
classes = {
|
5
|
-
};
|
6
|
-
objectVersion = 54;
|
7
|
-
objects = {
|
8
|
-
|
9
|
-
/* Begin PBXBuildFile section */
|
10
|
-
00E356F31AD99517003FC87E /* templateTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* templateTests.m */; };
|
11
|
-
0C80B921A6F3F58F76C31292 /* libPods-template.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-template.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
|
-
7699B88040F8A987B510C191 /* libPods-template-templateTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 19F6CBCC0A4E27FBF8BF4A61 /* libPods-template-templateTests.a */; };
|
16
|
-
81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
|
17
|
-
/* End PBXBuildFile section */
|
18
|
-
|
19
|
-
/* Begin PBXContainerItemProxy section */
|
20
|
-
00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
|
21
|
-
isa = PBXContainerItemProxy;
|
22
|
-
containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
|
23
|
-
proxyType = 1;
|
24
|
-
remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
|
25
|
-
remoteInfo = template;
|
26
|
-
};
|
27
|
-
/* End PBXContainerItemProxy section */
|
28
|
-
|
29
|
-
/* Begin PBXFileReference section */
|
30
|
-
00E356EE1AD99517003FC87E /* templateTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = templateTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
31
|
-
00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
32
|
-
00E356F21AD99517003FC87E /* templateTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = templateTests.m; sourceTree = "<group>"; };
|
33
|
-
13B07F961A680F5B00A75B9A /* template.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = template.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
34
|
-
13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = template/AppDelegate.h; sourceTree = "<group>"; };
|
35
|
-
13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = template/AppDelegate.mm; sourceTree = "<group>"; };
|
36
|
-
13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = template/Images.xcassets; sourceTree = "<group>"; };
|
37
|
-
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = template/Info.plist; sourceTree = "<group>"; };
|
38
|
-
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = template/main.m; sourceTree = "<group>"; };
|
39
|
-
19F6CBCC0A4E27FBF8BF4A61 /* libPods-template-templateTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-template-templateTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
40
|
-
3B4392A12AC88292D35C810B /* Pods-template.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-template.debug.xcconfig"; path = "Target Support Files/Pods-template/Pods-template.debug.xcconfig"; sourceTree = "<group>"; };
|
41
|
-
5709B34CF0A7D63546082F79 /* Pods-template.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-template.release.xcconfig"; path = "Target Support Files/Pods-template/Pods-template.release.xcconfig"; sourceTree = "<group>"; };
|
42
|
-
5B7EB9410499542E8C5724F5 /* Pods-template-templateTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-template-templateTests.debug.xcconfig"; path = "Target Support Files/Pods-template-templateTests/Pods-template-templateTests.debug.xcconfig"; sourceTree = "<group>"; };
|
43
|
-
5DCACB8F33CDC322A6C60F78 /* libPods-template.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-template.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
44
|
-
81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = template/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
45
|
-
89C6BE57DB24E9ADA2F236DE /* Pods-template-templateTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-template-templateTests.release.xcconfig"; path = "Target Support Files/Pods-template-templateTests/Pods-template-templateTests.release.xcconfig"; sourceTree = "<group>"; };
|
46
|
-
ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
|
47
|
-
/* End PBXFileReference section */
|
48
|
-
|
49
|
-
/* Begin PBXFrameworksBuildPhase section */
|
50
|
-
00E356EB1AD99517003FC87E /* Frameworks */ = {
|
51
|
-
isa = PBXFrameworksBuildPhase;
|
52
|
-
buildActionMask = 2147483647;
|
53
|
-
files = (
|
54
|
-
7699B88040F8A987B510C191 /* libPods-template-templateTests.a in Frameworks */,
|
55
|
-
);
|
56
|
-
runOnlyForDeploymentPostprocessing = 0;
|
57
|
-
};
|
58
|
-
13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
|
59
|
-
isa = PBXFrameworksBuildPhase;
|
60
|
-
buildActionMask = 2147483647;
|
61
|
-
files = (
|
62
|
-
0C80B921A6F3F58F76C31292 /* libPods-template.a in Frameworks */,
|
63
|
-
);
|
64
|
-
runOnlyForDeploymentPostprocessing = 0;
|
65
|
-
};
|
66
|
-
/* End PBXFrameworksBuildPhase section */
|
67
|
-
|
68
|
-
/* Begin PBXGroup section */
|
69
|
-
00E356EF1AD99517003FC87E /* templateTests */ = {
|
70
|
-
isa = PBXGroup;
|
71
|
-
children = (
|
72
|
-
00E356F21AD99517003FC87E /* templateTests.m */,
|
73
|
-
00E356F01AD99517003FC87E /* Supporting Files */,
|
74
|
-
);
|
75
|
-
path = templateTests;
|
76
|
-
sourceTree = "<group>";
|
77
|
-
};
|
78
|
-
00E356F01AD99517003FC87E /* Supporting Files */ = {
|
79
|
-
isa = PBXGroup;
|
80
|
-
children = (
|
81
|
-
00E356F11AD99517003FC87E /* Info.plist */,
|
82
|
-
);
|
83
|
-
name = "Supporting Files";
|
84
|
-
sourceTree = "<group>";
|
85
|
-
};
|
86
|
-
13B07FAE1A68108700A75B9A /* template */ = {
|
87
|
-
isa = PBXGroup;
|
88
|
-
children = (
|
89
|
-
13B07FAF1A68108700A75B9A /* AppDelegate.h */,
|
90
|
-
13B07FB01A68108700A75B9A /* AppDelegate.mm */,
|
91
|
-
13B07FB51A68108700A75B9A /* Images.xcassets */,
|
92
|
-
13B07FB61A68108700A75B9A /* Info.plist */,
|
93
|
-
81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
|
94
|
-
13B07FB71A68108700A75B9A /* main.m */,
|
95
|
-
);
|
96
|
-
name = template;
|
97
|
-
sourceTree = "<group>";
|
98
|
-
};
|
99
|
-
2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
|
100
|
-
isa = PBXGroup;
|
101
|
-
children = (
|
102
|
-
ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
|
103
|
-
5DCACB8F33CDC322A6C60F78 /* libPods-template.a */,
|
104
|
-
19F6CBCC0A4E27FBF8BF4A61 /* libPods-template-templateTests.a */,
|
105
|
-
);
|
106
|
-
name = Frameworks;
|
107
|
-
sourceTree = "<group>";
|
108
|
-
};
|
109
|
-
832341AE1AAA6A7D00B99B32 /* Libraries */ = {
|
110
|
-
isa = PBXGroup;
|
111
|
-
children = (
|
112
|
-
);
|
113
|
-
name = Libraries;
|
114
|
-
sourceTree = "<group>";
|
115
|
-
};
|
116
|
-
83CBB9F61A601CBA00E9B192 = {
|
117
|
-
isa = PBXGroup;
|
118
|
-
children = (
|
119
|
-
13B07FAE1A68108700A75B9A /* template */,
|
120
|
-
832341AE1AAA6A7D00B99B32 /* Libraries */,
|
121
|
-
00E356EF1AD99517003FC87E /* templateTests */,
|
122
|
-
83CBBA001A601CBA00E9B192 /* Products */,
|
123
|
-
2D16E6871FA4F8E400B85C8A /* Frameworks */,
|
124
|
-
BBD78D7AC51CEA395F1C20DB /* Pods */,
|
125
|
-
);
|
126
|
-
indentWidth = 2;
|
127
|
-
sourceTree = "<group>";
|
128
|
-
tabWidth = 2;
|
129
|
-
usesTabs = 0;
|
130
|
-
};
|
131
|
-
83CBBA001A601CBA00E9B192 /* Products */ = {
|
132
|
-
isa = PBXGroup;
|
133
|
-
children = (
|
134
|
-
13B07F961A680F5B00A75B9A /* template.app */,
|
135
|
-
00E356EE1AD99517003FC87E /* templateTests.xctest */,
|
136
|
-
);
|
137
|
-
name = Products;
|
138
|
-
sourceTree = "<group>";
|
139
|
-
};
|
140
|
-
BBD78D7AC51CEA395F1C20DB /* Pods */ = {
|
141
|
-
isa = PBXGroup;
|
142
|
-
children = (
|
143
|
-
3B4392A12AC88292D35C810B /* Pods-template.debug.xcconfig */,
|
144
|
-
5709B34CF0A7D63546082F79 /* Pods-template.release.xcconfig */,
|
145
|
-
5B7EB9410499542E8C5724F5 /* Pods-template-templateTests.debug.xcconfig */,
|
146
|
-
89C6BE57DB24E9ADA2F236DE /* Pods-template-templateTests.release.xcconfig */,
|
147
|
-
);
|
148
|
-
path = Pods;
|
149
|
-
sourceTree = "<group>";
|
150
|
-
};
|
151
|
-
/* End PBXGroup section */
|
152
|
-
|
153
|
-
/* Begin PBXNativeTarget section */
|
154
|
-
00E356ED1AD99517003FC87E /* templateTests */ = {
|
155
|
-
isa = PBXNativeTarget;
|
156
|
-
buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "templateTests" */;
|
157
|
-
buildPhases = (
|
158
|
-
A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */,
|
159
|
-
00E356EA1AD99517003FC87E /* Sources */,
|
160
|
-
00E356EB1AD99517003FC87E /* Frameworks */,
|
161
|
-
00E356EC1AD99517003FC87E /* Resources */,
|
162
|
-
C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */,
|
163
|
-
F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */,
|
164
|
-
);
|
165
|
-
buildRules = (
|
166
|
-
);
|
167
|
-
dependencies = (
|
168
|
-
00E356F51AD99517003FC87E /* PBXTargetDependency */,
|
169
|
-
);
|
170
|
-
name = templateTests;
|
171
|
-
productName = templateTests;
|
172
|
-
productReference = 00E356EE1AD99517003FC87E /* templateTests.xctest */;
|
173
|
-
productType = "com.apple.product-type.bundle.unit-test";
|
174
|
-
};
|
175
|
-
13B07F861A680F5B00A75B9A /* template */ = {
|
176
|
-
isa = PBXNativeTarget;
|
177
|
-
buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "template" */;
|
178
|
-
buildPhases = (
|
179
|
-
C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */,
|
180
|
-
FD10A7F022414F080027D42C /* Start Packager */,
|
181
|
-
13B07F871A680F5B00A75B9A /* Sources */,
|
182
|
-
13B07F8C1A680F5B00A75B9A /* Frameworks */,
|
183
|
-
13B07F8E1A680F5B00A75B9A /* Resources */,
|
184
|
-
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
|
185
|
-
00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */,
|
186
|
-
E235C05ADACE081382539298 /* [CP] Copy Pods Resources */,
|
187
|
-
);
|
188
|
-
buildRules = (
|
189
|
-
);
|
190
|
-
dependencies = (
|
191
|
-
);
|
192
|
-
name = template;
|
193
|
-
productName = template;
|
194
|
-
productReference = 13B07F961A680F5B00A75B9A /* template.app */;
|
195
|
-
productType = "com.apple.product-type.application";
|
196
|
-
};
|
197
|
-
/* End PBXNativeTarget section */
|
198
|
-
|
199
|
-
/* Begin PBXProject section */
|
200
|
-
83CBB9F71A601CBA00E9B192 /* Project object */ = {
|
201
|
-
isa = PBXProject;
|
202
|
-
attributes = {
|
203
|
-
LastUpgradeCheck = 1210;
|
204
|
-
TargetAttributes = {
|
205
|
-
00E356ED1AD99517003FC87E = {
|
206
|
-
CreatedOnToolsVersion = 6.2;
|
207
|
-
TestTargetID = 13B07F861A680F5B00A75B9A;
|
208
|
-
};
|
209
|
-
13B07F861A680F5B00A75B9A = {
|
210
|
-
LastSwiftMigration = 1120;
|
211
|
-
};
|
212
|
-
};
|
213
|
-
};
|
214
|
-
buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "template" */;
|
215
|
-
compatibilityVersion = "Xcode 12.0";
|
216
|
-
developmentRegion = en;
|
217
|
-
hasScannedForEncodings = 0;
|
218
|
-
knownRegions = (
|
219
|
-
en,
|
220
|
-
Base,
|
221
|
-
);
|
222
|
-
mainGroup = 83CBB9F61A601CBA00E9B192;
|
223
|
-
productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
|
224
|
-
projectDirPath = "";
|
225
|
-
projectRoot = "";
|
226
|
-
targets = (
|
227
|
-
13B07F861A680F5B00A75B9A /* template */,
|
228
|
-
00E356ED1AD99517003FC87E /* templateTests */,
|
229
|
-
);
|
230
|
-
};
|
231
|
-
/* End PBXProject section */
|
232
|
-
|
233
|
-
/* Begin PBXResourcesBuildPhase section */
|
234
|
-
00E356EC1AD99517003FC87E /* Resources */ = {
|
235
|
-
isa = PBXResourcesBuildPhase;
|
236
|
-
buildActionMask = 2147483647;
|
237
|
-
files = (
|
238
|
-
);
|
239
|
-
runOnlyForDeploymentPostprocessing = 0;
|
240
|
-
};
|
241
|
-
13B07F8E1A680F5B00A75B9A /* Resources */ = {
|
242
|
-
isa = PBXResourcesBuildPhase;
|
243
|
-
buildActionMask = 2147483647;
|
244
|
-
files = (
|
245
|
-
81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
|
246
|
-
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
|
247
|
-
);
|
248
|
-
runOnlyForDeploymentPostprocessing = 0;
|
249
|
-
};
|
250
|
-
/* End PBXResourcesBuildPhase section */
|
251
|
-
|
252
|
-
/* Begin PBXShellScriptBuildPhase section */
|
253
|
-
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
|
254
|
-
isa = PBXShellScriptBuildPhase;
|
255
|
-
buildActionMask = 2147483647;
|
256
|
-
files = (
|
257
|
-
);
|
258
|
-
inputPaths = (
|
259
|
-
"$(SRCROOT)/.xcode.env.local",
|
260
|
-
"$(SRCROOT)/.xcode.env",
|
261
|
-
);
|
262
|
-
name = "Bundle React Native code and images";
|
263
|
-
outputPaths = (
|
264
|
-
);
|
265
|
-
runOnlyForDeploymentPostprocessing = 0;
|
266
|
-
shellPath = /bin/sh;
|
267
|
-
shellScript = "set -e\n\nWITH_ENVIRONMENT=\"../node_modules/react-native/scripts/xcode/with-environment.sh\"\nREACT_NATIVE_XCODE=\"../node_modules/react-native/scripts/react-native-xcode.sh\"\n\n/bin/sh -c \"$WITH_ENVIRONMENT $REACT_NATIVE_XCODE\"\n";
|
268
|
-
};
|
269
|
-
00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */ = {
|
270
|
-
isa = PBXShellScriptBuildPhase;
|
271
|
-
buildActionMask = 2147483647;
|
272
|
-
files = (
|
273
|
-
);
|
274
|
-
inputFileListPaths = (
|
275
|
-
"${PODS_ROOT}/Target Support Files/Pods-template/Pods-template-frameworks-${CONFIGURATION}-input-files.xcfilelist",
|
276
|
-
);
|
277
|
-
name = "[CP] Embed Pods Frameworks";
|
278
|
-
outputFileListPaths = (
|
279
|
-
"${PODS_ROOT}/Target Support Files/Pods-template/Pods-template-frameworks-${CONFIGURATION}-output-files.xcfilelist",
|
280
|
-
);
|
281
|
-
runOnlyForDeploymentPostprocessing = 0;
|
282
|
-
shellPath = /bin/sh;
|
283
|
-
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-template/Pods-template-frameworks.sh\"\n";
|
284
|
-
showEnvVarsInLog = 0;
|
285
|
-
};
|
286
|
-
A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */ = {
|
287
|
-
isa = PBXShellScriptBuildPhase;
|
288
|
-
buildActionMask = 2147483647;
|
289
|
-
files = (
|
290
|
-
);
|
291
|
-
inputFileListPaths = (
|
292
|
-
);
|
293
|
-
inputPaths = (
|
294
|
-
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
295
|
-
"${PODS_ROOT}/Manifest.lock",
|
296
|
-
);
|
297
|
-
name = "[CP] Check Pods Manifest.lock";
|
298
|
-
outputFileListPaths = (
|
299
|
-
);
|
300
|
-
outputPaths = (
|
301
|
-
"$(DERIVED_FILE_DIR)/Pods-template-templateTests-checkManifestLockResult.txt",
|
302
|
-
);
|
303
|
-
runOnlyForDeploymentPostprocessing = 0;
|
304
|
-
shellPath = /bin/sh;
|
305
|
-
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";
|
306
|
-
showEnvVarsInLog = 0;
|
307
|
-
};
|
308
|
-
C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */ = {
|
309
|
-
isa = PBXShellScriptBuildPhase;
|
310
|
-
buildActionMask = 2147483647;
|
311
|
-
files = (
|
312
|
-
);
|
313
|
-
inputFileListPaths = (
|
314
|
-
);
|
315
|
-
inputPaths = (
|
316
|
-
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
317
|
-
"${PODS_ROOT}/Manifest.lock",
|
318
|
-
);
|
319
|
-
name = "[CP] Check Pods Manifest.lock";
|
320
|
-
outputFileListPaths = (
|
321
|
-
);
|
322
|
-
outputPaths = (
|
323
|
-
"$(DERIVED_FILE_DIR)/Pods-template-checkManifestLockResult.txt",
|
324
|
-
);
|
325
|
-
runOnlyForDeploymentPostprocessing = 0;
|
326
|
-
shellPath = /bin/sh;
|
327
|
-
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";
|
328
|
-
showEnvVarsInLog = 0;
|
329
|
-
};
|
330
|
-
C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */ = {
|
331
|
-
isa = PBXShellScriptBuildPhase;
|
332
|
-
buildActionMask = 2147483647;
|
333
|
-
files = (
|
334
|
-
);
|
335
|
-
inputFileListPaths = (
|
336
|
-
"${PODS_ROOT}/Target Support Files/Pods-template-templateTests/Pods-template-templateTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
|
337
|
-
);
|
338
|
-
name = "[CP] Embed Pods Frameworks";
|
339
|
-
outputFileListPaths = (
|
340
|
-
"${PODS_ROOT}/Target Support Files/Pods-template-templateTests/Pods-template-templateTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
|
341
|
-
);
|
342
|
-
runOnlyForDeploymentPostprocessing = 0;
|
343
|
-
shellPath = /bin/sh;
|
344
|
-
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-template-templateTests/Pods-template-templateTests-frameworks.sh\"\n";
|
345
|
-
showEnvVarsInLog = 0;
|
346
|
-
};
|
347
|
-
E235C05ADACE081382539298 /* [CP] Copy Pods Resources */ = {
|
348
|
-
isa = PBXShellScriptBuildPhase;
|
349
|
-
buildActionMask = 2147483647;
|
350
|
-
files = (
|
351
|
-
);
|
352
|
-
inputFileListPaths = (
|
353
|
-
"${PODS_ROOT}/Target Support Files/Pods-template/Pods-template-resources-${CONFIGURATION}-input-files.xcfilelist",
|
354
|
-
);
|
355
|
-
name = "[CP] Copy Pods Resources";
|
356
|
-
outputFileListPaths = (
|
357
|
-
"${PODS_ROOT}/Target Support Files/Pods-template/Pods-template-resources-${CONFIGURATION}-output-files.xcfilelist",
|
358
|
-
);
|
359
|
-
runOnlyForDeploymentPostprocessing = 0;
|
360
|
-
shellPath = /bin/sh;
|
361
|
-
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-template/Pods-template-resources.sh\"\n";
|
362
|
-
showEnvVarsInLog = 0;
|
363
|
-
};
|
364
|
-
F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */ = {
|
365
|
-
isa = PBXShellScriptBuildPhase;
|
366
|
-
buildActionMask = 2147483647;
|
367
|
-
files = (
|
368
|
-
);
|
369
|
-
inputFileListPaths = (
|
370
|
-
"${PODS_ROOT}/Target Support Files/Pods-template-templateTests/Pods-template-templateTests-resources-${CONFIGURATION}-input-files.xcfilelist",
|
371
|
-
);
|
372
|
-
name = "[CP] Copy Pods Resources";
|
373
|
-
outputFileListPaths = (
|
374
|
-
"${PODS_ROOT}/Target Support Files/Pods-template-templateTests/Pods-template-templateTests-resources-${CONFIGURATION}-output-files.xcfilelist",
|
375
|
-
);
|
376
|
-
runOnlyForDeploymentPostprocessing = 0;
|
377
|
-
shellPath = /bin/sh;
|
378
|
-
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-template-templateTests/Pods-template-templateTests-resources.sh\"\n";
|
379
|
-
showEnvVarsInLog = 0;
|
380
|
-
};
|
381
|
-
FD10A7F022414F080027D42C /* Start Packager */ = {
|
382
|
-
isa = PBXShellScriptBuildPhase;
|
383
|
-
buildActionMask = 2147483647;
|
384
|
-
files = (
|
385
|
-
);
|
386
|
-
inputFileListPaths = (
|
387
|
-
);
|
388
|
-
inputPaths = (
|
389
|
-
);
|
390
|
-
name = "Start Packager";
|
391
|
-
outputFileListPaths = (
|
392
|
-
);
|
393
|
-
outputPaths = (
|
394
|
-
);
|
395
|
-
runOnlyForDeploymentPostprocessing = 0;
|
396
|
-
shellPath = /bin/sh;
|
397
|
-
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";
|
398
|
-
showEnvVarsInLog = 0;
|
399
|
-
};
|
400
|
-
/* End PBXShellScriptBuildPhase section */
|
401
|
-
|
402
|
-
/* Begin PBXSourcesBuildPhase section */
|
403
|
-
00E356EA1AD99517003FC87E /* Sources */ = {
|
404
|
-
isa = PBXSourcesBuildPhase;
|
405
|
-
buildActionMask = 2147483647;
|
406
|
-
files = (
|
407
|
-
00E356F31AD99517003FC87E /* templateTests.m in Sources */,
|
408
|
-
);
|
409
|
-
runOnlyForDeploymentPostprocessing = 0;
|
410
|
-
};
|
411
|
-
13B07F871A680F5B00A75B9A /* Sources */ = {
|
412
|
-
isa = PBXSourcesBuildPhase;
|
413
|
-
buildActionMask = 2147483647;
|
414
|
-
files = (
|
415
|
-
13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */,
|
416
|
-
13B07FC11A68108700A75B9A /* main.m in Sources */,
|
417
|
-
);
|
418
|
-
runOnlyForDeploymentPostprocessing = 0;
|
419
|
-
};
|
420
|
-
/* End PBXSourcesBuildPhase section */
|
421
|
-
|
422
|
-
/* Begin PBXTargetDependency section */
|
423
|
-
00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
|
424
|
-
isa = PBXTargetDependency;
|
425
|
-
target = 13B07F861A680F5B00A75B9A /* template */;
|
426
|
-
targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
|
427
|
-
};
|
428
|
-
/* End PBXTargetDependency section */
|
429
|
-
|
430
|
-
/* Begin XCBuildConfiguration section */
|
431
|
-
00E356F61AD99517003FC87E /* Debug */ = {
|
432
|
-
isa = XCBuildConfiguration;
|
433
|
-
baseConfigurationReference = 5B7EB9410499542E8C5724F5 /* Pods-template-templateTests.debug.xcconfig */;
|
434
|
-
buildSettings = {
|
435
|
-
BUNDLE_LOADER = "$(TEST_HOST)";
|
436
|
-
GCC_PREPROCESSOR_DEFINITIONS = (
|
437
|
-
"DEBUG=1",
|
438
|
-
"$(inherited)",
|
439
|
-
);
|
440
|
-
INFOPLIST_FILE = templateTests/Info.plist;
|
441
|
-
IPHONEOS_DEPLOYMENT_TARGET = 12.4;
|
442
|
-
LD_RUNPATH_SEARCH_PATHS = (
|
443
|
-
"$(inherited)",
|
444
|
-
"@executable_path/Frameworks",
|
445
|
-
"@loader_path/Frameworks",
|
446
|
-
);
|
447
|
-
OTHER_LDFLAGS = (
|
448
|
-
"-ObjC",
|
449
|
-
"-lc++",
|
450
|
-
"$(inherited)",
|
451
|
-
);
|
452
|
-
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
|
453
|
-
PRODUCT_NAME = "$(TARGET_NAME)";
|
454
|
-
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/template.app/template";
|
455
|
-
};
|
456
|
-
name = Debug;
|
457
|
-
};
|
458
|
-
00E356F71AD99517003FC87E /* Release */ = {
|
459
|
-
isa = XCBuildConfiguration;
|
460
|
-
baseConfigurationReference = 89C6BE57DB24E9ADA2F236DE /* Pods-template-templateTests.release.xcconfig */;
|
461
|
-
buildSettings = {
|
462
|
-
BUNDLE_LOADER = "$(TEST_HOST)";
|
463
|
-
COPY_PHASE_STRIP = NO;
|
464
|
-
INFOPLIST_FILE = templateTests/Info.plist;
|
465
|
-
IPHONEOS_DEPLOYMENT_TARGET = 12.4;
|
466
|
-
LD_RUNPATH_SEARCH_PATHS = (
|
467
|
-
"$(inherited)",
|
468
|
-
"@executable_path/Frameworks",
|
469
|
-
"@loader_path/Frameworks",
|
470
|
-
);
|
471
|
-
OTHER_LDFLAGS = (
|
472
|
-
"-ObjC",
|
473
|
-
"-lc++",
|
474
|
-
"$(inherited)",
|
475
|
-
);
|
476
|
-
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
|
477
|
-
PRODUCT_NAME = "$(TARGET_NAME)";
|
478
|
-
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/template.app/template";
|
479
|
-
};
|
480
|
-
name = Release;
|
481
|
-
};
|
482
|
-
13B07F941A680F5B00A75B9A /* Debug */ = {
|
483
|
-
isa = XCBuildConfiguration;
|
484
|
-
baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-template.debug.xcconfig */;
|
485
|
-
buildSettings = {
|
486
|
-
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
487
|
-
CLANG_ENABLE_MODULES = YES;
|
488
|
-
CURRENT_PROJECT_VERSION = 1;
|
489
|
-
ENABLE_BITCODE = NO;
|
490
|
-
INFOPLIST_FILE = template/Info.plist;
|
491
|
-
LD_RUNPATH_SEARCH_PATHS = (
|
492
|
-
"$(inherited)",
|
493
|
-
"@executable_path/Frameworks",
|
494
|
-
);
|
495
|
-
MARKETING_VERSION = 1.0;
|
496
|
-
OTHER_LDFLAGS = (
|
497
|
-
"$(inherited)",
|
498
|
-
"-ObjC",
|
499
|
-
"-lc++",
|
500
|
-
);
|
501
|
-
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
|
502
|
-
PRODUCT_NAME = template;
|
503
|
-
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
504
|
-
SWIFT_VERSION = 5.0;
|
505
|
-
VERSIONING_SYSTEM = "apple-generic";
|
506
|
-
};
|
507
|
-
name = Debug;
|
508
|
-
};
|
509
|
-
13B07F951A680F5B00A75B9A /* Release */ = {
|
510
|
-
isa = XCBuildConfiguration;
|
511
|
-
baseConfigurationReference = 5709B34CF0A7D63546082F79 /* Pods-template.release.xcconfig */;
|
512
|
-
buildSettings = {
|
513
|
-
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
514
|
-
CLANG_ENABLE_MODULES = YES;
|
515
|
-
CURRENT_PROJECT_VERSION = 1;
|
516
|
-
INFOPLIST_FILE = template/Info.plist;
|
517
|
-
LD_RUNPATH_SEARCH_PATHS = (
|
518
|
-
"$(inherited)",
|
519
|
-
"@executable_path/Frameworks",
|
520
|
-
);
|
521
|
-
MARKETING_VERSION = 1.0;
|
522
|
-
OTHER_LDFLAGS = (
|
523
|
-
"$(inherited)",
|
524
|
-
"-ObjC",
|
525
|
-
"-lc++",
|
526
|
-
);
|
527
|
-
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
|
528
|
-
PRODUCT_NAME = template;
|
529
|
-
SWIFT_VERSION = 5.0;
|
530
|
-
VERSIONING_SYSTEM = "apple-generic";
|
531
|
-
};
|
532
|
-
name = Release;
|
533
|
-
};
|
534
|
-
83CBBA201A601CBA00E9B192 /* Debug */ = {
|
535
|
-
isa = XCBuildConfiguration;
|
536
|
-
buildSettings = {
|
537
|
-
ALWAYS_SEARCH_USER_PATHS = NO;
|
538
|
-
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
539
|
-
CLANG_CXX_LANGUAGE_STANDARD = "c++17";
|
540
|
-
CLANG_CXX_LIBRARY = "libc++";
|
541
|
-
CLANG_ENABLE_MODULES = YES;
|
542
|
-
CLANG_ENABLE_OBJC_ARC = YES;
|
543
|
-
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
544
|
-
CLANG_WARN_BOOL_CONVERSION = YES;
|
545
|
-
CLANG_WARN_COMMA = YES;
|
546
|
-
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
547
|
-
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
548
|
-
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
549
|
-
CLANG_WARN_EMPTY_BODY = YES;
|
550
|
-
CLANG_WARN_ENUM_CONVERSION = YES;
|
551
|
-
CLANG_WARN_INFINITE_RECURSION = YES;
|
552
|
-
CLANG_WARN_INT_CONVERSION = YES;
|
553
|
-
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
554
|
-
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
555
|
-
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
556
|
-
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
557
|
-
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
558
|
-
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
559
|
-
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
560
|
-
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
561
|
-
CLANG_WARN_UNREACHABLE_CODE = YES;
|
562
|
-
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
563
|
-
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
564
|
-
COPY_PHASE_STRIP = NO;
|
565
|
-
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
566
|
-
ENABLE_TESTABILITY = YES;
|
567
|
-
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386;
|
568
|
-
GCC_C_LANGUAGE_STANDARD = gnu99;
|
569
|
-
GCC_DYNAMIC_NO_PIC = NO;
|
570
|
-
GCC_NO_COMMON_BLOCKS = YES;
|
571
|
-
GCC_OPTIMIZATION_LEVEL = 0;
|
572
|
-
GCC_PREPROCESSOR_DEFINITIONS = (
|
573
|
-
"DEBUG=1",
|
574
|
-
"$(inherited)",
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
|
579
|
-
|
580
|
-
|
581
|
-
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
"\"$(
|
591
|
-
"\"$(
|
592
|
-
|
593
|
-
|
594
|
-
|
595
|
-
|
596
|
-
|
597
|
-
|
598
|
-
"
|
599
|
-
"-
|
600
|
-
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
|
612
|
-
|
613
|
-
|
614
|
-
|
615
|
-
|
616
|
-
|
617
|
-
|
618
|
-
|
619
|
-
|
620
|
-
|
621
|
-
|
622
|
-
|
623
|
-
|
624
|
-
|
625
|
-
|
626
|
-
|
627
|
-
|
628
|
-
|
629
|
-
|
630
|
-
|
631
|
-
|
632
|
-
|
633
|
-
|
634
|
-
|
635
|
-
|
636
|
-
|
637
|
-
|
638
|
-
|
639
|
-
|
640
|
-
|
641
|
-
|
642
|
-
|
643
|
-
|
644
|
-
|
645
|
-
|
646
|
-
|
647
|
-
|
648
|
-
|
649
|
-
|
650
|
-
|
651
|
-
|
652
|
-
|
653
|
-
|
654
|
-
|
655
|
-
|
656
|
-
|
657
|
-
|
658
|
-
|
659
|
-
|
660
|
-
|
661
|
-
"
|
662
|
-
|
663
|
-
|
664
|
-
|
665
|
-
|
666
|
-
|
667
|
-
|
668
|
-
|
669
|
-
|
670
|
-
|
671
|
-
|
672
|
-
|
673
|
-
|
674
|
-
|
675
|
-
|
676
|
-
|
677
|
-
|
678
|
-
|
679
|
-
|
680
|
-
|
681
|
-
|
682
|
-
|
683
|
-
|
684
|
-
|
685
|
-
|
686
|
-
|
687
|
-
|
688
|
-
|
689
|
-
|
690
|
-
|
691
|
-
|
692
|
-
|
693
|
-
|
694
|
-
|
695
|
-
|
696
|
-
|
697
|
-
|
698
|
-
|
699
|
-
|
700
|
-
|
701
|
-
/*
|
702
|
-
|
703
|
-
|
704
|
-
|
1
|
+
// !$*UTF8*$!
|
2
|
+
{
|
3
|
+
archiveVersion = 1;
|
4
|
+
classes = {
|
5
|
+
};
|
6
|
+
objectVersion = 54;
|
7
|
+
objects = {
|
8
|
+
|
9
|
+
/* Begin PBXBuildFile section */
|
10
|
+
00E356F31AD99517003FC87E /* templateTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* templateTests.m */; };
|
11
|
+
0C80B921A6F3F58F76C31292 /* libPods-template.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-template.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
|
+
7699B88040F8A987B510C191 /* libPods-template-templateTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 19F6CBCC0A4E27FBF8BF4A61 /* libPods-template-templateTests.a */; };
|
16
|
+
81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
|
17
|
+
/* End PBXBuildFile section */
|
18
|
+
|
19
|
+
/* Begin PBXContainerItemProxy section */
|
20
|
+
00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
|
21
|
+
isa = PBXContainerItemProxy;
|
22
|
+
containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
|
23
|
+
proxyType = 1;
|
24
|
+
remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
|
25
|
+
remoteInfo = template;
|
26
|
+
};
|
27
|
+
/* End PBXContainerItemProxy section */
|
28
|
+
|
29
|
+
/* Begin PBXFileReference section */
|
30
|
+
00E356EE1AD99517003FC87E /* templateTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = templateTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
31
|
+
00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
32
|
+
00E356F21AD99517003FC87E /* templateTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = templateTests.m; sourceTree = "<group>"; };
|
33
|
+
13B07F961A680F5B00A75B9A /* template.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = template.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
34
|
+
13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = template/AppDelegate.h; sourceTree = "<group>"; };
|
35
|
+
13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = template/AppDelegate.mm; sourceTree = "<group>"; };
|
36
|
+
13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = template/Images.xcassets; sourceTree = "<group>"; };
|
37
|
+
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = template/Info.plist; sourceTree = "<group>"; };
|
38
|
+
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = template/main.m; sourceTree = "<group>"; };
|
39
|
+
19F6CBCC0A4E27FBF8BF4A61 /* libPods-template-templateTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-template-templateTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
40
|
+
3B4392A12AC88292D35C810B /* Pods-template.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-template.debug.xcconfig"; path = "Target Support Files/Pods-template/Pods-template.debug.xcconfig"; sourceTree = "<group>"; };
|
41
|
+
5709B34CF0A7D63546082F79 /* Pods-template.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-template.release.xcconfig"; path = "Target Support Files/Pods-template/Pods-template.release.xcconfig"; sourceTree = "<group>"; };
|
42
|
+
5B7EB9410499542E8C5724F5 /* Pods-template-templateTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-template-templateTests.debug.xcconfig"; path = "Target Support Files/Pods-template-templateTests/Pods-template-templateTests.debug.xcconfig"; sourceTree = "<group>"; };
|
43
|
+
5DCACB8F33CDC322A6C60F78 /* libPods-template.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-template.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
44
|
+
81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = template/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
45
|
+
89C6BE57DB24E9ADA2F236DE /* Pods-template-templateTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-template-templateTests.release.xcconfig"; path = "Target Support Files/Pods-template-templateTests/Pods-template-templateTests.release.xcconfig"; sourceTree = "<group>"; };
|
46
|
+
ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
|
47
|
+
/* End PBXFileReference section */
|
48
|
+
|
49
|
+
/* Begin PBXFrameworksBuildPhase section */
|
50
|
+
00E356EB1AD99517003FC87E /* Frameworks */ = {
|
51
|
+
isa = PBXFrameworksBuildPhase;
|
52
|
+
buildActionMask = 2147483647;
|
53
|
+
files = (
|
54
|
+
7699B88040F8A987B510C191 /* libPods-template-templateTests.a in Frameworks */,
|
55
|
+
);
|
56
|
+
runOnlyForDeploymentPostprocessing = 0;
|
57
|
+
};
|
58
|
+
13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
|
59
|
+
isa = PBXFrameworksBuildPhase;
|
60
|
+
buildActionMask = 2147483647;
|
61
|
+
files = (
|
62
|
+
0C80B921A6F3F58F76C31292 /* libPods-template.a in Frameworks */,
|
63
|
+
);
|
64
|
+
runOnlyForDeploymentPostprocessing = 0;
|
65
|
+
};
|
66
|
+
/* End PBXFrameworksBuildPhase section */
|
67
|
+
|
68
|
+
/* Begin PBXGroup section */
|
69
|
+
00E356EF1AD99517003FC87E /* templateTests */ = {
|
70
|
+
isa = PBXGroup;
|
71
|
+
children = (
|
72
|
+
00E356F21AD99517003FC87E /* templateTests.m */,
|
73
|
+
00E356F01AD99517003FC87E /* Supporting Files */,
|
74
|
+
);
|
75
|
+
path = templateTests;
|
76
|
+
sourceTree = "<group>";
|
77
|
+
};
|
78
|
+
00E356F01AD99517003FC87E /* Supporting Files */ = {
|
79
|
+
isa = PBXGroup;
|
80
|
+
children = (
|
81
|
+
00E356F11AD99517003FC87E /* Info.plist */,
|
82
|
+
);
|
83
|
+
name = "Supporting Files";
|
84
|
+
sourceTree = "<group>";
|
85
|
+
};
|
86
|
+
13B07FAE1A68108700A75B9A /* template */ = {
|
87
|
+
isa = PBXGroup;
|
88
|
+
children = (
|
89
|
+
13B07FAF1A68108700A75B9A /* AppDelegate.h */,
|
90
|
+
13B07FB01A68108700A75B9A /* AppDelegate.mm */,
|
91
|
+
13B07FB51A68108700A75B9A /* Images.xcassets */,
|
92
|
+
13B07FB61A68108700A75B9A /* Info.plist */,
|
93
|
+
81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
|
94
|
+
13B07FB71A68108700A75B9A /* main.m */,
|
95
|
+
);
|
96
|
+
name = template;
|
97
|
+
sourceTree = "<group>";
|
98
|
+
};
|
99
|
+
2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
|
100
|
+
isa = PBXGroup;
|
101
|
+
children = (
|
102
|
+
ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
|
103
|
+
5DCACB8F33CDC322A6C60F78 /* libPods-template.a */,
|
104
|
+
19F6CBCC0A4E27FBF8BF4A61 /* libPods-template-templateTests.a */,
|
105
|
+
);
|
106
|
+
name = Frameworks;
|
107
|
+
sourceTree = "<group>";
|
108
|
+
};
|
109
|
+
832341AE1AAA6A7D00B99B32 /* Libraries */ = {
|
110
|
+
isa = PBXGroup;
|
111
|
+
children = (
|
112
|
+
);
|
113
|
+
name = Libraries;
|
114
|
+
sourceTree = "<group>";
|
115
|
+
};
|
116
|
+
83CBB9F61A601CBA00E9B192 = {
|
117
|
+
isa = PBXGroup;
|
118
|
+
children = (
|
119
|
+
13B07FAE1A68108700A75B9A /* template */,
|
120
|
+
832341AE1AAA6A7D00B99B32 /* Libraries */,
|
121
|
+
00E356EF1AD99517003FC87E /* templateTests */,
|
122
|
+
83CBBA001A601CBA00E9B192 /* Products */,
|
123
|
+
2D16E6871FA4F8E400B85C8A /* Frameworks */,
|
124
|
+
BBD78D7AC51CEA395F1C20DB /* Pods */,
|
125
|
+
);
|
126
|
+
indentWidth = 2;
|
127
|
+
sourceTree = "<group>";
|
128
|
+
tabWidth = 2;
|
129
|
+
usesTabs = 0;
|
130
|
+
};
|
131
|
+
83CBBA001A601CBA00E9B192 /* Products */ = {
|
132
|
+
isa = PBXGroup;
|
133
|
+
children = (
|
134
|
+
13B07F961A680F5B00A75B9A /* template.app */,
|
135
|
+
00E356EE1AD99517003FC87E /* templateTests.xctest */,
|
136
|
+
);
|
137
|
+
name = Products;
|
138
|
+
sourceTree = "<group>";
|
139
|
+
};
|
140
|
+
BBD78D7AC51CEA395F1C20DB /* Pods */ = {
|
141
|
+
isa = PBXGroup;
|
142
|
+
children = (
|
143
|
+
3B4392A12AC88292D35C810B /* Pods-template.debug.xcconfig */,
|
144
|
+
5709B34CF0A7D63546082F79 /* Pods-template.release.xcconfig */,
|
145
|
+
5B7EB9410499542E8C5724F5 /* Pods-template-templateTests.debug.xcconfig */,
|
146
|
+
89C6BE57DB24E9ADA2F236DE /* Pods-template-templateTests.release.xcconfig */,
|
147
|
+
);
|
148
|
+
path = Pods;
|
149
|
+
sourceTree = "<group>";
|
150
|
+
};
|
151
|
+
/* End PBXGroup section */
|
152
|
+
|
153
|
+
/* Begin PBXNativeTarget section */
|
154
|
+
00E356ED1AD99517003FC87E /* templateTests */ = {
|
155
|
+
isa = PBXNativeTarget;
|
156
|
+
buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "templateTests" */;
|
157
|
+
buildPhases = (
|
158
|
+
A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */,
|
159
|
+
00E356EA1AD99517003FC87E /* Sources */,
|
160
|
+
00E356EB1AD99517003FC87E /* Frameworks */,
|
161
|
+
00E356EC1AD99517003FC87E /* Resources */,
|
162
|
+
C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */,
|
163
|
+
F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */,
|
164
|
+
);
|
165
|
+
buildRules = (
|
166
|
+
);
|
167
|
+
dependencies = (
|
168
|
+
00E356F51AD99517003FC87E /* PBXTargetDependency */,
|
169
|
+
);
|
170
|
+
name = templateTests;
|
171
|
+
productName = templateTests;
|
172
|
+
productReference = 00E356EE1AD99517003FC87E /* templateTests.xctest */;
|
173
|
+
productType = "com.apple.product-type.bundle.unit-test";
|
174
|
+
};
|
175
|
+
13B07F861A680F5B00A75B9A /* template */ = {
|
176
|
+
isa = PBXNativeTarget;
|
177
|
+
buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "template" */;
|
178
|
+
buildPhases = (
|
179
|
+
C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */,
|
180
|
+
FD10A7F022414F080027D42C /* Start Packager */,
|
181
|
+
13B07F871A680F5B00A75B9A /* Sources */,
|
182
|
+
13B07F8C1A680F5B00A75B9A /* Frameworks */,
|
183
|
+
13B07F8E1A680F5B00A75B9A /* Resources */,
|
184
|
+
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
|
185
|
+
00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */,
|
186
|
+
E235C05ADACE081382539298 /* [CP] Copy Pods Resources */,
|
187
|
+
);
|
188
|
+
buildRules = (
|
189
|
+
);
|
190
|
+
dependencies = (
|
191
|
+
);
|
192
|
+
name = template;
|
193
|
+
productName = template;
|
194
|
+
productReference = 13B07F961A680F5B00A75B9A /* template.app */;
|
195
|
+
productType = "com.apple.product-type.application";
|
196
|
+
};
|
197
|
+
/* End PBXNativeTarget section */
|
198
|
+
|
199
|
+
/* Begin PBXProject section */
|
200
|
+
83CBB9F71A601CBA00E9B192 /* Project object */ = {
|
201
|
+
isa = PBXProject;
|
202
|
+
attributes = {
|
203
|
+
LastUpgradeCheck = 1210;
|
204
|
+
TargetAttributes = {
|
205
|
+
00E356ED1AD99517003FC87E = {
|
206
|
+
CreatedOnToolsVersion = 6.2;
|
207
|
+
TestTargetID = 13B07F861A680F5B00A75B9A;
|
208
|
+
};
|
209
|
+
13B07F861A680F5B00A75B9A = {
|
210
|
+
LastSwiftMigration = 1120;
|
211
|
+
};
|
212
|
+
};
|
213
|
+
};
|
214
|
+
buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "template" */;
|
215
|
+
compatibilityVersion = "Xcode 12.0";
|
216
|
+
developmentRegion = en;
|
217
|
+
hasScannedForEncodings = 0;
|
218
|
+
knownRegions = (
|
219
|
+
en,
|
220
|
+
Base,
|
221
|
+
);
|
222
|
+
mainGroup = 83CBB9F61A601CBA00E9B192;
|
223
|
+
productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
|
224
|
+
projectDirPath = "";
|
225
|
+
projectRoot = "";
|
226
|
+
targets = (
|
227
|
+
13B07F861A680F5B00A75B9A /* template */,
|
228
|
+
00E356ED1AD99517003FC87E /* templateTests */,
|
229
|
+
);
|
230
|
+
};
|
231
|
+
/* End PBXProject section */
|
232
|
+
|
233
|
+
/* Begin PBXResourcesBuildPhase section */
|
234
|
+
00E356EC1AD99517003FC87E /* Resources */ = {
|
235
|
+
isa = PBXResourcesBuildPhase;
|
236
|
+
buildActionMask = 2147483647;
|
237
|
+
files = (
|
238
|
+
);
|
239
|
+
runOnlyForDeploymentPostprocessing = 0;
|
240
|
+
};
|
241
|
+
13B07F8E1A680F5B00A75B9A /* Resources */ = {
|
242
|
+
isa = PBXResourcesBuildPhase;
|
243
|
+
buildActionMask = 2147483647;
|
244
|
+
files = (
|
245
|
+
81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
|
246
|
+
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
|
247
|
+
);
|
248
|
+
runOnlyForDeploymentPostprocessing = 0;
|
249
|
+
};
|
250
|
+
/* End PBXResourcesBuildPhase section */
|
251
|
+
|
252
|
+
/* Begin PBXShellScriptBuildPhase section */
|
253
|
+
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
|
254
|
+
isa = PBXShellScriptBuildPhase;
|
255
|
+
buildActionMask = 2147483647;
|
256
|
+
files = (
|
257
|
+
);
|
258
|
+
inputPaths = (
|
259
|
+
"$(SRCROOT)/.xcode.env.local",
|
260
|
+
"$(SRCROOT)/.xcode.env",
|
261
|
+
);
|
262
|
+
name = "Bundle React Native code and images";
|
263
|
+
outputPaths = (
|
264
|
+
);
|
265
|
+
runOnlyForDeploymentPostprocessing = 0;
|
266
|
+
shellPath = /bin/sh;
|
267
|
+
shellScript = "set -e\n\nWITH_ENVIRONMENT=\"../node_modules/react-native/scripts/xcode/with-environment.sh\"\nREACT_NATIVE_XCODE=\"../node_modules/react-native/scripts/react-native-xcode.sh\"\n\n/bin/sh -c \"$WITH_ENVIRONMENT $REACT_NATIVE_XCODE\"\n";
|
268
|
+
};
|
269
|
+
00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */ = {
|
270
|
+
isa = PBXShellScriptBuildPhase;
|
271
|
+
buildActionMask = 2147483647;
|
272
|
+
files = (
|
273
|
+
);
|
274
|
+
inputFileListPaths = (
|
275
|
+
"${PODS_ROOT}/Target Support Files/Pods-template/Pods-template-frameworks-${CONFIGURATION}-input-files.xcfilelist",
|
276
|
+
);
|
277
|
+
name = "[CP] Embed Pods Frameworks";
|
278
|
+
outputFileListPaths = (
|
279
|
+
"${PODS_ROOT}/Target Support Files/Pods-template/Pods-template-frameworks-${CONFIGURATION}-output-files.xcfilelist",
|
280
|
+
);
|
281
|
+
runOnlyForDeploymentPostprocessing = 0;
|
282
|
+
shellPath = /bin/sh;
|
283
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-template/Pods-template-frameworks.sh\"\n";
|
284
|
+
showEnvVarsInLog = 0;
|
285
|
+
};
|
286
|
+
A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */ = {
|
287
|
+
isa = PBXShellScriptBuildPhase;
|
288
|
+
buildActionMask = 2147483647;
|
289
|
+
files = (
|
290
|
+
);
|
291
|
+
inputFileListPaths = (
|
292
|
+
);
|
293
|
+
inputPaths = (
|
294
|
+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
295
|
+
"${PODS_ROOT}/Manifest.lock",
|
296
|
+
);
|
297
|
+
name = "[CP] Check Pods Manifest.lock";
|
298
|
+
outputFileListPaths = (
|
299
|
+
);
|
300
|
+
outputPaths = (
|
301
|
+
"$(DERIVED_FILE_DIR)/Pods-template-templateTests-checkManifestLockResult.txt",
|
302
|
+
);
|
303
|
+
runOnlyForDeploymentPostprocessing = 0;
|
304
|
+
shellPath = /bin/sh;
|
305
|
+
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";
|
306
|
+
showEnvVarsInLog = 0;
|
307
|
+
};
|
308
|
+
C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */ = {
|
309
|
+
isa = PBXShellScriptBuildPhase;
|
310
|
+
buildActionMask = 2147483647;
|
311
|
+
files = (
|
312
|
+
);
|
313
|
+
inputFileListPaths = (
|
314
|
+
);
|
315
|
+
inputPaths = (
|
316
|
+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
317
|
+
"${PODS_ROOT}/Manifest.lock",
|
318
|
+
);
|
319
|
+
name = "[CP] Check Pods Manifest.lock";
|
320
|
+
outputFileListPaths = (
|
321
|
+
);
|
322
|
+
outputPaths = (
|
323
|
+
"$(DERIVED_FILE_DIR)/Pods-template-checkManifestLockResult.txt",
|
324
|
+
);
|
325
|
+
runOnlyForDeploymentPostprocessing = 0;
|
326
|
+
shellPath = /bin/sh;
|
327
|
+
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";
|
328
|
+
showEnvVarsInLog = 0;
|
329
|
+
};
|
330
|
+
C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */ = {
|
331
|
+
isa = PBXShellScriptBuildPhase;
|
332
|
+
buildActionMask = 2147483647;
|
333
|
+
files = (
|
334
|
+
);
|
335
|
+
inputFileListPaths = (
|
336
|
+
"${PODS_ROOT}/Target Support Files/Pods-template-templateTests/Pods-template-templateTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
|
337
|
+
);
|
338
|
+
name = "[CP] Embed Pods Frameworks";
|
339
|
+
outputFileListPaths = (
|
340
|
+
"${PODS_ROOT}/Target Support Files/Pods-template-templateTests/Pods-template-templateTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
|
341
|
+
);
|
342
|
+
runOnlyForDeploymentPostprocessing = 0;
|
343
|
+
shellPath = /bin/sh;
|
344
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-template-templateTests/Pods-template-templateTests-frameworks.sh\"\n";
|
345
|
+
showEnvVarsInLog = 0;
|
346
|
+
};
|
347
|
+
E235C05ADACE081382539298 /* [CP] Copy Pods Resources */ = {
|
348
|
+
isa = PBXShellScriptBuildPhase;
|
349
|
+
buildActionMask = 2147483647;
|
350
|
+
files = (
|
351
|
+
);
|
352
|
+
inputFileListPaths = (
|
353
|
+
"${PODS_ROOT}/Target Support Files/Pods-template/Pods-template-resources-${CONFIGURATION}-input-files.xcfilelist",
|
354
|
+
);
|
355
|
+
name = "[CP] Copy Pods Resources";
|
356
|
+
outputFileListPaths = (
|
357
|
+
"${PODS_ROOT}/Target Support Files/Pods-template/Pods-template-resources-${CONFIGURATION}-output-files.xcfilelist",
|
358
|
+
);
|
359
|
+
runOnlyForDeploymentPostprocessing = 0;
|
360
|
+
shellPath = /bin/sh;
|
361
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-template/Pods-template-resources.sh\"\n";
|
362
|
+
showEnvVarsInLog = 0;
|
363
|
+
};
|
364
|
+
F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */ = {
|
365
|
+
isa = PBXShellScriptBuildPhase;
|
366
|
+
buildActionMask = 2147483647;
|
367
|
+
files = (
|
368
|
+
);
|
369
|
+
inputFileListPaths = (
|
370
|
+
"${PODS_ROOT}/Target Support Files/Pods-template-templateTests/Pods-template-templateTests-resources-${CONFIGURATION}-input-files.xcfilelist",
|
371
|
+
);
|
372
|
+
name = "[CP] Copy Pods Resources";
|
373
|
+
outputFileListPaths = (
|
374
|
+
"${PODS_ROOT}/Target Support Files/Pods-template-templateTests/Pods-template-templateTests-resources-${CONFIGURATION}-output-files.xcfilelist",
|
375
|
+
);
|
376
|
+
runOnlyForDeploymentPostprocessing = 0;
|
377
|
+
shellPath = /bin/sh;
|
378
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-template-templateTests/Pods-template-templateTests-resources.sh\"\n";
|
379
|
+
showEnvVarsInLog = 0;
|
380
|
+
};
|
381
|
+
FD10A7F022414F080027D42C /* Start Packager */ = {
|
382
|
+
isa = PBXShellScriptBuildPhase;
|
383
|
+
buildActionMask = 2147483647;
|
384
|
+
files = (
|
385
|
+
);
|
386
|
+
inputFileListPaths = (
|
387
|
+
);
|
388
|
+
inputPaths = (
|
389
|
+
);
|
390
|
+
name = "Start Packager";
|
391
|
+
outputFileListPaths = (
|
392
|
+
);
|
393
|
+
outputPaths = (
|
394
|
+
);
|
395
|
+
runOnlyForDeploymentPostprocessing = 0;
|
396
|
+
shellPath = /bin/sh;
|
397
|
+
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";
|
398
|
+
showEnvVarsInLog = 0;
|
399
|
+
};
|
400
|
+
/* End PBXShellScriptBuildPhase section */
|
401
|
+
|
402
|
+
/* Begin PBXSourcesBuildPhase section */
|
403
|
+
00E356EA1AD99517003FC87E /* Sources */ = {
|
404
|
+
isa = PBXSourcesBuildPhase;
|
405
|
+
buildActionMask = 2147483647;
|
406
|
+
files = (
|
407
|
+
00E356F31AD99517003FC87E /* templateTests.m in Sources */,
|
408
|
+
);
|
409
|
+
runOnlyForDeploymentPostprocessing = 0;
|
410
|
+
};
|
411
|
+
13B07F871A680F5B00A75B9A /* Sources */ = {
|
412
|
+
isa = PBXSourcesBuildPhase;
|
413
|
+
buildActionMask = 2147483647;
|
414
|
+
files = (
|
415
|
+
13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */,
|
416
|
+
13B07FC11A68108700A75B9A /* main.m in Sources */,
|
417
|
+
);
|
418
|
+
runOnlyForDeploymentPostprocessing = 0;
|
419
|
+
};
|
420
|
+
/* End PBXSourcesBuildPhase section */
|
421
|
+
|
422
|
+
/* Begin PBXTargetDependency section */
|
423
|
+
00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
|
424
|
+
isa = PBXTargetDependency;
|
425
|
+
target = 13B07F861A680F5B00A75B9A /* template */;
|
426
|
+
targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
|
427
|
+
};
|
428
|
+
/* End PBXTargetDependency section */
|
429
|
+
|
430
|
+
/* Begin XCBuildConfiguration section */
|
431
|
+
00E356F61AD99517003FC87E /* Debug */ = {
|
432
|
+
isa = XCBuildConfiguration;
|
433
|
+
baseConfigurationReference = 5B7EB9410499542E8C5724F5 /* Pods-template-templateTests.debug.xcconfig */;
|
434
|
+
buildSettings = {
|
435
|
+
BUNDLE_LOADER = "$(TEST_HOST)";
|
436
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
437
|
+
"DEBUG=1",
|
438
|
+
"$(inherited)",
|
439
|
+
);
|
440
|
+
INFOPLIST_FILE = templateTests/Info.plist;
|
441
|
+
IPHONEOS_DEPLOYMENT_TARGET = 12.4;
|
442
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
443
|
+
"$(inherited)",
|
444
|
+
"@executable_path/Frameworks",
|
445
|
+
"@loader_path/Frameworks",
|
446
|
+
);
|
447
|
+
OTHER_LDFLAGS = (
|
448
|
+
"-ObjC",
|
449
|
+
"-lc++",
|
450
|
+
"$(inherited)",
|
451
|
+
);
|
452
|
+
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
|
453
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
454
|
+
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/template.app/template";
|
455
|
+
};
|
456
|
+
name = Debug;
|
457
|
+
};
|
458
|
+
00E356F71AD99517003FC87E /* Release */ = {
|
459
|
+
isa = XCBuildConfiguration;
|
460
|
+
baseConfigurationReference = 89C6BE57DB24E9ADA2F236DE /* Pods-template-templateTests.release.xcconfig */;
|
461
|
+
buildSettings = {
|
462
|
+
BUNDLE_LOADER = "$(TEST_HOST)";
|
463
|
+
COPY_PHASE_STRIP = NO;
|
464
|
+
INFOPLIST_FILE = templateTests/Info.plist;
|
465
|
+
IPHONEOS_DEPLOYMENT_TARGET = 12.4;
|
466
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
467
|
+
"$(inherited)",
|
468
|
+
"@executable_path/Frameworks",
|
469
|
+
"@loader_path/Frameworks",
|
470
|
+
);
|
471
|
+
OTHER_LDFLAGS = (
|
472
|
+
"-ObjC",
|
473
|
+
"-lc++",
|
474
|
+
"$(inherited)",
|
475
|
+
);
|
476
|
+
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
|
477
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
478
|
+
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/template.app/template";
|
479
|
+
};
|
480
|
+
name = Release;
|
481
|
+
};
|
482
|
+
13B07F941A680F5B00A75B9A /* Debug */ = {
|
483
|
+
isa = XCBuildConfiguration;
|
484
|
+
baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-template.debug.xcconfig */;
|
485
|
+
buildSettings = {
|
486
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
487
|
+
CLANG_ENABLE_MODULES = YES;
|
488
|
+
CURRENT_PROJECT_VERSION = 1;
|
489
|
+
ENABLE_BITCODE = NO;
|
490
|
+
INFOPLIST_FILE = template/Info.plist;
|
491
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
492
|
+
"$(inherited)",
|
493
|
+
"@executable_path/Frameworks",
|
494
|
+
);
|
495
|
+
MARKETING_VERSION = 1.0;
|
496
|
+
OTHER_LDFLAGS = (
|
497
|
+
"$(inherited)",
|
498
|
+
"-ObjC",
|
499
|
+
"-lc++",
|
500
|
+
);
|
501
|
+
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
|
502
|
+
PRODUCT_NAME = template;
|
503
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
504
|
+
SWIFT_VERSION = 5.0;
|
505
|
+
VERSIONING_SYSTEM = "apple-generic";
|
506
|
+
};
|
507
|
+
name = Debug;
|
508
|
+
};
|
509
|
+
13B07F951A680F5B00A75B9A /* Release */ = {
|
510
|
+
isa = XCBuildConfiguration;
|
511
|
+
baseConfigurationReference = 5709B34CF0A7D63546082F79 /* Pods-template.release.xcconfig */;
|
512
|
+
buildSettings = {
|
513
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
514
|
+
CLANG_ENABLE_MODULES = YES;
|
515
|
+
CURRENT_PROJECT_VERSION = 1;
|
516
|
+
INFOPLIST_FILE = template/Info.plist;
|
517
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
518
|
+
"$(inherited)",
|
519
|
+
"@executable_path/Frameworks",
|
520
|
+
);
|
521
|
+
MARKETING_VERSION = 1.0;
|
522
|
+
OTHER_LDFLAGS = (
|
523
|
+
"$(inherited)",
|
524
|
+
"-ObjC",
|
525
|
+
"-lc++",
|
526
|
+
);
|
527
|
+
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
|
528
|
+
PRODUCT_NAME = template;
|
529
|
+
SWIFT_VERSION = 5.0;
|
530
|
+
VERSIONING_SYSTEM = "apple-generic";
|
531
|
+
};
|
532
|
+
name = Release;
|
533
|
+
};
|
534
|
+
83CBBA201A601CBA00E9B192 /* Debug */ = {
|
535
|
+
isa = XCBuildConfiguration;
|
536
|
+
buildSettings = {
|
537
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
538
|
+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
539
|
+
CLANG_CXX_LANGUAGE_STANDARD = "c++17";
|
540
|
+
CLANG_CXX_LIBRARY = "libc++";
|
541
|
+
CLANG_ENABLE_MODULES = YES;
|
542
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
543
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
544
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
545
|
+
CLANG_WARN_COMMA = YES;
|
546
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
547
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
548
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
549
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
550
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
551
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
552
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
553
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
554
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
555
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
556
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
557
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
558
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
559
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
560
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
561
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
562
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
563
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
564
|
+
COPY_PHASE_STRIP = NO;
|
565
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
566
|
+
ENABLE_TESTABILITY = YES;
|
567
|
+
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386;
|
568
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
569
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
570
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
571
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
572
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
573
|
+
"DEBUG=1",
|
574
|
+
"$(inherited)",
|
575
|
+
_LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION,
|
576
|
+
);
|
577
|
+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
578
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
579
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
580
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
581
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
582
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
583
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
584
|
+
IPHONEOS_DEPLOYMENT_TARGET = 12.4;
|
585
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
586
|
+
/usr/lib/swift,
|
587
|
+
"$(inherited)",
|
588
|
+
);
|
589
|
+
LIBRARY_SEARCH_PATHS = (
|
590
|
+
"\"$(SDKROOT)/usr/lib/swift\"",
|
591
|
+
"\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
|
592
|
+
"\"$(inherited)\"",
|
593
|
+
);
|
594
|
+
MTL_ENABLE_DEBUG_INFO = YES;
|
595
|
+
ONLY_ACTIVE_ARCH = YES;
|
596
|
+
OTHER_CFLAGS = "$(inherited)";
|
597
|
+
OTHER_CPLUSPLUSFLAGS = (
|
598
|
+
"$(OTHER_CFLAGS)",
|
599
|
+
"-DFOLLY_NO_CONFIG",
|
600
|
+
"-DFOLLY_MOBILE=1",
|
601
|
+
"-DFOLLY_USE_LIBCPP=1",
|
602
|
+
);
|
603
|
+
OTHER_LDFLAGS = (
|
604
|
+
"$(inherited)",
|
605
|
+
" ",
|
606
|
+
);
|
607
|
+
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
|
608
|
+
SDKROOT = iphoneos;
|
609
|
+
};
|
610
|
+
name = Debug;
|
611
|
+
};
|
612
|
+
83CBBA211A601CBA00E9B192 /* Release */ = {
|
613
|
+
isa = XCBuildConfiguration;
|
614
|
+
buildSettings = {
|
615
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
616
|
+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
617
|
+
CLANG_CXX_LANGUAGE_STANDARD = "c++17";
|
618
|
+
CLANG_CXX_LIBRARY = "libc++";
|
619
|
+
CLANG_ENABLE_MODULES = YES;
|
620
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
621
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
622
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
623
|
+
CLANG_WARN_COMMA = YES;
|
624
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
625
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
626
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
627
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
628
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
629
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
630
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
631
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
632
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
633
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
634
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
635
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
636
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
637
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
638
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
639
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
640
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
641
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
642
|
+
COPY_PHASE_STRIP = YES;
|
643
|
+
ENABLE_NS_ASSERTIONS = NO;
|
644
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
645
|
+
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386;
|
646
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
647
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
648
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
649
|
+
"$(inherited)",
|
650
|
+
_LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION,
|
651
|
+
);
|
652
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
653
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
654
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
655
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
656
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
657
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
658
|
+
IPHONEOS_DEPLOYMENT_TARGET = 12.4;
|
659
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
660
|
+
/usr/lib/swift,
|
661
|
+
"$(inherited)",
|
662
|
+
);
|
663
|
+
LIBRARY_SEARCH_PATHS = (
|
664
|
+
"\"$(SDKROOT)/usr/lib/swift\"",
|
665
|
+
"\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
|
666
|
+
"\"$(inherited)\"",
|
667
|
+
);
|
668
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
669
|
+
OTHER_CFLAGS = "$(inherited)";
|
670
|
+
OTHER_CPLUSPLUSFLAGS = (
|
671
|
+
"$(OTHER_CFLAGS)",
|
672
|
+
"-DFOLLY_NO_CONFIG",
|
673
|
+
"-DFOLLY_MOBILE=1",
|
674
|
+
"-DFOLLY_USE_LIBCPP=1",
|
675
|
+
);
|
676
|
+
OTHER_LDFLAGS = (
|
677
|
+
"$(inherited)",
|
678
|
+
" ",
|
679
|
+
);
|
680
|
+
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
|
681
|
+
SDKROOT = iphoneos;
|
682
|
+
VALIDATE_PRODUCT = YES;
|
683
|
+
};
|
684
|
+
name = Release;
|
685
|
+
};
|
686
|
+
/* End XCBuildConfiguration section */
|
687
|
+
|
688
|
+
/* Begin XCConfigurationList section */
|
689
|
+
00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "templateTests" */ = {
|
690
|
+
isa = XCConfigurationList;
|
691
|
+
buildConfigurations = (
|
692
|
+
00E356F61AD99517003FC87E /* Debug */,
|
693
|
+
00E356F71AD99517003FC87E /* Release */,
|
694
|
+
);
|
695
|
+
defaultConfigurationIsVisible = 0;
|
696
|
+
defaultConfigurationName = Release;
|
697
|
+
};
|
698
|
+
13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "template" */ = {
|
699
|
+
isa = XCConfigurationList;
|
700
|
+
buildConfigurations = (
|
701
|
+
13B07F941A680F5B00A75B9A /* Debug */,
|
702
|
+
13B07F951A680F5B00A75B9A /* Release */,
|
703
|
+
);
|
704
|
+
defaultConfigurationIsVisible = 0;
|
705
|
+
defaultConfigurationName = Release;
|
706
|
+
};
|
707
|
+
83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "template" */ = {
|
708
|
+
isa = XCConfigurationList;
|
709
|
+
buildConfigurations = (
|
710
|
+
83CBBA201A601CBA00E9B192 /* Debug */,
|
711
|
+
83CBBA211A601CBA00E9B192 /* Release */,
|
712
|
+
);
|
713
|
+
defaultConfigurationIsVisible = 0;
|
714
|
+
defaultConfigurationName = Release;
|
715
|
+
};
|
716
|
+
/* End XCConfigurationList section */
|
717
|
+
};
|
718
|
+
rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
|
719
|
+
}
|