tsrntemp 1.1.3 → 1.2.0
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/.watchmanconfig +1 -1
- package/template/App.tsx +5 -8
- package/template/Gemfile +5 -2
- 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 +3 -4
- 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 +14 -4
- 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 -0
- 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 +19 -2
- package/template/ios/template.xcworkspace/contents.xcworkspacedata +10 -0
- package/template/jest.config.js +3 -4
- package/template/metro.config.js +7 -13
- package/template/package.json +53 -49
- 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 -18
- package/template/src/pages/Login/index.tsx +50 -0
- package/template/src/pages/Mine/index.tsx +30 -19
- package/template/src/route/BottomTab.tsx +44 -31
- 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 -29
- package/template/src/utils/storage.ts +3 -69
- package/template/tsconfig.json +5 -70
- package/template/yarn.lock +7173 -7346
- package/template.config.js +3 -3
- package/template/.editorconfig +0 -16
- package/template/.node-version +0 -1
- package/template/.ruby-version +0 -1
- 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/routeConfig.ts +0 -11
- package/template/src/route/RouteContainer.tsx +0 -28
- package/template/src/types/RoteConfig.ts +0 -9
- package/template/src/types/RouteParamList.ts +0 -9
@@ -0,0 +1,2008 @@
|
|
1
|
+
/**
|
2
|
+
* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen).
|
3
|
+
*
|
4
|
+
* Do not edit this file as changes may cause incorrect behavior and will be lost
|
5
|
+
* once the code is regenerated.
|
6
|
+
*
|
7
|
+
* @generated by codegen project: GenerateModuleObjCpp
|
8
|
+
*
|
9
|
+
* We create an umbrella header (and corresponding implementation) here since
|
10
|
+
* Cxx compilation in BUCK has a limitation: source-code producing genrule()s
|
11
|
+
* must have a single output. More files => more genrule()s => slower builds.
|
12
|
+
*/
|
13
|
+
|
14
|
+
#import "FBReactNativeSpec.h"
|
15
|
+
|
16
|
+
|
17
|
+
namespace facebook {
|
18
|
+
namespace react {
|
19
|
+
|
20
|
+
static facebook::jsi::Value __hostFunction_NativeAccessibilityInfoSpecJSI_isReduceMotionEnabled(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
21
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "isReduceMotionEnabled", @selector(isReduceMotionEnabled:), args, count);
|
22
|
+
}
|
23
|
+
|
24
|
+
static facebook::jsi::Value __hostFunction_NativeAccessibilityInfoSpecJSI_isTouchExplorationEnabled(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
25
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "isTouchExplorationEnabled", @selector(isTouchExplorationEnabled:), args, count);
|
26
|
+
}
|
27
|
+
|
28
|
+
static facebook::jsi::Value __hostFunction_NativeAccessibilityInfoSpecJSI_isAccessibilityServiceEnabled(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
29
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "isAccessibilityServiceEnabled", @selector(isAccessibilityServiceEnabled:), args, count);
|
30
|
+
}
|
31
|
+
|
32
|
+
static facebook::jsi::Value __hostFunction_NativeAccessibilityInfoSpecJSI_setAccessibilityFocus(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
33
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "setAccessibilityFocus", @selector(setAccessibilityFocus:), args, count);
|
34
|
+
}
|
35
|
+
|
36
|
+
static facebook::jsi::Value __hostFunction_NativeAccessibilityInfoSpecJSI_announceForAccessibility(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
37
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "announceForAccessibility", @selector(announceForAccessibility:), args, count);
|
38
|
+
}
|
39
|
+
|
40
|
+
static facebook::jsi::Value __hostFunction_NativeAccessibilityInfoSpecJSI_getRecommendedTimeoutMillis(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
41
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "getRecommendedTimeoutMillis", @selector(getRecommendedTimeoutMillis:onSuccess:), args, count);
|
42
|
+
}
|
43
|
+
|
44
|
+
NativeAccessibilityInfoSpecJSI::NativeAccessibilityInfoSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
45
|
+
: ObjCTurboModule(params) {
|
46
|
+
|
47
|
+
methodMap_["isReduceMotionEnabled"] = MethodMetadata {1, __hostFunction_NativeAccessibilityInfoSpecJSI_isReduceMotionEnabled};
|
48
|
+
|
49
|
+
|
50
|
+
methodMap_["isTouchExplorationEnabled"] = MethodMetadata {1, __hostFunction_NativeAccessibilityInfoSpecJSI_isTouchExplorationEnabled};
|
51
|
+
|
52
|
+
|
53
|
+
methodMap_["isAccessibilityServiceEnabled"] = MethodMetadata {1, __hostFunction_NativeAccessibilityInfoSpecJSI_isAccessibilityServiceEnabled};
|
54
|
+
|
55
|
+
|
56
|
+
methodMap_["setAccessibilityFocus"] = MethodMetadata {1, __hostFunction_NativeAccessibilityInfoSpecJSI_setAccessibilityFocus};
|
57
|
+
|
58
|
+
|
59
|
+
methodMap_["announceForAccessibility"] = MethodMetadata {1, __hostFunction_NativeAccessibilityInfoSpecJSI_announceForAccessibility};
|
60
|
+
|
61
|
+
|
62
|
+
methodMap_["getRecommendedTimeoutMillis"] = MethodMetadata {2, __hostFunction_NativeAccessibilityInfoSpecJSI_getRecommendedTimeoutMillis};
|
63
|
+
|
64
|
+
}
|
65
|
+
} // namespace react
|
66
|
+
} // namespace facebook
|
67
|
+
@implementation RCTCxxConvert (NativeAccessibilityManager_SpecSetAccessibilityContentSizeMultipliersJSMultipliers)
|
68
|
+
+ (RCTManagedPointer *)JS_NativeAccessibilityManager_SpecSetAccessibilityContentSizeMultipliersJSMultipliers:(id)json
|
69
|
+
{
|
70
|
+
return facebook::react::managedPointer<JS::NativeAccessibilityManager::SpecSetAccessibilityContentSizeMultipliersJSMultipliers>(json);
|
71
|
+
}
|
72
|
+
@end
|
73
|
+
@implementation RCTCxxConvert (NativeAccessibilityManager_SpecAnnounceForAccessibilityWithOptionsOptions)
|
74
|
+
+ (RCTManagedPointer *)JS_NativeAccessibilityManager_SpecAnnounceForAccessibilityWithOptionsOptions:(id)json
|
75
|
+
{
|
76
|
+
return facebook::react::managedPointer<JS::NativeAccessibilityManager::SpecAnnounceForAccessibilityWithOptionsOptions>(json);
|
77
|
+
}
|
78
|
+
@end
|
79
|
+
namespace facebook {
|
80
|
+
namespace react {
|
81
|
+
|
82
|
+
static facebook::jsi::Value __hostFunction_NativeAccessibilityManagerSpecJSI_getCurrentBoldTextState(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
83
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "getCurrentBoldTextState", @selector(getCurrentBoldTextState:onError:), args, count);
|
84
|
+
}
|
85
|
+
|
86
|
+
static facebook::jsi::Value __hostFunction_NativeAccessibilityManagerSpecJSI_getCurrentGrayscaleState(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
87
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "getCurrentGrayscaleState", @selector(getCurrentGrayscaleState:onError:), args, count);
|
88
|
+
}
|
89
|
+
|
90
|
+
static facebook::jsi::Value __hostFunction_NativeAccessibilityManagerSpecJSI_getCurrentInvertColorsState(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
91
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "getCurrentInvertColorsState", @selector(getCurrentInvertColorsState:onError:), args, count);
|
92
|
+
}
|
93
|
+
|
94
|
+
static facebook::jsi::Value __hostFunction_NativeAccessibilityManagerSpecJSI_getCurrentReduceMotionState(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
95
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "getCurrentReduceMotionState", @selector(getCurrentReduceMotionState:onError:), args, count);
|
96
|
+
}
|
97
|
+
|
98
|
+
static facebook::jsi::Value __hostFunction_NativeAccessibilityManagerSpecJSI_getCurrentPrefersCrossFadeTransitionsState(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
99
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "getCurrentPrefersCrossFadeTransitionsState", @selector(getCurrentPrefersCrossFadeTransitionsState:onError:), args, count);
|
100
|
+
}
|
101
|
+
|
102
|
+
static facebook::jsi::Value __hostFunction_NativeAccessibilityManagerSpecJSI_getCurrentReduceTransparencyState(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
103
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "getCurrentReduceTransparencyState", @selector(getCurrentReduceTransparencyState:onError:), args, count);
|
104
|
+
}
|
105
|
+
|
106
|
+
static facebook::jsi::Value __hostFunction_NativeAccessibilityManagerSpecJSI_getCurrentVoiceOverState(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
107
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "getCurrentVoiceOverState", @selector(getCurrentVoiceOverState:onError:), args, count);
|
108
|
+
}
|
109
|
+
|
110
|
+
static facebook::jsi::Value __hostFunction_NativeAccessibilityManagerSpecJSI_setAccessibilityContentSizeMultipliers(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
111
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "setAccessibilityContentSizeMultipliers", @selector(setAccessibilityContentSizeMultipliers:), args, count);
|
112
|
+
}
|
113
|
+
|
114
|
+
static facebook::jsi::Value __hostFunction_NativeAccessibilityManagerSpecJSI_setAccessibilityFocus(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
115
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "setAccessibilityFocus", @selector(setAccessibilityFocus:), args, count);
|
116
|
+
}
|
117
|
+
|
118
|
+
static facebook::jsi::Value __hostFunction_NativeAccessibilityManagerSpecJSI_announceForAccessibility(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
119
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "announceForAccessibility", @selector(announceForAccessibility:), args, count);
|
120
|
+
}
|
121
|
+
|
122
|
+
static facebook::jsi::Value __hostFunction_NativeAccessibilityManagerSpecJSI_announceForAccessibilityWithOptions(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
123
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "announceForAccessibilityWithOptions", @selector(announceForAccessibilityWithOptions:options:), args, count);
|
124
|
+
}
|
125
|
+
|
126
|
+
NativeAccessibilityManagerSpecJSI::NativeAccessibilityManagerSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
127
|
+
: ObjCTurboModule(params) {
|
128
|
+
|
129
|
+
methodMap_["getCurrentBoldTextState"] = MethodMetadata {2, __hostFunction_NativeAccessibilityManagerSpecJSI_getCurrentBoldTextState};
|
130
|
+
|
131
|
+
|
132
|
+
methodMap_["getCurrentGrayscaleState"] = MethodMetadata {2, __hostFunction_NativeAccessibilityManagerSpecJSI_getCurrentGrayscaleState};
|
133
|
+
|
134
|
+
|
135
|
+
methodMap_["getCurrentInvertColorsState"] = MethodMetadata {2, __hostFunction_NativeAccessibilityManagerSpecJSI_getCurrentInvertColorsState};
|
136
|
+
|
137
|
+
|
138
|
+
methodMap_["getCurrentReduceMotionState"] = MethodMetadata {2, __hostFunction_NativeAccessibilityManagerSpecJSI_getCurrentReduceMotionState};
|
139
|
+
|
140
|
+
|
141
|
+
methodMap_["getCurrentPrefersCrossFadeTransitionsState"] = MethodMetadata {2, __hostFunction_NativeAccessibilityManagerSpecJSI_getCurrentPrefersCrossFadeTransitionsState};
|
142
|
+
|
143
|
+
|
144
|
+
methodMap_["getCurrentReduceTransparencyState"] = MethodMetadata {2, __hostFunction_NativeAccessibilityManagerSpecJSI_getCurrentReduceTransparencyState};
|
145
|
+
|
146
|
+
|
147
|
+
methodMap_["getCurrentVoiceOverState"] = MethodMetadata {2, __hostFunction_NativeAccessibilityManagerSpecJSI_getCurrentVoiceOverState};
|
148
|
+
|
149
|
+
|
150
|
+
methodMap_["setAccessibilityContentSizeMultipliers"] = MethodMetadata {1, __hostFunction_NativeAccessibilityManagerSpecJSI_setAccessibilityContentSizeMultipliers};
|
151
|
+
setMethodArgConversionSelector(@"setAccessibilityContentSizeMultipliers", 0, @"JS_NativeAccessibilityManager_SpecSetAccessibilityContentSizeMultipliersJSMultipliers:");
|
152
|
+
|
153
|
+
methodMap_["setAccessibilityFocus"] = MethodMetadata {1, __hostFunction_NativeAccessibilityManagerSpecJSI_setAccessibilityFocus};
|
154
|
+
|
155
|
+
|
156
|
+
methodMap_["announceForAccessibility"] = MethodMetadata {1, __hostFunction_NativeAccessibilityManagerSpecJSI_announceForAccessibility};
|
157
|
+
|
158
|
+
|
159
|
+
methodMap_["announceForAccessibilityWithOptions"] = MethodMetadata {2, __hostFunction_NativeAccessibilityManagerSpecJSI_announceForAccessibilityWithOptions};
|
160
|
+
setMethodArgConversionSelector(@"announceForAccessibilityWithOptions", 1, @"JS_NativeAccessibilityManager_SpecAnnounceForAccessibilityWithOptionsOptions:");
|
161
|
+
}
|
162
|
+
} // namespace react
|
163
|
+
} // namespace facebook
|
164
|
+
@implementation RCTCxxConvert (NativeActionSheetManager_SpecShowActionSheetWithOptionsOptions)
|
165
|
+
+ (RCTManagedPointer *)JS_NativeActionSheetManager_SpecShowActionSheetWithOptionsOptions:(id)json
|
166
|
+
{
|
167
|
+
return facebook::react::managedPointer<JS::NativeActionSheetManager::SpecShowActionSheetWithOptionsOptions>(json);
|
168
|
+
}
|
169
|
+
@end
|
170
|
+
@implementation RCTCxxConvert (NativeActionSheetManager_SpecShowShareActionSheetWithOptionsOptions)
|
171
|
+
+ (RCTManagedPointer *)JS_NativeActionSheetManager_SpecShowShareActionSheetWithOptionsOptions:(id)json
|
172
|
+
{
|
173
|
+
return facebook::react::managedPointer<JS::NativeActionSheetManager::SpecShowShareActionSheetWithOptionsOptions>(json);
|
174
|
+
}
|
175
|
+
@end
|
176
|
+
namespace facebook {
|
177
|
+
namespace react {
|
178
|
+
|
179
|
+
static facebook::jsi::Value __hostFunction_NativeActionSheetManagerSpecJSI_showActionSheetWithOptions(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
180
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "showActionSheetWithOptions", @selector(showActionSheetWithOptions:callback:), args, count);
|
181
|
+
}
|
182
|
+
|
183
|
+
static facebook::jsi::Value __hostFunction_NativeActionSheetManagerSpecJSI_showShareActionSheetWithOptions(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
184
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "showShareActionSheetWithOptions", @selector(showShareActionSheetWithOptions:failureCallback:successCallback:), args, count);
|
185
|
+
}
|
186
|
+
|
187
|
+
static facebook::jsi::Value __hostFunction_NativeActionSheetManagerSpecJSI_dismissActionSheet(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
188
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "dismissActionSheet", @selector(dismissActionSheet), args, count);
|
189
|
+
}
|
190
|
+
|
191
|
+
NativeActionSheetManagerSpecJSI::NativeActionSheetManagerSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
192
|
+
: ObjCTurboModule(params) {
|
193
|
+
|
194
|
+
methodMap_["showActionSheetWithOptions"] = MethodMetadata {2, __hostFunction_NativeActionSheetManagerSpecJSI_showActionSheetWithOptions};
|
195
|
+
setMethodArgConversionSelector(@"showActionSheetWithOptions", 0, @"JS_NativeActionSheetManager_SpecShowActionSheetWithOptionsOptions:");
|
196
|
+
|
197
|
+
methodMap_["showShareActionSheetWithOptions"] = MethodMetadata {3, __hostFunction_NativeActionSheetManagerSpecJSI_showShareActionSheetWithOptions};
|
198
|
+
setMethodArgConversionSelector(@"showShareActionSheetWithOptions", 0, @"JS_NativeActionSheetManager_SpecShowShareActionSheetWithOptionsOptions:");
|
199
|
+
|
200
|
+
methodMap_["dismissActionSheet"] = MethodMetadata {0, __hostFunction_NativeActionSheetManagerSpecJSI_dismissActionSheet};
|
201
|
+
|
202
|
+
}
|
203
|
+
} // namespace react
|
204
|
+
} // namespace facebook
|
205
|
+
@implementation RCTCxxConvert (NativeAlertManager_Args)
|
206
|
+
+ (RCTManagedPointer *)JS_NativeAlertManager_Args:(id)json
|
207
|
+
{
|
208
|
+
return facebook::react::managedPointer<JS::NativeAlertManager::Args>(json);
|
209
|
+
}
|
210
|
+
@end
|
211
|
+
namespace facebook {
|
212
|
+
namespace react {
|
213
|
+
|
214
|
+
static facebook::jsi::Value __hostFunction_NativeAlertManagerSpecJSI_alertWithArgs(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
215
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "alertWithArgs", @selector(alertWithArgs:callback:), args, count);
|
216
|
+
}
|
217
|
+
|
218
|
+
NativeAlertManagerSpecJSI::NativeAlertManagerSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
219
|
+
: ObjCTurboModule(params) {
|
220
|
+
|
221
|
+
methodMap_["alertWithArgs"] = MethodMetadata {2, __hostFunction_NativeAlertManagerSpecJSI_alertWithArgs};
|
222
|
+
setMethodArgConversionSelector(@"alertWithArgs", 0, @"JS_NativeAlertManager_Args:");
|
223
|
+
}
|
224
|
+
} // namespace react
|
225
|
+
} // namespace facebook
|
226
|
+
@implementation RCTCxxConvert (NativeAnimatedModule_EventMapping)
|
227
|
+
+ (RCTManagedPointer *)JS_NativeAnimatedModule_EventMapping:(id)json
|
228
|
+
{
|
229
|
+
return facebook::react::managedPointer<JS::NativeAnimatedModule::EventMapping>(json);
|
230
|
+
}
|
231
|
+
@end
|
232
|
+
namespace facebook {
|
233
|
+
namespace react {
|
234
|
+
|
235
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedModuleSpecJSI_startOperationBatch(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
236
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "startOperationBatch", @selector(startOperationBatch), args, count);
|
237
|
+
}
|
238
|
+
|
239
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedModuleSpecJSI_finishOperationBatch(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
240
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "finishOperationBatch", @selector(finishOperationBatch), args, count);
|
241
|
+
}
|
242
|
+
|
243
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedModuleSpecJSI_createAnimatedNode(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
244
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "createAnimatedNode", @selector(createAnimatedNode:config:), args, count);
|
245
|
+
}
|
246
|
+
|
247
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedModuleSpecJSI_updateAnimatedNodeConfig(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
248
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "updateAnimatedNodeConfig", @selector(updateAnimatedNodeConfig:config:), args, count);
|
249
|
+
}
|
250
|
+
|
251
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedModuleSpecJSI_getValue(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
252
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "getValue", @selector(getValue:saveValueCallback:), args, count);
|
253
|
+
}
|
254
|
+
|
255
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedModuleSpecJSI_startListeningToAnimatedNodeValue(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
256
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "startListeningToAnimatedNodeValue", @selector(startListeningToAnimatedNodeValue:), args, count);
|
257
|
+
}
|
258
|
+
|
259
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedModuleSpecJSI_stopListeningToAnimatedNodeValue(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
260
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "stopListeningToAnimatedNodeValue", @selector(stopListeningToAnimatedNodeValue:), args, count);
|
261
|
+
}
|
262
|
+
|
263
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedModuleSpecJSI_connectAnimatedNodes(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
264
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "connectAnimatedNodes", @selector(connectAnimatedNodes:childTag:), args, count);
|
265
|
+
}
|
266
|
+
|
267
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedModuleSpecJSI_disconnectAnimatedNodes(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
268
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "disconnectAnimatedNodes", @selector(disconnectAnimatedNodes:childTag:), args, count);
|
269
|
+
}
|
270
|
+
|
271
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedModuleSpecJSI_startAnimatingNode(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
272
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "startAnimatingNode", @selector(startAnimatingNode:nodeTag:config:endCallback:), args, count);
|
273
|
+
}
|
274
|
+
|
275
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedModuleSpecJSI_stopAnimation(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
276
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "stopAnimation", @selector(stopAnimation:), args, count);
|
277
|
+
}
|
278
|
+
|
279
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedModuleSpecJSI_setAnimatedNodeValue(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
280
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "setAnimatedNodeValue", @selector(setAnimatedNodeValue:value:), args, count);
|
281
|
+
}
|
282
|
+
|
283
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedModuleSpecJSI_setAnimatedNodeOffset(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
284
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "setAnimatedNodeOffset", @selector(setAnimatedNodeOffset:offset:), args, count);
|
285
|
+
}
|
286
|
+
|
287
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedModuleSpecJSI_flattenAnimatedNodeOffset(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
288
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "flattenAnimatedNodeOffset", @selector(flattenAnimatedNodeOffset:), args, count);
|
289
|
+
}
|
290
|
+
|
291
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedModuleSpecJSI_extractAnimatedNodeOffset(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
292
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "extractAnimatedNodeOffset", @selector(extractAnimatedNodeOffset:), args, count);
|
293
|
+
}
|
294
|
+
|
295
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedModuleSpecJSI_connectAnimatedNodeToView(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
296
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "connectAnimatedNodeToView", @selector(connectAnimatedNodeToView:viewTag:), args, count);
|
297
|
+
}
|
298
|
+
|
299
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedModuleSpecJSI_disconnectAnimatedNodeFromView(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
300
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "disconnectAnimatedNodeFromView", @selector(disconnectAnimatedNodeFromView:viewTag:), args, count);
|
301
|
+
}
|
302
|
+
|
303
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedModuleSpecJSI_restoreDefaultValues(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
304
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "restoreDefaultValues", @selector(restoreDefaultValues:), args, count);
|
305
|
+
}
|
306
|
+
|
307
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedModuleSpecJSI_dropAnimatedNode(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
308
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "dropAnimatedNode", @selector(dropAnimatedNode:), args, count);
|
309
|
+
}
|
310
|
+
|
311
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedModuleSpecJSI_addAnimatedEventToView(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
312
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "addAnimatedEventToView", @selector(addAnimatedEventToView:eventName:eventMapping:), args, count);
|
313
|
+
}
|
314
|
+
|
315
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedModuleSpecJSI_removeAnimatedEventFromView(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
316
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "removeAnimatedEventFromView", @selector(removeAnimatedEventFromView:eventName:animatedNodeTag:), args, count);
|
317
|
+
}
|
318
|
+
|
319
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedModuleSpecJSI_addListener(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
320
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "addListener", @selector(addListener:), args, count);
|
321
|
+
}
|
322
|
+
|
323
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedModuleSpecJSI_removeListeners(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
324
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "removeListeners", @selector(removeListeners:), args, count);
|
325
|
+
}
|
326
|
+
|
327
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedModuleSpecJSI_queueAndExecuteBatchedOperations(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
328
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "queueAndExecuteBatchedOperations", @selector(queueAndExecuteBatchedOperations:), args, count);
|
329
|
+
}
|
330
|
+
|
331
|
+
NativeAnimatedModuleSpecJSI::NativeAnimatedModuleSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
332
|
+
: ObjCTurboModule(params) {
|
333
|
+
|
334
|
+
methodMap_["startOperationBatch"] = MethodMetadata {0, __hostFunction_NativeAnimatedModuleSpecJSI_startOperationBatch};
|
335
|
+
|
336
|
+
|
337
|
+
methodMap_["finishOperationBatch"] = MethodMetadata {0, __hostFunction_NativeAnimatedModuleSpecJSI_finishOperationBatch};
|
338
|
+
|
339
|
+
|
340
|
+
methodMap_["createAnimatedNode"] = MethodMetadata {2, __hostFunction_NativeAnimatedModuleSpecJSI_createAnimatedNode};
|
341
|
+
|
342
|
+
|
343
|
+
methodMap_["updateAnimatedNodeConfig"] = MethodMetadata {2, __hostFunction_NativeAnimatedModuleSpecJSI_updateAnimatedNodeConfig};
|
344
|
+
|
345
|
+
|
346
|
+
methodMap_["getValue"] = MethodMetadata {2, __hostFunction_NativeAnimatedModuleSpecJSI_getValue};
|
347
|
+
|
348
|
+
|
349
|
+
methodMap_["startListeningToAnimatedNodeValue"] = MethodMetadata {1, __hostFunction_NativeAnimatedModuleSpecJSI_startListeningToAnimatedNodeValue};
|
350
|
+
|
351
|
+
|
352
|
+
methodMap_["stopListeningToAnimatedNodeValue"] = MethodMetadata {1, __hostFunction_NativeAnimatedModuleSpecJSI_stopListeningToAnimatedNodeValue};
|
353
|
+
|
354
|
+
|
355
|
+
methodMap_["connectAnimatedNodes"] = MethodMetadata {2, __hostFunction_NativeAnimatedModuleSpecJSI_connectAnimatedNodes};
|
356
|
+
|
357
|
+
|
358
|
+
methodMap_["disconnectAnimatedNodes"] = MethodMetadata {2, __hostFunction_NativeAnimatedModuleSpecJSI_disconnectAnimatedNodes};
|
359
|
+
|
360
|
+
|
361
|
+
methodMap_["startAnimatingNode"] = MethodMetadata {4, __hostFunction_NativeAnimatedModuleSpecJSI_startAnimatingNode};
|
362
|
+
|
363
|
+
|
364
|
+
methodMap_["stopAnimation"] = MethodMetadata {1, __hostFunction_NativeAnimatedModuleSpecJSI_stopAnimation};
|
365
|
+
|
366
|
+
|
367
|
+
methodMap_["setAnimatedNodeValue"] = MethodMetadata {2, __hostFunction_NativeAnimatedModuleSpecJSI_setAnimatedNodeValue};
|
368
|
+
|
369
|
+
|
370
|
+
methodMap_["setAnimatedNodeOffset"] = MethodMetadata {2, __hostFunction_NativeAnimatedModuleSpecJSI_setAnimatedNodeOffset};
|
371
|
+
|
372
|
+
|
373
|
+
methodMap_["flattenAnimatedNodeOffset"] = MethodMetadata {1, __hostFunction_NativeAnimatedModuleSpecJSI_flattenAnimatedNodeOffset};
|
374
|
+
|
375
|
+
|
376
|
+
methodMap_["extractAnimatedNodeOffset"] = MethodMetadata {1, __hostFunction_NativeAnimatedModuleSpecJSI_extractAnimatedNodeOffset};
|
377
|
+
|
378
|
+
|
379
|
+
methodMap_["connectAnimatedNodeToView"] = MethodMetadata {2, __hostFunction_NativeAnimatedModuleSpecJSI_connectAnimatedNodeToView};
|
380
|
+
|
381
|
+
|
382
|
+
methodMap_["disconnectAnimatedNodeFromView"] = MethodMetadata {2, __hostFunction_NativeAnimatedModuleSpecJSI_disconnectAnimatedNodeFromView};
|
383
|
+
|
384
|
+
|
385
|
+
methodMap_["restoreDefaultValues"] = MethodMetadata {1, __hostFunction_NativeAnimatedModuleSpecJSI_restoreDefaultValues};
|
386
|
+
|
387
|
+
|
388
|
+
methodMap_["dropAnimatedNode"] = MethodMetadata {1, __hostFunction_NativeAnimatedModuleSpecJSI_dropAnimatedNode};
|
389
|
+
|
390
|
+
|
391
|
+
methodMap_["addAnimatedEventToView"] = MethodMetadata {3, __hostFunction_NativeAnimatedModuleSpecJSI_addAnimatedEventToView};
|
392
|
+
setMethodArgConversionSelector(@"addAnimatedEventToView", 2, @"JS_NativeAnimatedModule_EventMapping:");
|
393
|
+
|
394
|
+
methodMap_["removeAnimatedEventFromView"] = MethodMetadata {3, __hostFunction_NativeAnimatedModuleSpecJSI_removeAnimatedEventFromView};
|
395
|
+
|
396
|
+
|
397
|
+
methodMap_["addListener"] = MethodMetadata {1, __hostFunction_NativeAnimatedModuleSpecJSI_addListener};
|
398
|
+
|
399
|
+
|
400
|
+
methodMap_["removeListeners"] = MethodMetadata {1, __hostFunction_NativeAnimatedModuleSpecJSI_removeListeners};
|
401
|
+
|
402
|
+
|
403
|
+
methodMap_["queueAndExecuteBatchedOperations"] = MethodMetadata {1, __hostFunction_NativeAnimatedModuleSpecJSI_queueAndExecuteBatchedOperations};
|
404
|
+
|
405
|
+
}
|
406
|
+
} // namespace react
|
407
|
+
} // namespace facebook
|
408
|
+
@implementation RCTCxxConvert (NativeAnimatedTurboModule_EventMapping)
|
409
|
+
+ (RCTManagedPointer *)JS_NativeAnimatedTurboModule_EventMapping:(id)json
|
410
|
+
{
|
411
|
+
return facebook::react::managedPointer<JS::NativeAnimatedTurboModule::EventMapping>(json);
|
412
|
+
}
|
413
|
+
@end
|
414
|
+
namespace facebook {
|
415
|
+
namespace react {
|
416
|
+
|
417
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedTurboModuleSpecJSI_startOperationBatch(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
418
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "startOperationBatch", @selector(startOperationBatch), args, count);
|
419
|
+
}
|
420
|
+
|
421
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedTurboModuleSpecJSI_finishOperationBatch(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
422
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "finishOperationBatch", @selector(finishOperationBatch), args, count);
|
423
|
+
}
|
424
|
+
|
425
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedTurboModuleSpecJSI_createAnimatedNode(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
426
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "createAnimatedNode", @selector(createAnimatedNode:config:), args, count);
|
427
|
+
}
|
428
|
+
|
429
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedTurboModuleSpecJSI_updateAnimatedNodeConfig(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
430
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "updateAnimatedNodeConfig", @selector(updateAnimatedNodeConfig:config:), args, count);
|
431
|
+
}
|
432
|
+
|
433
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedTurboModuleSpecJSI_getValue(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
434
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "getValue", @selector(getValue:saveValueCallback:), args, count);
|
435
|
+
}
|
436
|
+
|
437
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedTurboModuleSpecJSI_startListeningToAnimatedNodeValue(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
438
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "startListeningToAnimatedNodeValue", @selector(startListeningToAnimatedNodeValue:), args, count);
|
439
|
+
}
|
440
|
+
|
441
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedTurboModuleSpecJSI_stopListeningToAnimatedNodeValue(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
442
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "stopListeningToAnimatedNodeValue", @selector(stopListeningToAnimatedNodeValue:), args, count);
|
443
|
+
}
|
444
|
+
|
445
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedTurboModuleSpecJSI_connectAnimatedNodes(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
446
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "connectAnimatedNodes", @selector(connectAnimatedNodes:childTag:), args, count);
|
447
|
+
}
|
448
|
+
|
449
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedTurboModuleSpecJSI_disconnectAnimatedNodes(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
450
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "disconnectAnimatedNodes", @selector(disconnectAnimatedNodes:childTag:), args, count);
|
451
|
+
}
|
452
|
+
|
453
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedTurboModuleSpecJSI_startAnimatingNode(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
454
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "startAnimatingNode", @selector(startAnimatingNode:nodeTag:config:endCallback:), args, count);
|
455
|
+
}
|
456
|
+
|
457
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedTurboModuleSpecJSI_stopAnimation(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
458
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "stopAnimation", @selector(stopAnimation:), args, count);
|
459
|
+
}
|
460
|
+
|
461
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedTurboModuleSpecJSI_setAnimatedNodeValue(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
462
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "setAnimatedNodeValue", @selector(setAnimatedNodeValue:value:), args, count);
|
463
|
+
}
|
464
|
+
|
465
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedTurboModuleSpecJSI_setAnimatedNodeOffset(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
466
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "setAnimatedNodeOffset", @selector(setAnimatedNodeOffset:offset:), args, count);
|
467
|
+
}
|
468
|
+
|
469
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedTurboModuleSpecJSI_flattenAnimatedNodeOffset(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
470
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "flattenAnimatedNodeOffset", @selector(flattenAnimatedNodeOffset:), args, count);
|
471
|
+
}
|
472
|
+
|
473
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedTurboModuleSpecJSI_extractAnimatedNodeOffset(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
474
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "extractAnimatedNodeOffset", @selector(extractAnimatedNodeOffset:), args, count);
|
475
|
+
}
|
476
|
+
|
477
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedTurboModuleSpecJSI_connectAnimatedNodeToView(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
478
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "connectAnimatedNodeToView", @selector(connectAnimatedNodeToView:viewTag:), args, count);
|
479
|
+
}
|
480
|
+
|
481
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedTurboModuleSpecJSI_disconnectAnimatedNodeFromView(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
482
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "disconnectAnimatedNodeFromView", @selector(disconnectAnimatedNodeFromView:viewTag:), args, count);
|
483
|
+
}
|
484
|
+
|
485
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedTurboModuleSpecJSI_restoreDefaultValues(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
486
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "restoreDefaultValues", @selector(restoreDefaultValues:), args, count);
|
487
|
+
}
|
488
|
+
|
489
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedTurboModuleSpecJSI_dropAnimatedNode(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
490
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "dropAnimatedNode", @selector(dropAnimatedNode:), args, count);
|
491
|
+
}
|
492
|
+
|
493
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedTurboModuleSpecJSI_addAnimatedEventToView(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
494
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "addAnimatedEventToView", @selector(addAnimatedEventToView:eventName:eventMapping:), args, count);
|
495
|
+
}
|
496
|
+
|
497
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedTurboModuleSpecJSI_removeAnimatedEventFromView(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
498
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "removeAnimatedEventFromView", @selector(removeAnimatedEventFromView:eventName:animatedNodeTag:), args, count);
|
499
|
+
}
|
500
|
+
|
501
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedTurboModuleSpecJSI_addListener(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
502
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "addListener", @selector(addListener:), args, count);
|
503
|
+
}
|
504
|
+
|
505
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedTurboModuleSpecJSI_removeListeners(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
506
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "removeListeners", @selector(removeListeners:), args, count);
|
507
|
+
}
|
508
|
+
|
509
|
+
static facebook::jsi::Value __hostFunction_NativeAnimatedTurboModuleSpecJSI_queueAndExecuteBatchedOperations(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
510
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "queueAndExecuteBatchedOperations", @selector(queueAndExecuteBatchedOperations:), args, count);
|
511
|
+
}
|
512
|
+
|
513
|
+
NativeAnimatedTurboModuleSpecJSI::NativeAnimatedTurboModuleSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
514
|
+
: ObjCTurboModule(params) {
|
515
|
+
|
516
|
+
methodMap_["startOperationBatch"] = MethodMetadata {0, __hostFunction_NativeAnimatedTurboModuleSpecJSI_startOperationBatch};
|
517
|
+
|
518
|
+
|
519
|
+
methodMap_["finishOperationBatch"] = MethodMetadata {0, __hostFunction_NativeAnimatedTurboModuleSpecJSI_finishOperationBatch};
|
520
|
+
|
521
|
+
|
522
|
+
methodMap_["createAnimatedNode"] = MethodMetadata {2, __hostFunction_NativeAnimatedTurboModuleSpecJSI_createAnimatedNode};
|
523
|
+
|
524
|
+
|
525
|
+
methodMap_["updateAnimatedNodeConfig"] = MethodMetadata {2, __hostFunction_NativeAnimatedTurboModuleSpecJSI_updateAnimatedNodeConfig};
|
526
|
+
|
527
|
+
|
528
|
+
methodMap_["getValue"] = MethodMetadata {2, __hostFunction_NativeAnimatedTurboModuleSpecJSI_getValue};
|
529
|
+
|
530
|
+
|
531
|
+
methodMap_["startListeningToAnimatedNodeValue"] = MethodMetadata {1, __hostFunction_NativeAnimatedTurboModuleSpecJSI_startListeningToAnimatedNodeValue};
|
532
|
+
|
533
|
+
|
534
|
+
methodMap_["stopListeningToAnimatedNodeValue"] = MethodMetadata {1, __hostFunction_NativeAnimatedTurboModuleSpecJSI_stopListeningToAnimatedNodeValue};
|
535
|
+
|
536
|
+
|
537
|
+
methodMap_["connectAnimatedNodes"] = MethodMetadata {2, __hostFunction_NativeAnimatedTurboModuleSpecJSI_connectAnimatedNodes};
|
538
|
+
|
539
|
+
|
540
|
+
methodMap_["disconnectAnimatedNodes"] = MethodMetadata {2, __hostFunction_NativeAnimatedTurboModuleSpecJSI_disconnectAnimatedNodes};
|
541
|
+
|
542
|
+
|
543
|
+
methodMap_["startAnimatingNode"] = MethodMetadata {4, __hostFunction_NativeAnimatedTurboModuleSpecJSI_startAnimatingNode};
|
544
|
+
|
545
|
+
|
546
|
+
methodMap_["stopAnimation"] = MethodMetadata {1, __hostFunction_NativeAnimatedTurboModuleSpecJSI_stopAnimation};
|
547
|
+
|
548
|
+
|
549
|
+
methodMap_["setAnimatedNodeValue"] = MethodMetadata {2, __hostFunction_NativeAnimatedTurboModuleSpecJSI_setAnimatedNodeValue};
|
550
|
+
|
551
|
+
|
552
|
+
methodMap_["setAnimatedNodeOffset"] = MethodMetadata {2, __hostFunction_NativeAnimatedTurboModuleSpecJSI_setAnimatedNodeOffset};
|
553
|
+
|
554
|
+
|
555
|
+
methodMap_["flattenAnimatedNodeOffset"] = MethodMetadata {1, __hostFunction_NativeAnimatedTurboModuleSpecJSI_flattenAnimatedNodeOffset};
|
556
|
+
|
557
|
+
|
558
|
+
methodMap_["extractAnimatedNodeOffset"] = MethodMetadata {1, __hostFunction_NativeAnimatedTurboModuleSpecJSI_extractAnimatedNodeOffset};
|
559
|
+
|
560
|
+
|
561
|
+
methodMap_["connectAnimatedNodeToView"] = MethodMetadata {2, __hostFunction_NativeAnimatedTurboModuleSpecJSI_connectAnimatedNodeToView};
|
562
|
+
|
563
|
+
|
564
|
+
methodMap_["disconnectAnimatedNodeFromView"] = MethodMetadata {2, __hostFunction_NativeAnimatedTurboModuleSpecJSI_disconnectAnimatedNodeFromView};
|
565
|
+
|
566
|
+
|
567
|
+
methodMap_["restoreDefaultValues"] = MethodMetadata {1, __hostFunction_NativeAnimatedTurboModuleSpecJSI_restoreDefaultValues};
|
568
|
+
|
569
|
+
|
570
|
+
methodMap_["dropAnimatedNode"] = MethodMetadata {1, __hostFunction_NativeAnimatedTurboModuleSpecJSI_dropAnimatedNode};
|
571
|
+
|
572
|
+
|
573
|
+
methodMap_["addAnimatedEventToView"] = MethodMetadata {3, __hostFunction_NativeAnimatedTurboModuleSpecJSI_addAnimatedEventToView};
|
574
|
+
setMethodArgConversionSelector(@"addAnimatedEventToView", 2, @"JS_NativeAnimatedTurboModule_EventMapping:");
|
575
|
+
|
576
|
+
methodMap_["removeAnimatedEventFromView"] = MethodMetadata {3, __hostFunction_NativeAnimatedTurboModuleSpecJSI_removeAnimatedEventFromView};
|
577
|
+
|
578
|
+
|
579
|
+
methodMap_["addListener"] = MethodMetadata {1, __hostFunction_NativeAnimatedTurboModuleSpecJSI_addListener};
|
580
|
+
|
581
|
+
|
582
|
+
methodMap_["removeListeners"] = MethodMetadata {1, __hostFunction_NativeAnimatedTurboModuleSpecJSI_removeListeners};
|
583
|
+
|
584
|
+
|
585
|
+
methodMap_["queueAndExecuteBatchedOperations"] = MethodMetadata {1, __hostFunction_NativeAnimatedTurboModuleSpecJSI_queueAndExecuteBatchedOperations};
|
586
|
+
|
587
|
+
}
|
588
|
+
} // namespace react
|
589
|
+
} // namespace facebook
|
590
|
+
|
591
|
+
namespace facebook {
|
592
|
+
namespace react {
|
593
|
+
|
594
|
+
static facebook::jsi::Value __hostFunction_NativeAnimationsDebugModuleSpecJSI_startRecordingFps(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
595
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "startRecordingFps", @selector(startRecordingFps), args, count);
|
596
|
+
}
|
597
|
+
|
598
|
+
static facebook::jsi::Value __hostFunction_NativeAnimationsDebugModuleSpecJSI_stopRecordingFps(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
599
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "stopRecordingFps", @selector(stopRecordingFps:), args, count);
|
600
|
+
}
|
601
|
+
|
602
|
+
NativeAnimationsDebugModuleSpecJSI::NativeAnimationsDebugModuleSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
603
|
+
: ObjCTurboModule(params) {
|
604
|
+
|
605
|
+
methodMap_["startRecordingFps"] = MethodMetadata {0, __hostFunction_NativeAnimationsDebugModuleSpecJSI_startRecordingFps};
|
606
|
+
|
607
|
+
|
608
|
+
methodMap_["stopRecordingFps"] = MethodMetadata {1, __hostFunction_NativeAnimationsDebugModuleSpecJSI_stopRecordingFps};
|
609
|
+
|
610
|
+
}
|
611
|
+
} // namespace react
|
612
|
+
} // namespace facebook
|
613
|
+
|
614
|
+
namespace facebook {
|
615
|
+
namespace react {
|
616
|
+
|
617
|
+
static facebook::jsi::Value __hostFunction_NativeAppStateSpecJSI_getCurrentAppState(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
618
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "getCurrentAppState", @selector(getCurrentAppState:error:), args, count);
|
619
|
+
}
|
620
|
+
|
621
|
+
static facebook::jsi::Value __hostFunction_NativeAppStateSpecJSI_addListener(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
622
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "addListener", @selector(addListener:), args, count);
|
623
|
+
}
|
624
|
+
|
625
|
+
static facebook::jsi::Value __hostFunction_NativeAppStateSpecJSI_removeListeners(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
626
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "removeListeners", @selector(removeListeners:), args, count);
|
627
|
+
}
|
628
|
+
|
629
|
+
static facebook::jsi::Value __hostFunction_NativeAppStateSpecJSI_getConstants(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
630
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, ObjectKind, "getConstants", @selector(getConstants), args, count);
|
631
|
+
}
|
632
|
+
|
633
|
+
NativeAppStateSpecJSI::NativeAppStateSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
634
|
+
: ObjCTurboModule(params) {
|
635
|
+
|
636
|
+
methodMap_["getCurrentAppState"] = MethodMetadata {2, __hostFunction_NativeAppStateSpecJSI_getCurrentAppState};
|
637
|
+
|
638
|
+
|
639
|
+
methodMap_["addListener"] = MethodMetadata {1, __hostFunction_NativeAppStateSpecJSI_addListener};
|
640
|
+
|
641
|
+
|
642
|
+
methodMap_["removeListeners"] = MethodMetadata {1, __hostFunction_NativeAppStateSpecJSI_removeListeners};
|
643
|
+
|
644
|
+
|
645
|
+
methodMap_["getConstants"] = MethodMetadata {0, __hostFunction_NativeAppStateSpecJSI_getConstants};
|
646
|
+
|
647
|
+
}
|
648
|
+
} // namespace react
|
649
|
+
} // namespace facebook
|
650
|
+
|
651
|
+
namespace facebook {
|
652
|
+
namespace react {
|
653
|
+
|
654
|
+
static facebook::jsi::Value __hostFunction_NativeAppearanceSpecJSI_getColorScheme(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
655
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, StringKind, "getColorScheme", @selector(getColorScheme), args, count);
|
656
|
+
}
|
657
|
+
|
658
|
+
static facebook::jsi::Value __hostFunction_NativeAppearanceSpecJSI_setColorScheme(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
659
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "setColorScheme", @selector(setColorScheme:), args, count);
|
660
|
+
}
|
661
|
+
|
662
|
+
static facebook::jsi::Value __hostFunction_NativeAppearanceSpecJSI_addListener(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
663
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "addListener", @selector(addListener:), args, count);
|
664
|
+
}
|
665
|
+
|
666
|
+
static facebook::jsi::Value __hostFunction_NativeAppearanceSpecJSI_removeListeners(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
667
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "removeListeners", @selector(removeListeners:), args, count);
|
668
|
+
}
|
669
|
+
|
670
|
+
NativeAppearanceSpecJSI::NativeAppearanceSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
671
|
+
: ObjCTurboModule(params) {
|
672
|
+
|
673
|
+
methodMap_["getColorScheme"] = MethodMetadata {0, __hostFunction_NativeAppearanceSpecJSI_getColorScheme};
|
674
|
+
|
675
|
+
|
676
|
+
methodMap_["setColorScheme"] = MethodMetadata {1, __hostFunction_NativeAppearanceSpecJSI_setColorScheme};
|
677
|
+
|
678
|
+
|
679
|
+
methodMap_["addListener"] = MethodMetadata {1, __hostFunction_NativeAppearanceSpecJSI_addListener};
|
680
|
+
|
681
|
+
|
682
|
+
methodMap_["removeListeners"] = MethodMetadata {1, __hostFunction_NativeAppearanceSpecJSI_removeListeners};
|
683
|
+
|
684
|
+
}
|
685
|
+
} // namespace react
|
686
|
+
} // namespace facebook
|
687
|
+
|
688
|
+
namespace facebook {
|
689
|
+
namespace react {
|
690
|
+
|
691
|
+
static facebook::jsi::Value __hostFunction_NativeBlobModuleSpecJSI_addNetworkingHandler(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
692
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "addNetworkingHandler", @selector(addNetworkingHandler), args, count);
|
693
|
+
}
|
694
|
+
|
695
|
+
static facebook::jsi::Value __hostFunction_NativeBlobModuleSpecJSI_addWebSocketHandler(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
696
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "addWebSocketHandler", @selector(addWebSocketHandler:), args, count);
|
697
|
+
}
|
698
|
+
|
699
|
+
static facebook::jsi::Value __hostFunction_NativeBlobModuleSpecJSI_removeWebSocketHandler(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
700
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "removeWebSocketHandler", @selector(removeWebSocketHandler:), args, count);
|
701
|
+
}
|
702
|
+
|
703
|
+
static facebook::jsi::Value __hostFunction_NativeBlobModuleSpecJSI_sendOverSocket(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
704
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "sendOverSocket", @selector(sendOverSocket:socketID:), args, count);
|
705
|
+
}
|
706
|
+
|
707
|
+
static facebook::jsi::Value __hostFunction_NativeBlobModuleSpecJSI_createFromParts(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
708
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "createFromParts", @selector(createFromParts:withId:), args, count);
|
709
|
+
}
|
710
|
+
|
711
|
+
static facebook::jsi::Value __hostFunction_NativeBlobModuleSpecJSI_release(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
712
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "release", @selector(release:), args, count);
|
713
|
+
}
|
714
|
+
|
715
|
+
static facebook::jsi::Value __hostFunction_NativeBlobModuleSpecJSI_getConstants(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
716
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, ObjectKind, "getConstants", @selector(getConstants), args, count);
|
717
|
+
}
|
718
|
+
|
719
|
+
NativeBlobModuleSpecJSI::NativeBlobModuleSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
720
|
+
: ObjCTurboModule(params) {
|
721
|
+
|
722
|
+
methodMap_["addNetworkingHandler"] = MethodMetadata {0, __hostFunction_NativeBlobModuleSpecJSI_addNetworkingHandler};
|
723
|
+
|
724
|
+
|
725
|
+
methodMap_["addWebSocketHandler"] = MethodMetadata {1, __hostFunction_NativeBlobModuleSpecJSI_addWebSocketHandler};
|
726
|
+
|
727
|
+
|
728
|
+
methodMap_["removeWebSocketHandler"] = MethodMetadata {1, __hostFunction_NativeBlobModuleSpecJSI_removeWebSocketHandler};
|
729
|
+
|
730
|
+
|
731
|
+
methodMap_["sendOverSocket"] = MethodMetadata {2, __hostFunction_NativeBlobModuleSpecJSI_sendOverSocket};
|
732
|
+
|
733
|
+
|
734
|
+
methodMap_["createFromParts"] = MethodMetadata {2, __hostFunction_NativeBlobModuleSpecJSI_createFromParts};
|
735
|
+
|
736
|
+
|
737
|
+
methodMap_["release"] = MethodMetadata {1, __hostFunction_NativeBlobModuleSpecJSI_release};
|
738
|
+
|
739
|
+
|
740
|
+
methodMap_["getConstants"] = MethodMetadata {0, __hostFunction_NativeBlobModuleSpecJSI_getConstants};
|
741
|
+
|
742
|
+
}
|
743
|
+
} // namespace react
|
744
|
+
} // namespace facebook
|
745
|
+
|
746
|
+
namespace facebook {
|
747
|
+
namespace react {
|
748
|
+
|
749
|
+
static facebook::jsi::Value __hostFunction_NativeBugReportingSpecJSI_startReportAProblemFlow(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
750
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "startReportAProblemFlow", @selector(startReportAProblemFlow), args, count);
|
751
|
+
}
|
752
|
+
|
753
|
+
static facebook::jsi::Value __hostFunction_NativeBugReportingSpecJSI_setExtraData(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
754
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "setExtraData", @selector(setExtraData:extraFiles:), args, count);
|
755
|
+
}
|
756
|
+
|
757
|
+
static facebook::jsi::Value __hostFunction_NativeBugReportingSpecJSI_setCategoryID(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
758
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "setCategoryID", @selector(setCategoryID:), args, count);
|
759
|
+
}
|
760
|
+
|
761
|
+
NativeBugReportingSpecJSI::NativeBugReportingSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
762
|
+
: ObjCTurboModule(params) {
|
763
|
+
|
764
|
+
methodMap_["startReportAProblemFlow"] = MethodMetadata {0, __hostFunction_NativeBugReportingSpecJSI_startReportAProblemFlow};
|
765
|
+
|
766
|
+
|
767
|
+
methodMap_["setExtraData"] = MethodMetadata {2, __hostFunction_NativeBugReportingSpecJSI_setExtraData};
|
768
|
+
|
769
|
+
|
770
|
+
methodMap_["setCategoryID"] = MethodMetadata {1, __hostFunction_NativeBugReportingSpecJSI_setCategoryID};
|
771
|
+
|
772
|
+
}
|
773
|
+
} // namespace react
|
774
|
+
} // namespace facebook
|
775
|
+
|
776
|
+
namespace facebook {
|
777
|
+
namespace react {
|
778
|
+
|
779
|
+
static facebook::jsi::Value __hostFunction_NativeClipboardSpecJSI_getString(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
780
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, PromiseKind, "getString", @selector(getString:reject:), args, count);
|
781
|
+
}
|
782
|
+
|
783
|
+
static facebook::jsi::Value __hostFunction_NativeClipboardSpecJSI_setString(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
784
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "setString", @selector(setString:), args, count);
|
785
|
+
}
|
786
|
+
|
787
|
+
NativeClipboardSpecJSI::NativeClipboardSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
788
|
+
: ObjCTurboModule(params) {
|
789
|
+
|
790
|
+
methodMap_["getString"] = MethodMetadata {0, __hostFunction_NativeClipboardSpecJSI_getString};
|
791
|
+
|
792
|
+
|
793
|
+
methodMap_["setString"] = MethodMetadata {1, __hostFunction_NativeClipboardSpecJSI_setString};
|
794
|
+
|
795
|
+
}
|
796
|
+
} // namespace react
|
797
|
+
} // namespace facebook
|
798
|
+
|
799
|
+
namespace facebook {
|
800
|
+
namespace react {
|
801
|
+
|
802
|
+
static facebook::jsi::Value __hostFunction_NativeDevLoadingViewSpecJSI_showMessage(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
803
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "showMessage", @selector(showMessage:withColor:withBackgroundColor:), args, count);
|
804
|
+
}
|
805
|
+
|
806
|
+
static facebook::jsi::Value __hostFunction_NativeDevLoadingViewSpecJSI_hide(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
807
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "hide", @selector(hide), args, count);
|
808
|
+
}
|
809
|
+
|
810
|
+
NativeDevLoadingViewSpecJSI::NativeDevLoadingViewSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
811
|
+
: ObjCTurboModule(params) {
|
812
|
+
|
813
|
+
methodMap_["showMessage"] = MethodMetadata {3, __hostFunction_NativeDevLoadingViewSpecJSI_showMessage};
|
814
|
+
|
815
|
+
|
816
|
+
methodMap_["hide"] = MethodMetadata {0, __hostFunction_NativeDevLoadingViewSpecJSI_hide};
|
817
|
+
|
818
|
+
}
|
819
|
+
} // namespace react
|
820
|
+
} // namespace facebook
|
821
|
+
|
822
|
+
namespace facebook {
|
823
|
+
namespace react {
|
824
|
+
|
825
|
+
static facebook::jsi::Value __hostFunction_NativeDevMenuSpecJSI_show(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
826
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "show", @selector(show), args, count);
|
827
|
+
}
|
828
|
+
|
829
|
+
static facebook::jsi::Value __hostFunction_NativeDevMenuSpecJSI_reload(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
830
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "reload", @selector(reload), args, count);
|
831
|
+
}
|
832
|
+
|
833
|
+
static facebook::jsi::Value __hostFunction_NativeDevMenuSpecJSI_debugRemotely(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
834
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "debugRemotely", @selector(debugRemotely:), args, count);
|
835
|
+
}
|
836
|
+
|
837
|
+
static facebook::jsi::Value __hostFunction_NativeDevMenuSpecJSI_setProfilingEnabled(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
838
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "setProfilingEnabled", @selector(setProfilingEnabled:), args, count);
|
839
|
+
}
|
840
|
+
|
841
|
+
static facebook::jsi::Value __hostFunction_NativeDevMenuSpecJSI_setHotLoadingEnabled(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
842
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "setHotLoadingEnabled", @selector(setHotLoadingEnabled:), args, count);
|
843
|
+
}
|
844
|
+
|
845
|
+
NativeDevMenuSpecJSI::NativeDevMenuSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
846
|
+
: ObjCTurboModule(params) {
|
847
|
+
|
848
|
+
methodMap_["show"] = MethodMetadata {0, __hostFunction_NativeDevMenuSpecJSI_show};
|
849
|
+
|
850
|
+
|
851
|
+
methodMap_["reload"] = MethodMetadata {0, __hostFunction_NativeDevMenuSpecJSI_reload};
|
852
|
+
|
853
|
+
|
854
|
+
methodMap_["debugRemotely"] = MethodMetadata {1, __hostFunction_NativeDevMenuSpecJSI_debugRemotely};
|
855
|
+
|
856
|
+
|
857
|
+
methodMap_["setProfilingEnabled"] = MethodMetadata {1, __hostFunction_NativeDevMenuSpecJSI_setProfilingEnabled};
|
858
|
+
|
859
|
+
|
860
|
+
methodMap_["setHotLoadingEnabled"] = MethodMetadata {1, __hostFunction_NativeDevMenuSpecJSI_setHotLoadingEnabled};
|
861
|
+
|
862
|
+
}
|
863
|
+
} // namespace react
|
864
|
+
} // namespace facebook
|
865
|
+
|
866
|
+
namespace facebook {
|
867
|
+
namespace react {
|
868
|
+
|
869
|
+
static facebook::jsi::Value __hostFunction_NativeDevSettingsSpecJSI_reload(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
870
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "reload", @selector(reload), args, count);
|
871
|
+
}
|
872
|
+
|
873
|
+
static facebook::jsi::Value __hostFunction_NativeDevSettingsSpecJSI_reloadWithReason(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
874
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "reloadWithReason", @selector(reloadWithReason:), args, count);
|
875
|
+
}
|
876
|
+
|
877
|
+
static facebook::jsi::Value __hostFunction_NativeDevSettingsSpecJSI_onFastRefresh(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
878
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "onFastRefresh", @selector(onFastRefresh), args, count);
|
879
|
+
}
|
880
|
+
|
881
|
+
static facebook::jsi::Value __hostFunction_NativeDevSettingsSpecJSI_setHotLoadingEnabled(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
882
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "setHotLoadingEnabled", @selector(setHotLoadingEnabled:), args, count);
|
883
|
+
}
|
884
|
+
|
885
|
+
static facebook::jsi::Value __hostFunction_NativeDevSettingsSpecJSI_setIsDebuggingRemotely(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
886
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "setIsDebuggingRemotely", @selector(setIsDebuggingRemotely:), args, count);
|
887
|
+
}
|
888
|
+
|
889
|
+
static facebook::jsi::Value __hostFunction_NativeDevSettingsSpecJSI_setProfilingEnabled(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
890
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "setProfilingEnabled", @selector(setProfilingEnabled:), args, count);
|
891
|
+
}
|
892
|
+
|
893
|
+
static facebook::jsi::Value __hostFunction_NativeDevSettingsSpecJSI_toggleElementInspector(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
894
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "toggleElementInspector", @selector(toggleElementInspector), args, count);
|
895
|
+
}
|
896
|
+
|
897
|
+
static facebook::jsi::Value __hostFunction_NativeDevSettingsSpecJSI_addMenuItem(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
898
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "addMenuItem", @selector(addMenuItem:), args, count);
|
899
|
+
}
|
900
|
+
|
901
|
+
static facebook::jsi::Value __hostFunction_NativeDevSettingsSpecJSI_addListener(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
902
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "addListener", @selector(addListener:), args, count);
|
903
|
+
}
|
904
|
+
|
905
|
+
static facebook::jsi::Value __hostFunction_NativeDevSettingsSpecJSI_removeListeners(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
906
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "removeListeners", @selector(removeListeners:), args, count);
|
907
|
+
}
|
908
|
+
|
909
|
+
static facebook::jsi::Value __hostFunction_NativeDevSettingsSpecJSI_setIsShakeToShowDevMenuEnabled(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
910
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "setIsShakeToShowDevMenuEnabled", @selector(setIsShakeToShowDevMenuEnabled:), args, count);
|
911
|
+
}
|
912
|
+
|
913
|
+
NativeDevSettingsSpecJSI::NativeDevSettingsSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
914
|
+
: ObjCTurboModule(params) {
|
915
|
+
|
916
|
+
methodMap_["reload"] = MethodMetadata {0, __hostFunction_NativeDevSettingsSpecJSI_reload};
|
917
|
+
|
918
|
+
|
919
|
+
methodMap_["reloadWithReason"] = MethodMetadata {1, __hostFunction_NativeDevSettingsSpecJSI_reloadWithReason};
|
920
|
+
|
921
|
+
|
922
|
+
methodMap_["onFastRefresh"] = MethodMetadata {0, __hostFunction_NativeDevSettingsSpecJSI_onFastRefresh};
|
923
|
+
|
924
|
+
|
925
|
+
methodMap_["setHotLoadingEnabled"] = MethodMetadata {1, __hostFunction_NativeDevSettingsSpecJSI_setHotLoadingEnabled};
|
926
|
+
|
927
|
+
|
928
|
+
methodMap_["setIsDebuggingRemotely"] = MethodMetadata {1, __hostFunction_NativeDevSettingsSpecJSI_setIsDebuggingRemotely};
|
929
|
+
|
930
|
+
|
931
|
+
methodMap_["setProfilingEnabled"] = MethodMetadata {1, __hostFunction_NativeDevSettingsSpecJSI_setProfilingEnabled};
|
932
|
+
|
933
|
+
|
934
|
+
methodMap_["toggleElementInspector"] = MethodMetadata {0, __hostFunction_NativeDevSettingsSpecJSI_toggleElementInspector};
|
935
|
+
|
936
|
+
|
937
|
+
methodMap_["addMenuItem"] = MethodMetadata {1, __hostFunction_NativeDevSettingsSpecJSI_addMenuItem};
|
938
|
+
|
939
|
+
|
940
|
+
methodMap_["addListener"] = MethodMetadata {1, __hostFunction_NativeDevSettingsSpecJSI_addListener};
|
941
|
+
|
942
|
+
|
943
|
+
methodMap_["removeListeners"] = MethodMetadata {1, __hostFunction_NativeDevSettingsSpecJSI_removeListeners};
|
944
|
+
|
945
|
+
|
946
|
+
methodMap_["setIsShakeToShowDevMenuEnabled"] = MethodMetadata {1, __hostFunction_NativeDevSettingsSpecJSI_setIsShakeToShowDevMenuEnabled};
|
947
|
+
|
948
|
+
}
|
949
|
+
} // namespace react
|
950
|
+
} // namespace facebook
|
951
|
+
|
952
|
+
namespace facebook {
|
953
|
+
namespace react {
|
954
|
+
|
955
|
+
static facebook::jsi::Value __hostFunction_NativeDevSplitBundleLoaderSpecJSI_loadBundle(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
956
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, PromiseKind, "loadBundle", @selector(loadBundle:resolve:reject:), args, count);
|
957
|
+
}
|
958
|
+
|
959
|
+
NativeDevSplitBundleLoaderSpecJSI::NativeDevSplitBundleLoaderSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
960
|
+
: ObjCTurboModule(params) {
|
961
|
+
|
962
|
+
methodMap_["loadBundle"] = MethodMetadata {1, __hostFunction_NativeDevSplitBundleLoaderSpecJSI_loadBundle};
|
963
|
+
|
964
|
+
}
|
965
|
+
} // namespace react
|
966
|
+
} // namespace facebook
|
967
|
+
|
968
|
+
namespace facebook {
|
969
|
+
namespace react {
|
970
|
+
|
971
|
+
static facebook::jsi::Value __hostFunction_NativeDevToolsSettingsManagerSpecJSI_setConsolePatchSettings(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
972
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "setConsolePatchSettings", @selector(setConsolePatchSettings:), args, count);
|
973
|
+
}
|
974
|
+
|
975
|
+
static facebook::jsi::Value __hostFunction_NativeDevToolsSettingsManagerSpecJSI_getConsolePatchSettings(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
976
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, StringKind, "getConsolePatchSettings", @selector(getConsolePatchSettings), args, count);
|
977
|
+
}
|
978
|
+
|
979
|
+
static facebook::jsi::Value __hostFunction_NativeDevToolsSettingsManagerSpecJSI_setProfilingSettings(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
980
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "setProfilingSettings", @selector(setProfilingSettings:), args, count);
|
981
|
+
}
|
982
|
+
|
983
|
+
static facebook::jsi::Value __hostFunction_NativeDevToolsSettingsManagerSpecJSI_getProfilingSettings(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
984
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, StringKind, "getProfilingSettings", @selector(getProfilingSettings), args, count);
|
985
|
+
}
|
986
|
+
|
987
|
+
NativeDevToolsSettingsManagerSpecJSI::NativeDevToolsSettingsManagerSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
988
|
+
: ObjCTurboModule(params) {
|
989
|
+
|
990
|
+
methodMap_["setConsolePatchSettings"] = MethodMetadata {1, __hostFunction_NativeDevToolsSettingsManagerSpecJSI_setConsolePatchSettings};
|
991
|
+
|
992
|
+
|
993
|
+
methodMap_["getConsolePatchSettings"] = MethodMetadata {0, __hostFunction_NativeDevToolsSettingsManagerSpecJSI_getConsolePatchSettings};
|
994
|
+
|
995
|
+
|
996
|
+
methodMap_["setProfilingSettings"] = MethodMetadata {1, __hostFunction_NativeDevToolsSettingsManagerSpecJSI_setProfilingSettings};
|
997
|
+
|
998
|
+
|
999
|
+
methodMap_["getProfilingSettings"] = MethodMetadata {0, __hostFunction_NativeDevToolsSettingsManagerSpecJSI_getProfilingSettings};
|
1000
|
+
|
1001
|
+
}
|
1002
|
+
} // namespace react
|
1003
|
+
} // namespace facebook
|
1004
|
+
|
1005
|
+
namespace facebook {
|
1006
|
+
namespace react {
|
1007
|
+
|
1008
|
+
static facebook::jsi::Value __hostFunction_NativeDeviceEventManagerSpecJSI_invokeDefaultBackPressHandler(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1009
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "invokeDefaultBackPressHandler", @selector(invokeDefaultBackPressHandler), args, count);
|
1010
|
+
}
|
1011
|
+
|
1012
|
+
NativeDeviceEventManagerSpecJSI::NativeDeviceEventManagerSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
1013
|
+
: ObjCTurboModule(params) {
|
1014
|
+
|
1015
|
+
methodMap_["invokeDefaultBackPressHandler"] = MethodMetadata {0, __hostFunction_NativeDeviceEventManagerSpecJSI_invokeDefaultBackPressHandler};
|
1016
|
+
|
1017
|
+
}
|
1018
|
+
} // namespace react
|
1019
|
+
} // namespace facebook
|
1020
|
+
|
1021
|
+
namespace facebook {
|
1022
|
+
namespace react {
|
1023
|
+
|
1024
|
+
static facebook::jsi::Value __hostFunction_NativeDeviceInfoSpecJSI_getConstants(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1025
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, ObjectKind, "getConstants", @selector(getConstants), args, count);
|
1026
|
+
}
|
1027
|
+
|
1028
|
+
NativeDeviceInfoSpecJSI::NativeDeviceInfoSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
1029
|
+
: ObjCTurboModule(params) {
|
1030
|
+
|
1031
|
+
methodMap_["getConstants"] = MethodMetadata {0, __hostFunction_NativeDeviceInfoSpecJSI_getConstants};
|
1032
|
+
|
1033
|
+
}
|
1034
|
+
} // namespace react
|
1035
|
+
} // namespace facebook
|
1036
|
+
@implementation RCTCxxConvert (NativeExceptionsManager_StackFrame)
|
1037
|
+
+ (RCTManagedPointer *)JS_NativeExceptionsManager_StackFrame:(id)json
|
1038
|
+
{
|
1039
|
+
return facebook::react::managedPointer<JS::NativeExceptionsManager::StackFrame>(json);
|
1040
|
+
}
|
1041
|
+
@end
|
1042
|
+
@implementation RCTCxxConvert (NativeExceptionsManager_ExceptionData)
|
1043
|
+
+ (RCTManagedPointer *)JS_NativeExceptionsManager_ExceptionData:(id)json
|
1044
|
+
{
|
1045
|
+
return facebook::react::managedPointer<JS::NativeExceptionsManager::ExceptionData>(json);
|
1046
|
+
}
|
1047
|
+
@end
|
1048
|
+
namespace facebook {
|
1049
|
+
namespace react {
|
1050
|
+
|
1051
|
+
static facebook::jsi::Value __hostFunction_NativeExceptionsManagerSpecJSI_reportFatalException(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1052
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "reportFatalException", @selector(reportFatalException:stack:exceptionId:), args, count);
|
1053
|
+
}
|
1054
|
+
|
1055
|
+
static facebook::jsi::Value __hostFunction_NativeExceptionsManagerSpecJSI_reportSoftException(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1056
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "reportSoftException", @selector(reportSoftException:stack:exceptionId:), args, count);
|
1057
|
+
}
|
1058
|
+
|
1059
|
+
static facebook::jsi::Value __hostFunction_NativeExceptionsManagerSpecJSI_reportException(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1060
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "reportException", @selector(reportException:), args, count);
|
1061
|
+
}
|
1062
|
+
|
1063
|
+
static facebook::jsi::Value __hostFunction_NativeExceptionsManagerSpecJSI_updateExceptionMessage(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1064
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "updateExceptionMessage", @selector(updateExceptionMessage:stack:exceptionId:), args, count);
|
1065
|
+
}
|
1066
|
+
|
1067
|
+
static facebook::jsi::Value __hostFunction_NativeExceptionsManagerSpecJSI_dismissRedbox(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1068
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "dismissRedbox", @selector(dismissRedbox), args, count);
|
1069
|
+
}
|
1070
|
+
|
1071
|
+
NativeExceptionsManagerSpecJSI::NativeExceptionsManagerSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
1072
|
+
: ObjCTurboModule(params) {
|
1073
|
+
|
1074
|
+
methodMap_["reportFatalException"] = MethodMetadata {3, __hostFunction_NativeExceptionsManagerSpecJSI_reportFatalException};
|
1075
|
+
|
1076
|
+
|
1077
|
+
methodMap_["reportSoftException"] = MethodMetadata {3, __hostFunction_NativeExceptionsManagerSpecJSI_reportSoftException};
|
1078
|
+
|
1079
|
+
|
1080
|
+
methodMap_["reportException"] = MethodMetadata {1, __hostFunction_NativeExceptionsManagerSpecJSI_reportException};
|
1081
|
+
setMethodArgConversionSelector(@"reportException", 0, @"JS_NativeExceptionsManager_ExceptionData:");
|
1082
|
+
|
1083
|
+
methodMap_["updateExceptionMessage"] = MethodMetadata {3, __hostFunction_NativeExceptionsManagerSpecJSI_updateExceptionMessage};
|
1084
|
+
|
1085
|
+
|
1086
|
+
methodMap_["dismissRedbox"] = MethodMetadata {0, __hostFunction_NativeExceptionsManagerSpecJSI_dismissRedbox};
|
1087
|
+
|
1088
|
+
}
|
1089
|
+
} // namespace react
|
1090
|
+
} // namespace facebook
|
1091
|
+
|
1092
|
+
namespace facebook {
|
1093
|
+
namespace react {
|
1094
|
+
|
1095
|
+
static facebook::jsi::Value __hostFunction_NativeFileReaderModuleSpecJSI_readAsDataURL(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1096
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, PromiseKind, "readAsDataURL", @selector(readAsDataURL:resolve:reject:), args, count);
|
1097
|
+
}
|
1098
|
+
|
1099
|
+
static facebook::jsi::Value __hostFunction_NativeFileReaderModuleSpecJSI_readAsText(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1100
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, PromiseKind, "readAsText", @selector(readAsText:encoding:resolve:reject:), args, count);
|
1101
|
+
}
|
1102
|
+
|
1103
|
+
NativeFileReaderModuleSpecJSI::NativeFileReaderModuleSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
1104
|
+
: ObjCTurboModule(params) {
|
1105
|
+
|
1106
|
+
methodMap_["readAsDataURL"] = MethodMetadata {1, __hostFunction_NativeFileReaderModuleSpecJSI_readAsDataURL};
|
1107
|
+
|
1108
|
+
|
1109
|
+
methodMap_["readAsText"] = MethodMetadata {2, __hostFunction_NativeFileReaderModuleSpecJSI_readAsText};
|
1110
|
+
|
1111
|
+
}
|
1112
|
+
} // namespace react
|
1113
|
+
} // namespace facebook
|
1114
|
+
@implementation RCTCxxConvert (NativeFrameRateLogger_SpecSetGlobalOptionsOptions)
|
1115
|
+
+ (RCTManagedPointer *)JS_NativeFrameRateLogger_SpecSetGlobalOptionsOptions:(id)json
|
1116
|
+
{
|
1117
|
+
return facebook::react::managedPointer<JS::NativeFrameRateLogger::SpecSetGlobalOptionsOptions>(json);
|
1118
|
+
}
|
1119
|
+
@end
|
1120
|
+
namespace facebook {
|
1121
|
+
namespace react {
|
1122
|
+
|
1123
|
+
static facebook::jsi::Value __hostFunction_NativeFrameRateLoggerSpecJSI_setGlobalOptions(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1124
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "setGlobalOptions", @selector(setGlobalOptions:), args, count);
|
1125
|
+
}
|
1126
|
+
|
1127
|
+
static facebook::jsi::Value __hostFunction_NativeFrameRateLoggerSpecJSI_setContext(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1128
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "setContext", @selector(setContext:), args, count);
|
1129
|
+
}
|
1130
|
+
|
1131
|
+
static facebook::jsi::Value __hostFunction_NativeFrameRateLoggerSpecJSI_beginScroll(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1132
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "beginScroll", @selector(beginScroll), args, count);
|
1133
|
+
}
|
1134
|
+
|
1135
|
+
static facebook::jsi::Value __hostFunction_NativeFrameRateLoggerSpecJSI_endScroll(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1136
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "endScroll", @selector(endScroll), args, count);
|
1137
|
+
}
|
1138
|
+
|
1139
|
+
NativeFrameRateLoggerSpecJSI::NativeFrameRateLoggerSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
1140
|
+
: ObjCTurboModule(params) {
|
1141
|
+
|
1142
|
+
methodMap_["setGlobalOptions"] = MethodMetadata {1, __hostFunction_NativeFrameRateLoggerSpecJSI_setGlobalOptions};
|
1143
|
+
setMethodArgConversionSelector(@"setGlobalOptions", 0, @"JS_NativeFrameRateLogger_SpecSetGlobalOptionsOptions:");
|
1144
|
+
|
1145
|
+
methodMap_["setContext"] = MethodMetadata {1, __hostFunction_NativeFrameRateLoggerSpecJSI_setContext};
|
1146
|
+
|
1147
|
+
|
1148
|
+
methodMap_["beginScroll"] = MethodMetadata {0, __hostFunction_NativeFrameRateLoggerSpecJSI_beginScroll};
|
1149
|
+
|
1150
|
+
|
1151
|
+
methodMap_["endScroll"] = MethodMetadata {0, __hostFunction_NativeFrameRateLoggerSpecJSI_endScroll};
|
1152
|
+
|
1153
|
+
}
|
1154
|
+
} // namespace react
|
1155
|
+
} // namespace facebook
|
1156
|
+
|
1157
|
+
namespace facebook {
|
1158
|
+
namespace react {
|
1159
|
+
|
1160
|
+
static facebook::jsi::Value __hostFunction_NativeHeadlessJsTaskSupportSpecJSI_notifyTaskFinished(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1161
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "notifyTaskFinished", @selector(notifyTaskFinished:), args, count);
|
1162
|
+
}
|
1163
|
+
|
1164
|
+
static facebook::jsi::Value __hostFunction_NativeHeadlessJsTaskSupportSpecJSI_notifyTaskRetry(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1165
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, PromiseKind, "notifyTaskRetry", @selector(notifyTaskRetry:resolve:reject:), args, count);
|
1166
|
+
}
|
1167
|
+
|
1168
|
+
NativeHeadlessJsTaskSupportSpecJSI::NativeHeadlessJsTaskSupportSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
1169
|
+
: ObjCTurboModule(params) {
|
1170
|
+
|
1171
|
+
methodMap_["notifyTaskFinished"] = MethodMetadata {1, __hostFunction_NativeHeadlessJsTaskSupportSpecJSI_notifyTaskFinished};
|
1172
|
+
|
1173
|
+
|
1174
|
+
methodMap_["notifyTaskRetry"] = MethodMetadata {1, __hostFunction_NativeHeadlessJsTaskSupportSpecJSI_notifyTaskRetry};
|
1175
|
+
|
1176
|
+
}
|
1177
|
+
} // namespace react
|
1178
|
+
} // namespace facebook
|
1179
|
+
|
1180
|
+
namespace facebook {
|
1181
|
+
namespace react {
|
1182
|
+
|
1183
|
+
static facebook::jsi::Value __hostFunction_NativeI18nManagerSpecJSI_allowRTL(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1184
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "allowRTL", @selector(allowRTL:), args, count);
|
1185
|
+
}
|
1186
|
+
|
1187
|
+
static facebook::jsi::Value __hostFunction_NativeI18nManagerSpecJSI_forceRTL(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1188
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "forceRTL", @selector(forceRTL:), args, count);
|
1189
|
+
}
|
1190
|
+
|
1191
|
+
static facebook::jsi::Value __hostFunction_NativeI18nManagerSpecJSI_swapLeftAndRightInRTL(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1192
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "swapLeftAndRightInRTL", @selector(swapLeftAndRightInRTL:), args, count);
|
1193
|
+
}
|
1194
|
+
|
1195
|
+
static facebook::jsi::Value __hostFunction_NativeI18nManagerSpecJSI_getConstants(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1196
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, ObjectKind, "getConstants", @selector(getConstants), args, count);
|
1197
|
+
}
|
1198
|
+
|
1199
|
+
NativeI18nManagerSpecJSI::NativeI18nManagerSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
1200
|
+
: ObjCTurboModule(params) {
|
1201
|
+
|
1202
|
+
methodMap_["allowRTL"] = MethodMetadata {1, __hostFunction_NativeI18nManagerSpecJSI_allowRTL};
|
1203
|
+
|
1204
|
+
|
1205
|
+
methodMap_["forceRTL"] = MethodMetadata {1, __hostFunction_NativeI18nManagerSpecJSI_forceRTL};
|
1206
|
+
|
1207
|
+
|
1208
|
+
methodMap_["swapLeftAndRightInRTL"] = MethodMetadata {1, __hostFunction_NativeI18nManagerSpecJSI_swapLeftAndRightInRTL};
|
1209
|
+
|
1210
|
+
|
1211
|
+
methodMap_["getConstants"] = MethodMetadata {0, __hostFunction_NativeI18nManagerSpecJSI_getConstants};
|
1212
|
+
|
1213
|
+
}
|
1214
|
+
} // namespace react
|
1215
|
+
} // namespace facebook
|
1216
|
+
@implementation RCTCxxConvert (NativeImageEditor_OptionsOffset)
|
1217
|
+
+ (RCTManagedPointer *)JS_NativeImageEditor_OptionsOffset:(id)json
|
1218
|
+
{
|
1219
|
+
return facebook::react::managedPointer<JS::NativeImageEditor::OptionsOffset>(json);
|
1220
|
+
}
|
1221
|
+
@end
|
1222
|
+
@implementation RCTCxxConvert (NativeImageEditor_OptionsSize)
|
1223
|
+
+ (RCTManagedPointer *)JS_NativeImageEditor_OptionsSize:(id)json
|
1224
|
+
{
|
1225
|
+
return facebook::react::managedPointer<JS::NativeImageEditor::OptionsSize>(json);
|
1226
|
+
}
|
1227
|
+
@end
|
1228
|
+
@implementation RCTCxxConvert (NativeImageEditor_OptionsDisplaySize)
|
1229
|
+
+ (RCTManagedPointer *)JS_NativeImageEditor_OptionsDisplaySize:(id)json
|
1230
|
+
{
|
1231
|
+
return facebook::react::managedPointer<JS::NativeImageEditor::OptionsDisplaySize>(json);
|
1232
|
+
}
|
1233
|
+
@end
|
1234
|
+
@implementation RCTCxxConvert (NativeImageEditor_Options)
|
1235
|
+
+ (RCTManagedPointer *)JS_NativeImageEditor_Options:(id)json
|
1236
|
+
{
|
1237
|
+
return facebook::react::managedPointer<JS::NativeImageEditor::Options>(json);
|
1238
|
+
}
|
1239
|
+
@end
|
1240
|
+
namespace facebook {
|
1241
|
+
namespace react {
|
1242
|
+
|
1243
|
+
static facebook::jsi::Value __hostFunction_NativeImageEditorSpecJSI_cropImage(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1244
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "cropImage", @selector(cropImage:cropData:successCallback:errorCallback:), args, count);
|
1245
|
+
}
|
1246
|
+
|
1247
|
+
NativeImageEditorSpecJSI::NativeImageEditorSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
1248
|
+
: ObjCTurboModule(params) {
|
1249
|
+
|
1250
|
+
methodMap_["cropImage"] = MethodMetadata {4, __hostFunction_NativeImageEditorSpecJSI_cropImage};
|
1251
|
+
setMethodArgConversionSelector(@"cropImage", 1, @"JS_NativeImageEditor_Options:");
|
1252
|
+
}
|
1253
|
+
} // namespace react
|
1254
|
+
} // namespace facebook
|
1255
|
+
|
1256
|
+
namespace facebook {
|
1257
|
+
namespace react {
|
1258
|
+
|
1259
|
+
static facebook::jsi::Value __hostFunction_NativeImageLoaderIOSSpecJSI_getSize(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1260
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, PromiseKind, "getSize", @selector(getSize:resolve:reject:), args, count);
|
1261
|
+
}
|
1262
|
+
|
1263
|
+
static facebook::jsi::Value __hostFunction_NativeImageLoaderIOSSpecJSI_getSizeWithHeaders(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1264
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, PromiseKind, "getSizeWithHeaders", @selector(getSizeWithHeaders:headers:resolve:reject:), args, count);
|
1265
|
+
}
|
1266
|
+
|
1267
|
+
static facebook::jsi::Value __hostFunction_NativeImageLoaderIOSSpecJSI_prefetchImage(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1268
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, PromiseKind, "prefetchImage", @selector(prefetchImage:resolve:reject:), args, count);
|
1269
|
+
}
|
1270
|
+
|
1271
|
+
static facebook::jsi::Value __hostFunction_NativeImageLoaderIOSSpecJSI_prefetchImageWithMetadata(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1272
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, PromiseKind, "prefetchImageWithMetadata", @selector(prefetchImageWithMetadata:queryRootName:rootTag:resolve:reject:), args, count);
|
1273
|
+
}
|
1274
|
+
|
1275
|
+
static facebook::jsi::Value __hostFunction_NativeImageLoaderIOSSpecJSI_queryCache(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1276
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, PromiseKind, "queryCache", @selector(queryCache:resolve:reject:), args, count);
|
1277
|
+
}
|
1278
|
+
|
1279
|
+
NativeImageLoaderIOSSpecJSI::NativeImageLoaderIOSSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
1280
|
+
: ObjCTurboModule(params) {
|
1281
|
+
|
1282
|
+
methodMap_["getSize"] = MethodMetadata {1, __hostFunction_NativeImageLoaderIOSSpecJSI_getSize};
|
1283
|
+
|
1284
|
+
|
1285
|
+
methodMap_["getSizeWithHeaders"] = MethodMetadata {2, __hostFunction_NativeImageLoaderIOSSpecJSI_getSizeWithHeaders};
|
1286
|
+
|
1287
|
+
|
1288
|
+
methodMap_["prefetchImage"] = MethodMetadata {1, __hostFunction_NativeImageLoaderIOSSpecJSI_prefetchImage};
|
1289
|
+
|
1290
|
+
|
1291
|
+
methodMap_["prefetchImageWithMetadata"] = MethodMetadata {3, __hostFunction_NativeImageLoaderIOSSpecJSI_prefetchImageWithMetadata};
|
1292
|
+
|
1293
|
+
|
1294
|
+
methodMap_["queryCache"] = MethodMetadata {1, __hostFunction_NativeImageLoaderIOSSpecJSI_queryCache};
|
1295
|
+
|
1296
|
+
}
|
1297
|
+
} // namespace react
|
1298
|
+
} // namespace facebook
|
1299
|
+
|
1300
|
+
namespace facebook {
|
1301
|
+
namespace react {
|
1302
|
+
|
1303
|
+
static facebook::jsi::Value __hostFunction_NativeImageStoreIOSSpecJSI_getBase64ForTag(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1304
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "getBase64ForTag", @selector(getBase64ForTag:successCallback:errorCallback:), args, count);
|
1305
|
+
}
|
1306
|
+
|
1307
|
+
static facebook::jsi::Value __hostFunction_NativeImageStoreIOSSpecJSI_hasImageForTag(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1308
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "hasImageForTag", @selector(hasImageForTag:callback:), args, count);
|
1309
|
+
}
|
1310
|
+
|
1311
|
+
static facebook::jsi::Value __hostFunction_NativeImageStoreIOSSpecJSI_removeImageForTag(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1312
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "removeImageForTag", @selector(removeImageForTag:), args, count);
|
1313
|
+
}
|
1314
|
+
|
1315
|
+
static facebook::jsi::Value __hostFunction_NativeImageStoreIOSSpecJSI_addImageFromBase64(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1316
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "addImageFromBase64", @selector(addImageFromBase64:successCallback:errorCallback:), args, count);
|
1317
|
+
}
|
1318
|
+
|
1319
|
+
NativeImageStoreIOSSpecJSI::NativeImageStoreIOSSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
1320
|
+
: ObjCTurboModule(params) {
|
1321
|
+
|
1322
|
+
methodMap_["getBase64ForTag"] = MethodMetadata {3, __hostFunction_NativeImageStoreIOSSpecJSI_getBase64ForTag};
|
1323
|
+
|
1324
|
+
|
1325
|
+
methodMap_["hasImageForTag"] = MethodMetadata {2, __hostFunction_NativeImageStoreIOSSpecJSI_hasImageForTag};
|
1326
|
+
|
1327
|
+
|
1328
|
+
methodMap_["removeImageForTag"] = MethodMetadata {1, __hostFunction_NativeImageStoreIOSSpecJSI_removeImageForTag};
|
1329
|
+
|
1330
|
+
|
1331
|
+
methodMap_["addImageFromBase64"] = MethodMetadata {3, __hostFunction_NativeImageStoreIOSSpecJSI_addImageFromBase64};
|
1332
|
+
|
1333
|
+
}
|
1334
|
+
} // namespace react
|
1335
|
+
} // namespace facebook
|
1336
|
+
|
1337
|
+
namespace facebook {
|
1338
|
+
namespace react {
|
1339
|
+
|
1340
|
+
static facebook::jsi::Value __hostFunction_NativeJSCHeapCaptureSpecJSI_captureComplete(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1341
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "captureComplete", @selector(captureComplete:error:), args, count);
|
1342
|
+
}
|
1343
|
+
|
1344
|
+
NativeJSCHeapCaptureSpecJSI::NativeJSCHeapCaptureSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
1345
|
+
: ObjCTurboModule(params) {
|
1346
|
+
|
1347
|
+
methodMap_["captureComplete"] = MethodMetadata {2, __hostFunction_NativeJSCHeapCaptureSpecJSI_captureComplete};
|
1348
|
+
|
1349
|
+
}
|
1350
|
+
} // namespace react
|
1351
|
+
} // namespace facebook
|
1352
|
+
|
1353
|
+
namespace facebook {
|
1354
|
+
namespace react {
|
1355
|
+
|
1356
|
+
static facebook::jsi::Value __hostFunction_NativeJSCSamplingProfilerSpecJSI_operationComplete(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1357
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "operationComplete", @selector(operationComplete:result:error:), args, count);
|
1358
|
+
}
|
1359
|
+
|
1360
|
+
NativeJSCSamplingProfilerSpecJSI::NativeJSCSamplingProfilerSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
1361
|
+
: ObjCTurboModule(params) {
|
1362
|
+
|
1363
|
+
methodMap_["operationComplete"] = MethodMetadata {3, __hostFunction_NativeJSCSamplingProfilerSpecJSI_operationComplete};
|
1364
|
+
|
1365
|
+
}
|
1366
|
+
} // namespace react
|
1367
|
+
} // namespace facebook
|
1368
|
+
|
1369
|
+
namespace facebook {
|
1370
|
+
namespace react {
|
1371
|
+
|
1372
|
+
static facebook::jsi::Value __hostFunction_NativeKeyboardObserverSpecJSI_addListener(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1373
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "addListener", @selector(addListener:), args, count);
|
1374
|
+
}
|
1375
|
+
|
1376
|
+
static facebook::jsi::Value __hostFunction_NativeKeyboardObserverSpecJSI_removeListeners(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1377
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "removeListeners", @selector(removeListeners:), args, count);
|
1378
|
+
}
|
1379
|
+
|
1380
|
+
NativeKeyboardObserverSpecJSI::NativeKeyboardObserverSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
1381
|
+
: ObjCTurboModule(params) {
|
1382
|
+
|
1383
|
+
methodMap_["addListener"] = MethodMetadata {1, __hostFunction_NativeKeyboardObserverSpecJSI_addListener};
|
1384
|
+
|
1385
|
+
|
1386
|
+
methodMap_["removeListeners"] = MethodMetadata {1, __hostFunction_NativeKeyboardObserverSpecJSI_removeListeners};
|
1387
|
+
|
1388
|
+
}
|
1389
|
+
} // namespace react
|
1390
|
+
} // namespace facebook
|
1391
|
+
|
1392
|
+
namespace facebook {
|
1393
|
+
namespace react {
|
1394
|
+
|
1395
|
+
static facebook::jsi::Value __hostFunction_NativeLinkingManagerSpecJSI_getInitialURL(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1396
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, PromiseKind, "getInitialURL", @selector(getInitialURL:reject:), args, count);
|
1397
|
+
}
|
1398
|
+
|
1399
|
+
static facebook::jsi::Value __hostFunction_NativeLinkingManagerSpecJSI_canOpenURL(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1400
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, PromiseKind, "canOpenURL", @selector(canOpenURL:resolve:reject:), args, count);
|
1401
|
+
}
|
1402
|
+
|
1403
|
+
static facebook::jsi::Value __hostFunction_NativeLinkingManagerSpecJSI_openURL(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1404
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, PromiseKind, "openURL", @selector(openURL:resolve:reject:), args, count);
|
1405
|
+
}
|
1406
|
+
|
1407
|
+
static facebook::jsi::Value __hostFunction_NativeLinkingManagerSpecJSI_openSettings(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1408
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, PromiseKind, "openSettings", @selector(openSettings:reject:), args, count);
|
1409
|
+
}
|
1410
|
+
|
1411
|
+
static facebook::jsi::Value __hostFunction_NativeLinkingManagerSpecJSI_addListener(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1412
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "addListener", @selector(addListener:), args, count);
|
1413
|
+
}
|
1414
|
+
|
1415
|
+
static facebook::jsi::Value __hostFunction_NativeLinkingManagerSpecJSI_removeListeners(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1416
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "removeListeners", @selector(removeListeners:), args, count);
|
1417
|
+
}
|
1418
|
+
|
1419
|
+
NativeLinkingManagerSpecJSI::NativeLinkingManagerSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
1420
|
+
: ObjCTurboModule(params) {
|
1421
|
+
|
1422
|
+
methodMap_["getInitialURL"] = MethodMetadata {0, __hostFunction_NativeLinkingManagerSpecJSI_getInitialURL};
|
1423
|
+
|
1424
|
+
|
1425
|
+
methodMap_["canOpenURL"] = MethodMetadata {1, __hostFunction_NativeLinkingManagerSpecJSI_canOpenURL};
|
1426
|
+
|
1427
|
+
|
1428
|
+
methodMap_["openURL"] = MethodMetadata {1, __hostFunction_NativeLinkingManagerSpecJSI_openURL};
|
1429
|
+
|
1430
|
+
|
1431
|
+
methodMap_["openSettings"] = MethodMetadata {0, __hostFunction_NativeLinkingManagerSpecJSI_openSettings};
|
1432
|
+
|
1433
|
+
|
1434
|
+
methodMap_["addListener"] = MethodMetadata {1, __hostFunction_NativeLinkingManagerSpecJSI_addListener};
|
1435
|
+
|
1436
|
+
|
1437
|
+
methodMap_["removeListeners"] = MethodMetadata {1, __hostFunction_NativeLinkingManagerSpecJSI_removeListeners};
|
1438
|
+
|
1439
|
+
}
|
1440
|
+
} // namespace react
|
1441
|
+
} // namespace facebook
|
1442
|
+
|
1443
|
+
namespace facebook {
|
1444
|
+
namespace react {
|
1445
|
+
|
1446
|
+
static facebook::jsi::Value __hostFunction_NativeLogBoxSpecJSI_show(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1447
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "show", @selector(show), args, count);
|
1448
|
+
}
|
1449
|
+
|
1450
|
+
static facebook::jsi::Value __hostFunction_NativeLogBoxSpecJSI_hide(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1451
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "hide", @selector(hide), args, count);
|
1452
|
+
}
|
1453
|
+
|
1454
|
+
NativeLogBoxSpecJSI::NativeLogBoxSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
1455
|
+
: ObjCTurboModule(params) {
|
1456
|
+
|
1457
|
+
methodMap_["show"] = MethodMetadata {0, __hostFunction_NativeLogBoxSpecJSI_show};
|
1458
|
+
|
1459
|
+
|
1460
|
+
methodMap_["hide"] = MethodMetadata {0, __hostFunction_NativeLogBoxSpecJSI_hide};
|
1461
|
+
|
1462
|
+
}
|
1463
|
+
} // namespace react
|
1464
|
+
} // namespace facebook
|
1465
|
+
|
1466
|
+
namespace facebook {
|
1467
|
+
namespace react {
|
1468
|
+
|
1469
|
+
static facebook::jsi::Value __hostFunction_NativeModalManagerSpecJSI_addListener(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1470
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "addListener", @selector(addListener:), args, count);
|
1471
|
+
}
|
1472
|
+
|
1473
|
+
static facebook::jsi::Value __hostFunction_NativeModalManagerSpecJSI_removeListeners(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1474
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "removeListeners", @selector(removeListeners:), args, count);
|
1475
|
+
}
|
1476
|
+
|
1477
|
+
NativeModalManagerSpecJSI::NativeModalManagerSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
1478
|
+
: ObjCTurboModule(params) {
|
1479
|
+
|
1480
|
+
methodMap_["addListener"] = MethodMetadata {1, __hostFunction_NativeModalManagerSpecJSI_addListener};
|
1481
|
+
|
1482
|
+
|
1483
|
+
methodMap_["removeListeners"] = MethodMetadata {1, __hostFunction_NativeModalManagerSpecJSI_removeListeners};
|
1484
|
+
|
1485
|
+
}
|
1486
|
+
} // namespace react
|
1487
|
+
} // namespace facebook
|
1488
|
+
@implementation RCTCxxConvert (NativeNetworkingIOS_SpecSendRequestQuery)
|
1489
|
+
+ (RCTManagedPointer *)JS_NativeNetworkingIOS_SpecSendRequestQuery:(id)json
|
1490
|
+
{
|
1491
|
+
return facebook::react::managedPointer<JS::NativeNetworkingIOS::SpecSendRequestQuery>(json);
|
1492
|
+
}
|
1493
|
+
@end
|
1494
|
+
namespace facebook {
|
1495
|
+
namespace react {
|
1496
|
+
|
1497
|
+
static facebook::jsi::Value __hostFunction_NativeNetworkingIOSSpecJSI_sendRequest(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1498
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "sendRequest", @selector(sendRequest:callback:), args, count);
|
1499
|
+
}
|
1500
|
+
|
1501
|
+
static facebook::jsi::Value __hostFunction_NativeNetworkingIOSSpecJSI_abortRequest(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1502
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "abortRequest", @selector(abortRequest:), args, count);
|
1503
|
+
}
|
1504
|
+
|
1505
|
+
static facebook::jsi::Value __hostFunction_NativeNetworkingIOSSpecJSI_clearCookies(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1506
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "clearCookies", @selector(clearCookies:), args, count);
|
1507
|
+
}
|
1508
|
+
|
1509
|
+
static facebook::jsi::Value __hostFunction_NativeNetworkingIOSSpecJSI_addListener(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1510
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "addListener", @selector(addListener:), args, count);
|
1511
|
+
}
|
1512
|
+
|
1513
|
+
static facebook::jsi::Value __hostFunction_NativeNetworkingIOSSpecJSI_removeListeners(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1514
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "removeListeners", @selector(removeListeners:), args, count);
|
1515
|
+
}
|
1516
|
+
|
1517
|
+
NativeNetworkingIOSSpecJSI::NativeNetworkingIOSSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
1518
|
+
: ObjCTurboModule(params) {
|
1519
|
+
|
1520
|
+
methodMap_["sendRequest"] = MethodMetadata {2, __hostFunction_NativeNetworkingIOSSpecJSI_sendRequest};
|
1521
|
+
setMethodArgConversionSelector(@"sendRequest", 0, @"JS_NativeNetworkingIOS_SpecSendRequestQuery:");
|
1522
|
+
|
1523
|
+
methodMap_["abortRequest"] = MethodMetadata {1, __hostFunction_NativeNetworkingIOSSpecJSI_abortRequest};
|
1524
|
+
|
1525
|
+
|
1526
|
+
methodMap_["clearCookies"] = MethodMetadata {1, __hostFunction_NativeNetworkingIOSSpecJSI_clearCookies};
|
1527
|
+
|
1528
|
+
|
1529
|
+
methodMap_["addListener"] = MethodMetadata {1, __hostFunction_NativeNetworkingIOSSpecJSI_addListener};
|
1530
|
+
|
1531
|
+
|
1532
|
+
methodMap_["removeListeners"] = MethodMetadata {1, __hostFunction_NativeNetworkingIOSSpecJSI_removeListeners};
|
1533
|
+
|
1534
|
+
}
|
1535
|
+
} // namespace react
|
1536
|
+
} // namespace facebook
|
1537
|
+
|
1538
|
+
namespace facebook {
|
1539
|
+
namespace react {
|
1540
|
+
|
1541
|
+
static facebook::jsi::Value __hostFunction_NativePlatformConstantsIOSSpecJSI_getConstants(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1542
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, ObjectKind, "getConstants", @selector(getConstants), args, count);
|
1543
|
+
}
|
1544
|
+
|
1545
|
+
NativePlatformConstantsIOSSpecJSI::NativePlatformConstantsIOSSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
1546
|
+
: ObjCTurboModule(params) {
|
1547
|
+
|
1548
|
+
methodMap_["getConstants"] = MethodMetadata {0, __hostFunction_NativePlatformConstantsIOSSpecJSI_getConstants};
|
1549
|
+
|
1550
|
+
}
|
1551
|
+
} // namespace react
|
1552
|
+
} // namespace facebook
|
1553
|
+
@implementation RCTCxxConvert (NativePushNotificationManagerIOS_SpecRequestPermissionsPermission)
|
1554
|
+
+ (RCTManagedPointer *)JS_NativePushNotificationManagerIOS_SpecRequestPermissionsPermission:(id)json
|
1555
|
+
{
|
1556
|
+
return facebook::react::managedPointer<JS::NativePushNotificationManagerIOS::SpecRequestPermissionsPermission>(json);
|
1557
|
+
}
|
1558
|
+
@end
|
1559
|
+
@implementation RCTCxxConvert (NativePushNotificationManagerIOS_Notification)
|
1560
|
+
+ (RCTManagedPointer *)JS_NativePushNotificationManagerIOS_Notification:(id)json
|
1561
|
+
{
|
1562
|
+
return facebook::react::managedPointer<JS::NativePushNotificationManagerIOS::Notification>(json);
|
1563
|
+
}
|
1564
|
+
@end
|
1565
|
+
namespace facebook {
|
1566
|
+
namespace react {
|
1567
|
+
|
1568
|
+
static facebook::jsi::Value __hostFunction_NativePushNotificationManagerIOSSpecJSI_onFinishRemoteNotification(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1569
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "onFinishRemoteNotification", @selector(onFinishRemoteNotification:fetchResult:), args, count);
|
1570
|
+
}
|
1571
|
+
|
1572
|
+
static facebook::jsi::Value __hostFunction_NativePushNotificationManagerIOSSpecJSI_setApplicationIconBadgeNumber(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1573
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "setApplicationIconBadgeNumber", @selector(setApplicationIconBadgeNumber:), args, count);
|
1574
|
+
}
|
1575
|
+
|
1576
|
+
static facebook::jsi::Value __hostFunction_NativePushNotificationManagerIOSSpecJSI_getApplicationIconBadgeNumber(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1577
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "getApplicationIconBadgeNumber", @selector(getApplicationIconBadgeNumber:), args, count);
|
1578
|
+
}
|
1579
|
+
|
1580
|
+
static facebook::jsi::Value __hostFunction_NativePushNotificationManagerIOSSpecJSI_requestPermissions(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1581
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, PromiseKind, "requestPermissions", @selector(requestPermissions:resolve:reject:), args, count);
|
1582
|
+
}
|
1583
|
+
|
1584
|
+
static facebook::jsi::Value __hostFunction_NativePushNotificationManagerIOSSpecJSI_abandonPermissions(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1585
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "abandonPermissions", @selector(abandonPermissions), args, count);
|
1586
|
+
}
|
1587
|
+
|
1588
|
+
static facebook::jsi::Value __hostFunction_NativePushNotificationManagerIOSSpecJSI_checkPermissions(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1589
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "checkPermissions", @selector(checkPermissions:), args, count);
|
1590
|
+
}
|
1591
|
+
|
1592
|
+
static facebook::jsi::Value __hostFunction_NativePushNotificationManagerIOSSpecJSI_presentLocalNotification(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1593
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "presentLocalNotification", @selector(presentLocalNotification:), args, count);
|
1594
|
+
}
|
1595
|
+
|
1596
|
+
static facebook::jsi::Value __hostFunction_NativePushNotificationManagerIOSSpecJSI_scheduleLocalNotification(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1597
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "scheduleLocalNotification", @selector(scheduleLocalNotification:), args, count);
|
1598
|
+
}
|
1599
|
+
|
1600
|
+
static facebook::jsi::Value __hostFunction_NativePushNotificationManagerIOSSpecJSI_cancelAllLocalNotifications(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1601
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "cancelAllLocalNotifications", @selector(cancelAllLocalNotifications), args, count);
|
1602
|
+
}
|
1603
|
+
|
1604
|
+
static facebook::jsi::Value __hostFunction_NativePushNotificationManagerIOSSpecJSI_cancelLocalNotifications(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1605
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "cancelLocalNotifications", @selector(cancelLocalNotifications:), args, count);
|
1606
|
+
}
|
1607
|
+
|
1608
|
+
static facebook::jsi::Value __hostFunction_NativePushNotificationManagerIOSSpecJSI_getInitialNotification(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1609
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, PromiseKind, "getInitialNotification", @selector(getInitialNotification:reject:), args, count);
|
1610
|
+
}
|
1611
|
+
|
1612
|
+
static facebook::jsi::Value __hostFunction_NativePushNotificationManagerIOSSpecJSI_getScheduledLocalNotifications(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1613
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "getScheduledLocalNotifications", @selector(getScheduledLocalNotifications:), args, count);
|
1614
|
+
}
|
1615
|
+
|
1616
|
+
static facebook::jsi::Value __hostFunction_NativePushNotificationManagerIOSSpecJSI_removeAllDeliveredNotifications(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1617
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "removeAllDeliveredNotifications", @selector(removeAllDeliveredNotifications), args, count);
|
1618
|
+
}
|
1619
|
+
|
1620
|
+
static facebook::jsi::Value __hostFunction_NativePushNotificationManagerIOSSpecJSI_removeDeliveredNotifications(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1621
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "removeDeliveredNotifications", @selector(removeDeliveredNotifications:), args, count);
|
1622
|
+
}
|
1623
|
+
|
1624
|
+
static facebook::jsi::Value __hostFunction_NativePushNotificationManagerIOSSpecJSI_getDeliveredNotifications(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1625
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "getDeliveredNotifications", @selector(getDeliveredNotifications:), args, count);
|
1626
|
+
}
|
1627
|
+
|
1628
|
+
static facebook::jsi::Value __hostFunction_NativePushNotificationManagerIOSSpecJSI_getAuthorizationStatus(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1629
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "getAuthorizationStatus", @selector(getAuthorizationStatus:), args, count);
|
1630
|
+
}
|
1631
|
+
|
1632
|
+
static facebook::jsi::Value __hostFunction_NativePushNotificationManagerIOSSpecJSI_addListener(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1633
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "addListener", @selector(addListener:), args, count);
|
1634
|
+
}
|
1635
|
+
|
1636
|
+
static facebook::jsi::Value __hostFunction_NativePushNotificationManagerIOSSpecJSI_removeListeners(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1637
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "removeListeners", @selector(removeListeners:), args, count);
|
1638
|
+
}
|
1639
|
+
|
1640
|
+
NativePushNotificationManagerIOSSpecJSI::NativePushNotificationManagerIOSSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
1641
|
+
: ObjCTurboModule(params) {
|
1642
|
+
|
1643
|
+
methodMap_["onFinishRemoteNotification"] = MethodMetadata {2, __hostFunction_NativePushNotificationManagerIOSSpecJSI_onFinishRemoteNotification};
|
1644
|
+
|
1645
|
+
|
1646
|
+
methodMap_["setApplicationIconBadgeNumber"] = MethodMetadata {1, __hostFunction_NativePushNotificationManagerIOSSpecJSI_setApplicationIconBadgeNumber};
|
1647
|
+
|
1648
|
+
|
1649
|
+
methodMap_["getApplicationIconBadgeNumber"] = MethodMetadata {1, __hostFunction_NativePushNotificationManagerIOSSpecJSI_getApplicationIconBadgeNumber};
|
1650
|
+
|
1651
|
+
|
1652
|
+
methodMap_["requestPermissions"] = MethodMetadata {1, __hostFunction_NativePushNotificationManagerIOSSpecJSI_requestPermissions};
|
1653
|
+
setMethodArgConversionSelector(@"requestPermissions", 0, @"JS_NativePushNotificationManagerIOS_SpecRequestPermissionsPermission:");
|
1654
|
+
|
1655
|
+
methodMap_["abandonPermissions"] = MethodMetadata {0, __hostFunction_NativePushNotificationManagerIOSSpecJSI_abandonPermissions};
|
1656
|
+
|
1657
|
+
|
1658
|
+
methodMap_["checkPermissions"] = MethodMetadata {1, __hostFunction_NativePushNotificationManagerIOSSpecJSI_checkPermissions};
|
1659
|
+
|
1660
|
+
|
1661
|
+
methodMap_["presentLocalNotification"] = MethodMetadata {1, __hostFunction_NativePushNotificationManagerIOSSpecJSI_presentLocalNotification};
|
1662
|
+
setMethodArgConversionSelector(@"presentLocalNotification", 0, @"JS_NativePushNotificationManagerIOS_Notification:");
|
1663
|
+
|
1664
|
+
methodMap_["scheduleLocalNotification"] = MethodMetadata {1, __hostFunction_NativePushNotificationManagerIOSSpecJSI_scheduleLocalNotification};
|
1665
|
+
setMethodArgConversionSelector(@"scheduleLocalNotification", 0, @"JS_NativePushNotificationManagerIOS_Notification:");
|
1666
|
+
|
1667
|
+
methodMap_["cancelAllLocalNotifications"] = MethodMetadata {0, __hostFunction_NativePushNotificationManagerIOSSpecJSI_cancelAllLocalNotifications};
|
1668
|
+
|
1669
|
+
|
1670
|
+
methodMap_["cancelLocalNotifications"] = MethodMetadata {1, __hostFunction_NativePushNotificationManagerIOSSpecJSI_cancelLocalNotifications};
|
1671
|
+
|
1672
|
+
|
1673
|
+
methodMap_["getInitialNotification"] = MethodMetadata {0, __hostFunction_NativePushNotificationManagerIOSSpecJSI_getInitialNotification};
|
1674
|
+
|
1675
|
+
|
1676
|
+
methodMap_["getScheduledLocalNotifications"] = MethodMetadata {1, __hostFunction_NativePushNotificationManagerIOSSpecJSI_getScheduledLocalNotifications};
|
1677
|
+
|
1678
|
+
|
1679
|
+
methodMap_["removeAllDeliveredNotifications"] = MethodMetadata {0, __hostFunction_NativePushNotificationManagerIOSSpecJSI_removeAllDeliveredNotifications};
|
1680
|
+
|
1681
|
+
|
1682
|
+
methodMap_["removeDeliveredNotifications"] = MethodMetadata {1, __hostFunction_NativePushNotificationManagerIOSSpecJSI_removeDeliveredNotifications};
|
1683
|
+
|
1684
|
+
|
1685
|
+
methodMap_["getDeliveredNotifications"] = MethodMetadata {1, __hostFunction_NativePushNotificationManagerIOSSpecJSI_getDeliveredNotifications};
|
1686
|
+
|
1687
|
+
|
1688
|
+
methodMap_["getAuthorizationStatus"] = MethodMetadata {1, __hostFunction_NativePushNotificationManagerIOSSpecJSI_getAuthorizationStatus};
|
1689
|
+
|
1690
|
+
|
1691
|
+
methodMap_["addListener"] = MethodMetadata {1, __hostFunction_NativePushNotificationManagerIOSSpecJSI_addListener};
|
1692
|
+
|
1693
|
+
|
1694
|
+
methodMap_["removeListeners"] = MethodMetadata {1, __hostFunction_NativePushNotificationManagerIOSSpecJSI_removeListeners};
|
1695
|
+
|
1696
|
+
}
|
1697
|
+
} // namespace react
|
1698
|
+
} // namespace facebook
|
1699
|
+
|
1700
|
+
namespace facebook {
|
1701
|
+
namespace react {
|
1702
|
+
|
1703
|
+
static facebook::jsi::Value __hostFunction_NativeRedBoxSpecJSI_setExtraData(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1704
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "setExtraData", @selector(setExtraData:forIdentifier:), args, count);
|
1705
|
+
}
|
1706
|
+
|
1707
|
+
static facebook::jsi::Value __hostFunction_NativeRedBoxSpecJSI_dismiss(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1708
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "dismiss", @selector(dismiss), args, count);
|
1709
|
+
}
|
1710
|
+
|
1711
|
+
NativeRedBoxSpecJSI::NativeRedBoxSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
1712
|
+
: ObjCTurboModule(params) {
|
1713
|
+
|
1714
|
+
methodMap_["setExtraData"] = MethodMetadata {2, __hostFunction_NativeRedBoxSpecJSI_setExtraData};
|
1715
|
+
|
1716
|
+
|
1717
|
+
methodMap_["dismiss"] = MethodMetadata {0, __hostFunction_NativeRedBoxSpecJSI_dismiss};
|
1718
|
+
|
1719
|
+
}
|
1720
|
+
} // namespace react
|
1721
|
+
} // namespace facebook
|
1722
|
+
|
1723
|
+
namespace facebook {
|
1724
|
+
namespace react {
|
1725
|
+
|
1726
|
+
static facebook::jsi::Value __hostFunction_NativeSegmentFetcherSpecJSI_fetchSegment(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1727
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "fetchSegment", @selector(fetchSegment:options:callback:), args, count);
|
1728
|
+
}
|
1729
|
+
|
1730
|
+
static facebook::jsi::Value __hostFunction_NativeSegmentFetcherSpecJSI_getSegment(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1731
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "getSegment", @selector(getSegment:options:callback:), args, count);
|
1732
|
+
}
|
1733
|
+
|
1734
|
+
NativeSegmentFetcherSpecJSI::NativeSegmentFetcherSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
1735
|
+
: ObjCTurboModule(params) {
|
1736
|
+
|
1737
|
+
methodMap_["fetchSegment"] = MethodMetadata {3, __hostFunction_NativeSegmentFetcherSpecJSI_fetchSegment};
|
1738
|
+
|
1739
|
+
|
1740
|
+
methodMap_["getSegment"] = MethodMetadata {3, __hostFunction_NativeSegmentFetcherSpecJSI_getSegment};
|
1741
|
+
|
1742
|
+
}
|
1743
|
+
} // namespace react
|
1744
|
+
} // namespace facebook
|
1745
|
+
|
1746
|
+
namespace facebook {
|
1747
|
+
namespace react {
|
1748
|
+
|
1749
|
+
static facebook::jsi::Value __hostFunction_NativeSettingsManagerSpecJSI_setValues(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1750
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "setValues", @selector(setValues:), args, count);
|
1751
|
+
}
|
1752
|
+
|
1753
|
+
static facebook::jsi::Value __hostFunction_NativeSettingsManagerSpecJSI_deleteValues(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1754
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "deleteValues", @selector(deleteValues:), args, count);
|
1755
|
+
}
|
1756
|
+
|
1757
|
+
static facebook::jsi::Value __hostFunction_NativeSettingsManagerSpecJSI_getConstants(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1758
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, ObjectKind, "getConstants", @selector(getConstants), args, count);
|
1759
|
+
}
|
1760
|
+
|
1761
|
+
NativeSettingsManagerSpecJSI::NativeSettingsManagerSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
1762
|
+
: ObjCTurboModule(params) {
|
1763
|
+
|
1764
|
+
methodMap_["setValues"] = MethodMetadata {1, __hostFunction_NativeSettingsManagerSpecJSI_setValues};
|
1765
|
+
|
1766
|
+
|
1767
|
+
methodMap_["deleteValues"] = MethodMetadata {1, __hostFunction_NativeSettingsManagerSpecJSI_deleteValues};
|
1768
|
+
|
1769
|
+
|
1770
|
+
methodMap_["getConstants"] = MethodMetadata {0, __hostFunction_NativeSettingsManagerSpecJSI_getConstants};
|
1771
|
+
|
1772
|
+
}
|
1773
|
+
} // namespace react
|
1774
|
+
} // namespace facebook
|
1775
|
+
@implementation RCTCxxConvert (NativeShareModule_SpecShareContent)
|
1776
|
+
+ (RCTManagedPointer *)JS_NativeShareModule_SpecShareContent:(id)json
|
1777
|
+
{
|
1778
|
+
return facebook::react::managedPointer<JS::NativeShareModule::SpecShareContent>(json);
|
1779
|
+
}
|
1780
|
+
@end
|
1781
|
+
namespace facebook {
|
1782
|
+
namespace react {
|
1783
|
+
|
1784
|
+
static facebook::jsi::Value __hostFunction_NativeShareModuleSpecJSI_share(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1785
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, PromiseKind, "share", @selector(share:dialogTitle:resolve:reject:), args, count);
|
1786
|
+
}
|
1787
|
+
|
1788
|
+
NativeShareModuleSpecJSI::NativeShareModuleSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
1789
|
+
: ObjCTurboModule(params) {
|
1790
|
+
|
1791
|
+
methodMap_["share"] = MethodMetadata {2, __hostFunction_NativeShareModuleSpecJSI_share};
|
1792
|
+
setMethodArgConversionSelector(@"share", 0, @"JS_NativeShareModule_SpecShareContent:");
|
1793
|
+
}
|
1794
|
+
} // namespace react
|
1795
|
+
} // namespace facebook
|
1796
|
+
|
1797
|
+
namespace facebook {
|
1798
|
+
namespace react {
|
1799
|
+
|
1800
|
+
static facebook::jsi::Value __hostFunction_NativeSoundManagerSpecJSI_playTouchSound(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1801
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "playTouchSound", @selector(playTouchSound), args, count);
|
1802
|
+
}
|
1803
|
+
|
1804
|
+
NativeSoundManagerSpecJSI::NativeSoundManagerSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
1805
|
+
: ObjCTurboModule(params) {
|
1806
|
+
|
1807
|
+
methodMap_["playTouchSound"] = MethodMetadata {0, __hostFunction_NativeSoundManagerSpecJSI_playTouchSound};
|
1808
|
+
|
1809
|
+
}
|
1810
|
+
} // namespace react
|
1811
|
+
} // namespace facebook
|
1812
|
+
|
1813
|
+
namespace facebook {
|
1814
|
+
namespace react {
|
1815
|
+
|
1816
|
+
static facebook::jsi::Value __hostFunction_NativeSourceCodeSpecJSI_getConstants(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1817
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, ObjectKind, "getConstants", @selector(getConstants), args, count);
|
1818
|
+
}
|
1819
|
+
|
1820
|
+
NativeSourceCodeSpecJSI::NativeSourceCodeSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
1821
|
+
: ObjCTurboModule(params) {
|
1822
|
+
|
1823
|
+
methodMap_["getConstants"] = MethodMetadata {0, __hostFunction_NativeSourceCodeSpecJSI_getConstants};
|
1824
|
+
|
1825
|
+
}
|
1826
|
+
} // namespace react
|
1827
|
+
} // namespace facebook
|
1828
|
+
|
1829
|
+
namespace facebook {
|
1830
|
+
namespace react {
|
1831
|
+
|
1832
|
+
static facebook::jsi::Value __hostFunction_NativeStatusBarManagerIOSSpecJSI_getHeight(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1833
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "getHeight", @selector(getHeight:), args, count);
|
1834
|
+
}
|
1835
|
+
|
1836
|
+
static facebook::jsi::Value __hostFunction_NativeStatusBarManagerIOSSpecJSI_setNetworkActivityIndicatorVisible(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1837
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "setNetworkActivityIndicatorVisible", @selector(setNetworkActivityIndicatorVisible:), args, count);
|
1838
|
+
}
|
1839
|
+
|
1840
|
+
static facebook::jsi::Value __hostFunction_NativeStatusBarManagerIOSSpecJSI_addListener(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1841
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "addListener", @selector(addListener:), args, count);
|
1842
|
+
}
|
1843
|
+
|
1844
|
+
static facebook::jsi::Value __hostFunction_NativeStatusBarManagerIOSSpecJSI_removeListeners(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1845
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "removeListeners", @selector(removeListeners:), args, count);
|
1846
|
+
}
|
1847
|
+
|
1848
|
+
static facebook::jsi::Value __hostFunction_NativeStatusBarManagerIOSSpecJSI_setStyle(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1849
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "setStyle", @selector(setStyle:animated:), args, count);
|
1850
|
+
}
|
1851
|
+
|
1852
|
+
static facebook::jsi::Value __hostFunction_NativeStatusBarManagerIOSSpecJSI_setHidden(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1853
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "setHidden", @selector(setHidden:withAnimation:), args, count);
|
1854
|
+
}
|
1855
|
+
|
1856
|
+
static facebook::jsi::Value __hostFunction_NativeStatusBarManagerIOSSpecJSI_getConstants(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1857
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, ObjectKind, "getConstants", @selector(getConstants), args, count);
|
1858
|
+
}
|
1859
|
+
|
1860
|
+
NativeStatusBarManagerIOSSpecJSI::NativeStatusBarManagerIOSSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
1861
|
+
: ObjCTurboModule(params) {
|
1862
|
+
|
1863
|
+
methodMap_["getHeight"] = MethodMetadata {1, __hostFunction_NativeStatusBarManagerIOSSpecJSI_getHeight};
|
1864
|
+
|
1865
|
+
|
1866
|
+
methodMap_["setNetworkActivityIndicatorVisible"] = MethodMetadata {1, __hostFunction_NativeStatusBarManagerIOSSpecJSI_setNetworkActivityIndicatorVisible};
|
1867
|
+
|
1868
|
+
|
1869
|
+
methodMap_["addListener"] = MethodMetadata {1, __hostFunction_NativeStatusBarManagerIOSSpecJSI_addListener};
|
1870
|
+
|
1871
|
+
|
1872
|
+
methodMap_["removeListeners"] = MethodMetadata {1, __hostFunction_NativeStatusBarManagerIOSSpecJSI_removeListeners};
|
1873
|
+
|
1874
|
+
|
1875
|
+
methodMap_["setStyle"] = MethodMetadata {2, __hostFunction_NativeStatusBarManagerIOSSpecJSI_setStyle};
|
1876
|
+
|
1877
|
+
|
1878
|
+
methodMap_["setHidden"] = MethodMetadata {2, __hostFunction_NativeStatusBarManagerIOSSpecJSI_setHidden};
|
1879
|
+
|
1880
|
+
|
1881
|
+
methodMap_["getConstants"] = MethodMetadata {0, __hostFunction_NativeStatusBarManagerIOSSpecJSI_getConstants};
|
1882
|
+
|
1883
|
+
}
|
1884
|
+
} // namespace react
|
1885
|
+
} // namespace facebook
|
1886
|
+
|
1887
|
+
namespace facebook {
|
1888
|
+
namespace react {
|
1889
|
+
|
1890
|
+
static facebook::jsi::Value __hostFunction_NativeTimingSpecJSI_createTimer(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1891
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "createTimer", @selector(createTimer:duration:jsSchedulingTime:repeats:), args, count);
|
1892
|
+
}
|
1893
|
+
|
1894
|
+
static facebook::jsi::Value __hostFunction_NativeTimingSpecJSI_deleteTimer(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1895
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "deleteTimer", @selector(deleteTimer:), args, count);
|
1896
|
+
}
|
1897
|
+
|
1898
|
+
static facebook::jsi::Value __hostFunction_NativeTimingSpecJSI_setSendIdleEvents(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1899
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "setSendIdleEvents", @selector(setSendIdleEvents:), args, count);
|
1900
|
+
}
|
1901
|
+
|
1902
|
+
NativeTimingSpecJSI::NativeTimingSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
1903
|
+
: ObjCTurboModule(params) {
|
1904
|
+
|
1905
|
+
methodMap_["createTimer"] = MethodMetadata {4, __hostFunction_NativeTimingSpecJSI_createTimer};
|
1906
|
+
|
1907
|
+
|
1908
|
+
methodMap_["deleteTimer"] = MethodMetadata {1, __hostFunction_NativeTimingSpecJSI_deleteTimer};
|
1909
|
+
|
1910
|
+
|
1911
|
+
methodMap_["setSendIdleEvents"] = MethodMetadata {1, __hostFunction_NativeTimingSpecJSI_setSendIdleEvents};
|
1912
|
+
|
1913
|
+
}
|
1914
|
+
} // namespace react
|
1915
|
+
} // namespace facebook
|
1916
|
+
|
1917
|
+
namespace facebook {
|
1918
|
+
namespace react {
|
1919
|
+
|
1920
|
+
static facebook::jsi::Value __hostFunction_NativeVibrationSpecJSI_vibrate(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1921
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "vibrate", @selector(vibrate:), args, count);
|
1922
|
+
}
|
1923
|
+
|
1924
|
+
static facebook::jsi::Value __hostFunction_NativeVibrationSpecJSI_vibrateByPattern(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1925
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "vibrateByPattern", @selector(vibrateByPattern:repeat:), args, count);
|
1926
|
+
}
|
1927
|
+
|
1928
|
+
static facebook::jsi::Value __hostFunction_NativeVibrationSpecJSI_cancel(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1929
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "cancel", @selector(cancel), args, count);
|
1930
|
+
}
|
1931
|
+
|
1932
|
+
NativeVibrationSpecJSI::NativeVibrationSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
1933
|
+
: ObjCTurboModule(params) {
|
1934
|
+
|
1935
|
+
methodMap_["vibrate"] = MethodMetadata {1, __hostFunction_NativeVibrationSpecJSI_vibrate};
|
1936
|
+
|
1937
|
+
|
1938
|
+
methodMap_["vibrateByPattern"] = MethodMetadata {2, __hostFunction_NativeVibrationSpecJSI_vibrateByPattern};
|
1939
|
+
|
1940
|
+
|
1941
|
+
methodMap_["cancel"] = MethodMetadata {0, __hostFunction_NativeVibrationSpecJSI_cancel};
|
1942
|
+
|
1943
|
+
}
|
1944
|
+
} // namespace react
|
1945
|
+
} // namespace facebook
|
1946
|
+
@implementation RCTCxxConvert (NativeWebSocketModule_SpecConnectOptions)
|
1947
|
+
+ (RCTManagedPointer *)JS_NativeWebSocketModule_SpecConnectOptions:(id)json
|
1948
|
+
{
|
1949
|
+
return facebook::react::managedPointer<JS::NativeWebSocketModule::SpecConnectOptions>(json);
|
1950
|
+
}
|
1951
|
+
@end
|
1952
|
+
namespace facebook {
|
1953
|
+
namespace react {
|
1954
|
+
|
1955
|
+
static facebook::jsi::Value __hostFunction_NativeWebSocketModuleSpecJSI_connect(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1956
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "connect", @selector(connect:protocols:options:socketID:), args, count);
|
1957
|
+
}
|
1958
|
+
|
1959
|
+
static facebook::jsi::Value __hostFunction_NativeWebSocketModuleSpecJSI_send(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1960
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "send", @selector(send:forSocketID:), args, count);
|
1961
|
+
}
|
1962
|
+
|
1963
|
+
static facebook::jsi::Value __hostFunction_NativeWebSocketModuleSpecJSI_sendBinary(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1964
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "sendBinary", @selector(sendBinary:forSocketID:), args, count);
|
1965
|
+
}
|
1966
|
+
|
1967
|
+
static facebook::jsi::Value __hostFunction_NativeWebSocketModuleSpecJSI_ping(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1968
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "ping", @selector(ping:), args, count);
|
1969
|
+
}
|
1970
|
+
|
1971
|
+
static facebook::jsi::Value __hostFunction_NativeWebSocketModuleSpecJSI_close(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1972
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "close", @selector(close:reason:socketID:), args, count);
|
1973
|
+
}
|
1974
|
+
|
1975
|
+
static facebook::jsi::Value __hostFunction_NativeWebSocketModuleSpecJSI_addListener(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1976
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "addListener", @selector(addListener:), args, count);
|
1977
|
+
}
|
1978
|
+
|
1979
|
+
static facebook::jsi::Value __hostFunction_NativeWebSocketModuleSpecJSI_removeListeners(facebook::jsi::Runtime& rt, TurboModule &turboModule, const facebook::jsi::Value* args, size_t count) {
|
1980
|
+
return static_cast<ObjCTurboModule&>(turboModule).invokeObjCMethod(rt, VoidKind, "removeListeners", @selector(removeListeners:), args, count);
|
1981
|
+
}
|
1982
|
+
|
1983
|
+
NativeWebSocketModuleSpecJSI::NativeWebSocketModuleSpecJSI(const ObjCTurboModule::InitParams ¶ms)
|
1984
|
+
: ObjCTurboModule(params) {
|
1985
|
+
|
1986
|
+
methodMap_["connect"] = MethodMetadata {4, __hostFunction_NativeWebSocketModuleSpecJSI_connect};
|
1987
|
+
setMethodArgConversionSelector(@"connect", 2, @"JS_NativeWebSocketModule_SpecConnectOptions:");
|
1988
|
+
|
1989
|
+
methodMap_["send"] = MethodMetadata {2, __hostFunction_NativeWebSocketModuleSpecJSI_send};
|
1990
|
+
|
1991
|
+
|
1992
|
+
methodMap_["sendBinary"] = MethodMetadata {2, __hostFunction_NativeWebSocketModuleSpecJSI_sendBinary};
|
1993
|
+
|
1994
|
+
|
1995
|
+
methodMap_["ping"] = MethodMetadata {1, __hostFunction_NativeWebSocketModuleSpecJSI_ping};
|
1996
|
+
|
1997
|
+
|
1998
|
+
methodMap_["close"] = MethodMetadata {3, __hostFunction_NativeWebSocketModuleSpecJSI_close};
|
1999
|
+
|
2000
|
+
|
2001
|
+
methodMap_["addListener"] = MethodMetadata {1, __hostFunction_NativeWebSocketModuleSpecJSI_addListener};
|
2002
|
+
|
2003
|
+
|
2004
|
+
methodMap_["removeListeners"] = MethodMetadata {1, __hostFunction_NativeWebSocketModuleSpecJSI_removeListeners};
|
2005
|
+
|
2006
|
+
}
|
2007
|
+
} // namespace react
|
2008
|
+
} // namespace facebook
|