catalyst-core-internal 0.0.3-canary.8 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -3
- package/bin/catalyst.js +28 -15
- package/changelog.md +134 -23
- package/dist/native/androidProject/app/build.gradle.kts +301 -37
- package/dist/native/androidProject/app/proguard-rules.pro +85 -14
- package/dist/native/androidProject/app/src/debug/res/xml/network_security_config.xml +8 -0
- package/dist/native/androidProject/app/src/main/AndroidManifest.xml +29 -4
- package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/BridgeMessageValidator.kt +552 -0
- package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/CatalystConstants.kt +109 -0
- package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/CustomWebview.kt +1016 -0
- package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/MainActivity.kt +546 -0
- package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/MetricsMonitor.kt +341 -0
- package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/NativeBridge.kt +1239 -0
- package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/SplashActivity.kt +111 -0
- package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/URLWhitelistManager.kt +231 -0
- package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/Utils.kt +58 -0
- package/dist/native/androidProject/app/src/main/java/{com/example/myapplication → io/yourname/androidproject}/WebCacheManager.kt +166 -36
- package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/design/DesignTokens.kt +307 -0
- package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/security/EmulatorDetector.kt +203 -0
- package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/security/FridaDetector.kt +187 -0
- package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/security/SecurityAlertHandler.kt +170 -0
- package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/security/SecurityAlertUI.kt +366 -0
- package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/security/SecurityBottomSheet.kt +138 -0
- package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/security/SecurityCheckManager.kt +511 -0
- package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/security/SecurityCheckScheduler.kt +68 -0
- package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/utils/BridgeUtils.kt +257 -0
- package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/utils/CameraUtils.kt +269 -0
- package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/utils/DeviceInfoUtils.kt +85 -0
- package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/utils/DownloadUtils.kt +273 -0
- package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/utils/FileSizeRouterUtils.kt +347 -0
- package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/utils/FileUtils.kt +335 -0
- package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/utils/FrameworkServerUtils.kt +411 -0
- package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/utils/IntentUtils.kt +299 -0
- package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/utils/KeyboardUtil.kt +82 -0
- package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/utils/NetworkUtils.kt +105 -0
- package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/utils/NotificationConstants.kt +28 -0
- package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/utils/NotificationUtils.kt +639 -0
- package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/utils/SafeAreaUtils.kt +62 -0
- package/dist/native/androidProject/app/src/main/res/drawable/splashscreen_fallback.png +0 -0
- package/dist/native/androidProject/app/src/main/res/layout/activity_main.xml +13 -6
- package/dist/native/androidProject/app/src/main/res/layout/activity_splash.xml +20 -0
- package/dist/native/androidProject/app/src/main/res/values/strings.xml +1 -1
- package/dist/native/androidProject/app/src/main/res/values/themes.xml +23 -0
- package/dist/native/androidProject/app/src/main/res/values-night/themes.xml +11 -0
- package/dist/native/androidProject/app/src/main/res/xml/file_paths.xml +18 -0
- package/dist/native/androidProject/app/src/main/res/xml/network_security_config.xml +12 -0
- package/dist/native/androidProject/app/src/noFcm/java/io/yourname/androidproject/utils/NotificationManager.kt +166 -0
- package/dist/native/androidProject/app/src/noFcm/java/io/yourname/androidproject/utils/PushNotificationUtils.kt +94 -0
- package/dist/native/androidProject/app/src/test/java/io/yourname/androidproject/BridgeMessageValidatorTest.kt +267 -0
- package/dist/native/androidProject/app/src/test/java/io/yourname/androidproject/BridgeUtilsTest.kt +286 -0
- package/dist/native/androidProject/app/src/test/java/io/yourname/androidproject/CameraUtilsTest.kt +296 -0
- package/dist/native/androidProject/app/src/test/java/io/yourname/androidproject/ConfigMappingTest.kt +594 -0
- package/dist/native/androidProject/app/src/test/java/io/yourname/androidproject/CustomWebviewTest.kt +466 -0
- package/dist/native/androidProject/app/src/test/java/io/yourname/androidproject/DeviceInfoUtilsTest.kt +187 -0
- package/dist/native/androidProject/app/src/test/java/io/yourname/androidproject/FileUtilsTest.kt +304 -0
- package/dist/native/androidProject/app/src/test/java/io/yourname/androidproject/NativeBridgeTest.kt +424 -0
- package/dist/native/androidProject/app/src/test/java/io/yourname/androidproject/NotificationUtilsTest.kt +469 -0
- package/dist/native/androidProject/app/src/test/java/io/yourname/androidproject/SecurityBridgeTest.kt +199 -0
- package/dist/native/androidProject/app/src/test/java/io/yourname/androidproject/URLWhitelistManagerTest.kt +462 -0
- package/dist/native/androidProject/app/src/test/java/io/yourname/androidproject/WebCacheManagerTest.kt +391 -0
- package/dist/native/androidProject/app/src/withFcm/java/io/yourname/androidproject/utils/NotificationManager.kt +224 -0
- package/dist/native/androidProject/app/src/withFcm/java/io/yourname/androidproject/utils/PushNotificationUtils.kt +399 -0
- package/dist/native/androidProject/build.gradle.kts +6 -0
- package/dist/native/androidProject/gradle/libs.versions.toml +9 -3
- package/dist/native/androidProject/gradle/wrapper/gradle-wrapper.properties +1 -1
- package/dist/native/androidProject/keystore/Untitled +0 -0
- package/dist/native/androidProject/keystore/release-key.jks +0 -0
- package/dist/native/androidProject/settings.gradle.kts +1 -1
- package/dist/native/androidSetup.js +4 -3
- package/dist/native/assets/catalyst.png +0 -0
- package/dist/native/bridge/WebBridge.js +59 -0
- package/dist/native/bridge/constants/NativeInterfaces.js +42 -0
- package/dist/native/bridge/errors.js +39 -0
- package/dist/native/bridge/hooks.js +137 -0
- package/dist/native/bridge/safeArea.js +5 -0
- package/dist/native/bridge/standardizedHooks.js +98 -0
- package/dist/native/bridge/useBaseHook.js +42 -0
- package/dist/native/bridge/utils/CameraUtils.js +58 -0
- package/dist/native/bridge/utils/FileObjectConverter.js +40 -0
- package/dist/native/bridge/utils/NativeBridge.js +109 -0
- package/dist/native/buildAppAndroid.js +149 -7
- package/dist/native/buildAppIos.js +293 -25
- package/dist/native/iosnativeWebView/Configurations/Debug.xcconfig +21 -0
- package/dist/native/iosnativeWebView/Configurations/Release.xcconfig +24 -0
- package/dist/native/iosnativeWebView/Configurations/Shared.xcconfig +50 -0
- package/dist/native/iosnativeWebView/Package.resolved +32 -0
- package/dist/native/iosnativeWebView/Package.swift +37 -0
- package/dist/native/iosnativeWebView/Sources/CatalystNotifications/LocalNotificationHandler.swift +293 -0
- package/dist/native/iosnativeWebView/Sources/CatalystNotifications/NotificationManager.swift +299 -0
- package/dist/native/iosnativeWebView/Sources/CatalystNotifications/PushNotificationHandler.swift +199 -0
- package/dist/native/iosnativeWebView/Sources/Core/Constants/CatalystConstants.swift +125 -0
- package/dist/native/iosnativeWebView/Sources/Core/Constants/ConfigConstants.swift +70 -0
- package/dist/native/iosnativeWebView/Sources/Core/Notifications/NotificationModels.swift +156 -0
- package/dist/native/iosnativeWebView/Sources/Core/Protocols/NotificationHandlerProtocol.swift +35 -0
- package/dist/native/iosnativeWebView/Sources/Core/Utils/BootTimingUtility.swift +26 -0
- package/dist/native/iosnativeWebView/{iosnativeWebView → Sources/Core/Utils}/CacheManager.swift +69 -36
- package/dist/native/iosnativeWebView/Sources/Core/Utils/CameraTransportUtils.swift +363 -0
- package/dist/native/iosnativeWebView/Sources/Core/Utils/DeviceInfoUtils.swift +67 -0
- package/dist/native/iosnativeWebView/Sources/Core/Utils/FilePickerHandler.swift +1053 -0
- package/dist/native/iosnativeWebView/Sources/Core/Utils/FrameworkServerUtils.swift +901 -0
- package/dist/native/iosnativeWebView/Sources/Core/Utils/ImageHandler.swift +474 -0
- package/dist/native/iosnativeWebView/Sources/Core/Utils/NetworkMonitor.swift +112 -0
- package/dist/native/iosnativeWebView/Sources/Core/Utils/NotificationHandlerProvider.swift +20 -0
- package/dist/native/iosnativeWebView/Sources/Core/Utils/NullNotificationHandler.swift +85 -0
- package/dist/native/iosnativeWebView/{iosnativeWebView → Sources/Core/Utils}/ResourceURLProtocol.swift +60 -25
- package/dist/native/iosnativeWebView/Sources/Core/Utils/SafeAreaUtils.swift +132 -0
- package/dist/native/iosnativeWebView/Sources/Core/Utils/ScreenSecureManager.swift +131 -0
- package/dist/native/iosnativeWebView/Sources/Core/Utils/URLWhitelistManager.swift +224 -0
- package/dist/native/iosnativeWebView/Sources/Core/Utils/WebKitConfig.swift +43 -0
- package/dist/native/iosnativeWebView/Sources/Core/WebView/BridgeCommandHandler.swift +991 -0
- package/dist/native/iosnativeWebView/Sources/Core/WebView/BridgeDelegateHandler.swift +166 -0
- package/dist/native/iosnativeWebView/Sources/Core/WebView/BridgeFileHandler.swift +340 -0
- package/dist/native/iosnativeWebView/Sources/Core/WebView/BridgeJavaScriptInterface.swift +149 -0
- package/dist/native/iosnativeWebView/Sources/Core/WebView/BridgeMessageValidator.swift +611 -0
- package/dist/native/iosnativeWebView/Sources/Core/WebView/NativeBridge.swift +334 -0
- package/dist/native/iosnativeWebView/Sources/Core/WebView/SplashView.swift +95 -0
- package/dist/native/iosnativeWebView/Sources/Core/WebView/SplashViewModel.swift +86 -0
- package/dist/native/iosnativeWebView/Sources/Core/WebView/WebView.swift +181 -0
- package/dist/native/iosnativeWebView/Sources/Core/WebView/WebViewModel.swift +182 -0
- package/dist/native/iosnativeWebView/Sources/Core/WebView/WebViewNavigationDelegate.swift +395 -0
- package/dist/native/iosnativeWebView/iosnativeWebView/AppDelegate.swift +84 -0
- package/dist/native/iosnativeWebView/iosnativeWebView/Assets.xcassets/AccentColor.colorset/Contents.json +8 -8
- package/dist/native/iosnativeWebView/iosnativeWebView/Assets.xcassets/AppIcon.appiconset/Contents.json +10 -10
- package/dist/native/iosnativeWebView/iosnativeWebView/Assets.xcassets/Contents.json +4 -4
- package/dist/native/iosnativeWebView/iosnativeWebView/ContentView.swift +79 -9
- package/dist/native/iosnativeWebView/iosnativeWebView/Info-Release.plist +21 -0
- package/dist/native/iosnativeWebView/iosnativeWebView/Info.plist +15 -0
- package/dist/native/iosnativeWebView/iosnativeWebView/Preview Content/Preview Assets.xcassets/Contents.json +4 -4
- package/dist/native/iosnativeWebView/iosnativeWebView/iosnativeWebView.entitlements +12 -0
- package/dist/native/iosnativeWebView/iosnativeWebView/iosnativeWebViewApp.swift +80 -0
- package/dist/native/iosnativeWebView/iosnativeWebView/localhost.p12 +0 -0
- package/dist/native/iosnativeWebView/iosnativeWebView.xcodeproj/project.pbxproj +118 -92
- package/dist/native/iosnativeWebView/iosnativeWebView.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +69 -0
- package/dist/native/iosnativeWebView/iosnativeWebView.xcodeproj/xcshareddata/xcschemes/iosnativeWebView.xcscheme +9 -4
- package/dist/native/iosnativeWebView/iosnativeWebView.xctestplan +47 -0
- package/dist/native/iosnativeWebView/iosnativeWebViewTests/BootTimingUtilityTests.swift +236 -0
- package/dist/native/iosnativeWebView/iosnativeWebViewTests/BridgeCommandHandlerSecurityTests.swift +212 -0
- package/dist/native/iosnativeWebView/iosnativeWebViewTests/BridgeMessageValidatorTests.swift +418 -0
- package/dist/native/iosnativeWebView/iosnativeWebViewTests/CacheManagerTests.swift +390 -0
- package/dist/native/iosnativeWebView/iosnativeWebViewTests/ConfigMappingTests.swift +299 -0
- package/dist/native/iosnativeWebView/iosnativeWebViewTests/FilePickerHandlerTests.swift +383 -0
- package/dist/native/iosnativeWebView/iosnativeWebViewTests/FrameworkServerUtilsTests.swift +391 -0
- package/dist/native/iosnativeWebView/iosnativeWebViewTests/NativeBridgeTests.swift +581 -0
- package/dist/native/iosnativeWebView/iosnativeWebViewTests/NotificationHandlerTests.swift +430 -0
- package/dist/native/iosnativeWebView/iosnativeWebViewTests/ScreenSecureManagerTests.swift +121 -0
- package/dist/native/iosnativeWebView/iosnativeWebViewTests/URLWhitelistManagerTests.swift +367 -0
- package/dist/native/iosnativeWebView/iosnativeWebViewTests/WebViewTests.swift +440 -0
- package/dist/native/renameAndroidProject.js +89 -0
- package/dist/native/setupEmulatorIos.js +22 -5
- package/dist/native/setupServer.js +28 -0
- package/dist/native/terminalProgress.js +10 -10
- package/dist/native/utils.js +4 -5
- package/dist/otel.js +4 -0
- package/dist/scripts/build.js +2 -2
- package/dist/scripts/devBuild.js +2 -2
- package/dist/scripts/loadEnvironmentVariables.js +4 -1
- package/dist/scripts/scriptUtils.js +2 -2
- package/dist/scripts/start.js +1 -1
- package/dist/sentry.js +5 -0
- package/dist/server/renderer/document/Body.js +4 -4
- package/dist/server/renderer/document/Head.js +1 -1
- package/dist/server/renderer/extract.js +3 -3
- package/dist/server/renderer/handler.js +13 -11
- package/dist/server/renderer/index.js +1 -1
- package/dist/server/startServer.js +2 -2
- package/dist/webpack/base.babel.js +2 -2
- package/dist/webpack/development.client.babel.js +17 -2
- package/dist/webpack/production.client.babel.js +2 -2
- package/dist/webpack/production.ssr.babel.js +2 -2
- package/package.json +10 -5
- package/dist/native/androidProject/.idea/.name +0 -1
- package/dist/native/androidProject/.idea/codeStyles/Project.xml +0 -123
- package/dist/native/androidProject/.idea/codeStyles/codeStyleConfig.xml +0 -5
- package/dist/native/androidProject/.idea/compiler.xml +0 -6
- package/dist/native/androidProject/.idea/deploymentTargetSelector.xml +0 -18
- package/dist/native/androidProject/.idea/gradle.xml +0 -20
- package/dist/native/androidProject/.idea/kotlinc.xml +0 -6
- package/dist/native/androidProject/.idea/migrations.xml +0 -10
- package/dist/native/androidProject/.idea/misc.xml +0 -9
- package/dist/native/androidProject/.idea/other.xml +0 -329
- package/dist/native/androidProject/.idea/runConfigurations.xml +0 -17
- package/dist/native/androidProject/.idea/vcs.xml +0 -8
- package/dist/native/androidProject/app/build/generated/data_binding_base_class_source_out/debug/out/com/example/androidProject/databinding/ActivityMainBinding.java +0 -80
- package/dist/native/androidProject/app/build/generated/source/buildConfig/debug/com/example/androidProject/BuildConfig.java +0 -16
- package/dist/native/androidProject/app/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json +0 -1
- package/dist/native/androidProject/app/build/intermediates/apk/debug/app-debug.apk +0 -0
- package/dist/native/androidProject/app/build/intermediates/apk/debug/baselineProfiles/0/app-debug.dm +0 -0
- package/dist/native/androidProject/app/build/intermediates/apk/debug/baselineProfiles/1/app-debug.dm +0 -0
- package/dist/native/androidProject/app/build/intermediates/apk/debug/output-metadata.json +0 -37
- package/dist/native/androidProject/app/build/intermediates/apk_ide_redirect_file/debug/createDebugApkListingFileRedirect/redirect.txt +0 -2
- package/dist/native/androidProject/app/build/intermediates/app_metadata/debug/writeDebugAppMetadata/app-metadata.properties +0 -2
- package/dist/native/androidProject/app/build/intermediates/assets/debug/mergeDebugAssets/webview_config.properties +0 -4
- package/dist/native/androidProject/app/build/intermediates/binary_art_profile/debug/compileDebugArtProfile/baseline.prof +0 -0
- package/dist/native/androidProject/app/build/intermediates/binary_art_profile_metadata/debug/compileDebugArtProfile/baseline.profm +0 -0
- package/dist/native/androidProject/app/build/intermediates/combined_art_profile/debug/compileDebugArtProfile/baseline-prof.txt +0 -1342
- package/dist/native/androidProject/app/build/intermediates/compatible_screen_manifest/debug/createDebugCompatibleScreenManifests/output-metadata.json +0 -10
- package/dist/native/androidProject/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debug/processDebugResources/R.jar +0 -0
- package/dist/native/androidProject/app/build/intermediates/compressed_assets/debug/compressDebugAssets/out/assets/webview_config.properties.jar +0 -0
- package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/arm64-v8a/build_command_native-lib +0 -4
- package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/arm64-v8a/build_model.json +0 -196
- package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/arm64-v8a/build_stderr_native-lib.txt +0 -0
- package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/arm64-v8a/build_stdout_native-lib.txt +0 -3
- package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/arm64-v8a/generate_cxx_metadata_670_timing.txt +0 -2
- package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/arm64-v8a/metadata_generation_record.json +0 -41
- package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/armeabi-v7a/build_command_native-lib +0 -4
- package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/armeabi-v7a/build_model.json +0 -196
- package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/armeabi-v7a/build_stderr_native-lib.txt +0 -0
- package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/armeabi-v7a/build_stdout_native-lib.txt +0 -3
- package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/armeabi-v7a/generate_cxx_metadata_665_timing.txt +0 -2
- package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/armeabi-v7a/metadata_generation_record.json +0 -41
- package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/x86/build_command_native-lib +0 -4
- package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/x86/build_model.json +0 -196
- package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/x86/build_stderr_native-lib.txt +0 -0
- package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/x86/build_stdout_native-lib.txt +0 -3
- package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/x86/generate_cxx_metadata_34_timing.txt +0 -6
- package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/x86/generate_cxx_metadata_665_timing.txt +0 -2
- package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/x86/metadata_generation_record.json +0 -41
- package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/x86_64/build_command_native-lib +0 -4
- package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/x86_64/build_model.json +0 -196
- package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/x86_64/build_stderr_native-lib.txt +0 -0
- package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/x86_64/build_stdout_native-lib.txt +0 -3
- package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/x86_64/generate_cxx_metadata_662_timing.txt +0 -2
- package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/x86_64/metadata_generation_record.json +0 -41
- package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/obj/arm64-v8a/libnative-lib.so +0 -0
- package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/obj/armeabi-v7a/libnative-lib.so +0 -0
- package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/obj/x86/libnative-lib.so +0 -0
- package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/obj/x86_64/libnative-lib.so +0 -0
- package/dist/native/androidProject/app/build/intermediates/d8_metadata/debug/mergeDexDebug/out.jar +0 -1
- package/dist/native/androidProject/app/build/intermediates/data_binding_base_class_log_artifact/debug/dataBindingGenBaseClassesDebug/out/com.example.androidProject-binding_classes.json +0 -0
- package/dist/native/androidProject/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/activity_main-layout.xml +0 -1
- package/dist/native/androidProject/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/activity_main-layout.xml +0 -1
- package/dist/native/androidProject/app/build/intermediates/desugar_graph/debug/dexBuilderDebug/out/currentProject/dirs_bucket_0/graph.bin +0 -0
- package/dist/native/androidProject/app/build/intermediates/desugar_graph/debug/dexBuilderDebug/out/currentProject/dirs_bucket_1/graph.bin +0 -0
- package/dist/native/androidProject/app/build/intermediates/desugar_graph/debug/dexBuilderDebug/out/currentProject/dirs_bucket_2/graph.bin +0 -0
- package/dist/native/androidProject/app/build/intermediates/desugar_graph/debug/dexBuilderDebug/out/currentProject/dirs_bucket_3/graph.bin +0 -0
- package/dist/native/androidProject/app/build/intermediates/desugar_graph/debug/dexBuilderDebug/out/currentProject/dirs_bucket_4/graph.bin +0 -0
- package/dist/native/androidProject/app/build/intermediates/desugar_graph/debug/dexBuilderDebug/out/currentProject/jar_52bf48673b4727146fb85aee8d24356abad3dcc9dbb8cea715d056c0c4286d95_bucket_0/graph.bin +0 -0
- package/dist/native/androidProject/app/build/intermediates/desugar_graph/debug/dexBuilderDebug/out/currentProject/jar_52bf48673b4727146fb85aee8d24356abad3dcc9dbb8cea715d056c0c4286d95_bucket_1/graph.bin +0 -0
- package/dist/native/androidProject/app/build/intermediates/desugar_graph/debug/dexBuilderDebug/out/currentProject/jar_52bf48673b4727146fb85aee8d24356abad3dcc9dbb8cea715d056c0c4286d95_bucket_2/graph.bin +0 -0
- package/dist/native/androidProject/app/build/intermediates/desugar_graph/debug/dexBuilderDebug/out/currentProject/jar_52bf48673b4727146fb85aee8d24356abad3dcc9dbb8cea715d056c0c4286d95_bucket_3/graph.bin +0 -0
- package/dist/native/androidProject/app/build/intermediates/desugar_graph/debug/dexBuilderDebug/out/currentProject/jar_52bf48673b4727146fb85aee8d24356abad3dcc9dbb8cea715d056c0c4286d95_bucket_4/graph.bin +0 -0
- package/dist/native/androidProject/app/build/intermediates/dex/debug/mergeDexDebug/classes.dex +0 -0
- package/dist/native/androidProject/app/build/intermediates/dex/debug/mergeExtDexDebug/classes.dex +0 -0
- package/dist/native/androidProject/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex +0 -0
- package/dist/native/androidProject/app/build/intermediates/dex/debug/mergeProjectDexDebug/11/classes.dex +0 -0
- package/dist/native/androidProject/app/build/intermediates/dex/debug/mergeProjectDexDebug/5/classes.dex +0 -0
- package/dist/native/androidProject/app/build/intermediates/dex/debug/mergeProjectDexDebug/8/classes.dex +0 -0
- package/dist/native/androidProject/app/build/intermediates/dex_archive_input_jar_hashes/debug/dexBuilderDebug/out +0 -0
- package/dist/native/androidProject/app/build/intermediates/dex_metadata_directory/debug/compileDebugArtProfile/0/.dm +0 -0
- package/dist/native/androidProject/app/build/intermediates/dex_metadata_directory/debug/compileDebugArtProfile/1/.dm +0 -0
- package/dist/native/androidProject/app/build/intermediates/dex_metadata_directory/debug/compileDebugArtProfile/dex-metadata-map.properties +0 -5
- package/dist/native/androidProject/app/build/intermediates/dex_number_of_buckets_file/debug/dexBuilderDebug/out +0 -1
- package/dist/native/androidProject/app/build/intermediates/external_libs_dex/debug/mergeExtDexDebug/classes.dex +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/dataBindingGenBaseClassesDebug/base_builder_log.json +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/compile-file-map.properties +0 -18
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values/values.xml +0 -14050
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-af/values-af.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-am/values-am.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ar/values-ar.xml +0 -122
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-as/values-as.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-az/values-az.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-b+es+419/values-b+es+419.xml +0 -82
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml +0 -119
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-be/values-be.xml +0 -120
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-bg/values-bg.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-bn/values-bn.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-bs/values-bs.xml +0 -119
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ca/values-ca.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-cs/values-cs.xml +0 -120
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-da/values-da.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-de/values-de.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-el/values-el.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rAU/values-en-rAU.xml +0 -39
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rCA/values-en-rCA.xml +0 -39
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml +0 -39
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rXC/values-en-rXC.xml +0 -39
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-es/values-es.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-et/values-et.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-eu/values-eu.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fa/values-fa.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fi/values-fi.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fr/values-fr.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-gl/values-gl.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-gu/values-gu.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-h320dp-port-v13/values-h320dp-port-v13.xml +0 -4
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-h360dp-land-v13/values-h360dp-land-v13.xml +0 -12
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-h480dp-land-v13/values-h480dp-land-v13.xml +0 -12
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-h550dp-port-v13/values-h550dp-port-v13.xml +0 -4
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml +0 -4
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml +0 -8
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hi/values-hi.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hr/values-hr.xml +0 -119
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hu/values-hu.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hy/values-hy.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-in/values-in.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-is/values-is.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-it/values-it.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-iw/values-iw.xml +0 -119
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ja/values-ja.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ka/values-ka.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-kk/values-kk.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-km/values-km.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-kn/values-kn.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ko/values-ko.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ky/values-ky.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-land/values-land.xml +0 -47
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml +0 -16
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ldltr-v21/values-ldltr-v21.xml +0 -4
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ldrtl-v17/values-ldrtl-v17.xml +0 -5
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-lo/values-lo.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-lt/values-lt.xml +0 -120
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-lv/values-lv.xml +0 -119
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-mk/values-mk.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ml/values-ml.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-mn/values-mn.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-mr/values-mr.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ms/values-ms.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-my/values-my.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-nb/values-nb.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ne/values-ne.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-night-v8/values-night-v8.xml +0 -57
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-nl/values-nl.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-or/values-or.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-pa/values-pa.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-pl/values-pl.xml +0 -120
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-port/values-port.xml +0 -4
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-pt/values-pt.xml +0 -39
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-pt-rBR/values-pt-rBR.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-pt-rPT/values-pt-rPT.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ro/values-ro.xml +0 -119
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ru/values-ru.xml +0 -120
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-si/values-si.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sk/values-sk.xml +0 -120
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sl/values-sl.xml +0 -120
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-small-v4/values-small-v4.xml +0 -7
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sq/values-sq.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sr/values-sr.xml +0 -119
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sv/values-sv.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sw/values-sw.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml +0 -27
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ta/values-ta.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-te/values-te.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-th/values-th.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-tl/values-tl.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-tr/values-tr.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-uk/values-uk.xml +0 -120
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ur/values-ur.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-uz/values-uz.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v16/values-v16.xml +0 -7
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v17/values-v17.xml +0 -62
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v18/values-v18.xml +0 -4
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v21/values-v21.xml +0 -564
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v22/values-v22.xml +0 -15
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v23/values-v23.xml +0 -88
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v24/values-v24.xml +0 -21
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v25/values-v25.xml +0 -9
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v26/values-v26.xml +0 -18
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v28/values-v28.xml +0 -29
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v31/values-v31.xml +0 -475
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v34/values-v34.xml +0 -91
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-vi/values-vi.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w320dp-land-v13/values-w320dp-land-v13.xml +0 -5
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w360dp-port-v13/values-w360dp-port-v13.xml +0 -11
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w400dp-port-v13/values-w400dp-port-v13.xml +0 -11
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w600dp-land-v13/values-w600dp-land-v13.xml +0 -4
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-watch-v20/values-watch-v20.xml +0 -12
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-watch-v21/values-watch-v21.xml +0 -15
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml +0 -9
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zu/values-zu.xml +0 -118
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merger.xml +0 -15617
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/activity_main.xml +0 -22
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties +0 -18
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml +0 -23
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values-night-v8/values-night-v8.xml +0 -15
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/packageDebugResources/merger.xml +0 -24
- package/dist/native/androidProject/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/activity_main.xml +0 -22
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/merge-state +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/+8JS8dSxslw2R3BqOE7BXWYjhjM= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/0Apl8BCGxmcyeS9WnVr+WkxdRO8= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/0QewgYUx8yUZPh+OpWQAzuwHyvg= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/1n1D34Lo2ckpQccE9F08e9P5QQE= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/2MJNzMGizEciNef_juyia8JFPPc= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/2RXKa6CUCP5maRV0ZClLaGq0CY4= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/31ykE7hT9MOj91_4JKR8agKkZNM= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/3J6xF6M1SvKhQsajtOBH7looxes= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/4KjrsauZSIjpFTscLAiU2Cz_G1w= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/4LQvrxLcpJn49d6GtyCjUY78vpA= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/54MoobjMrsdl7Rc2IXfsw7w2R3Y= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/5FbPfVbG9zRREDSiDj93jXHyzNE= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/5xZGrCul95ORnm1Gn_hujbafEXA= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/5ym0YLbjRLBkMsmNyD3o9nDtDvc= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/6GA5JVX_9VJH0hP+Zf4Lh99yBDA= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/6ZXOvcaFlY_fGsXskTWE60m3eZY= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/7+CxkmqOBpIN1ZoDDd0P8Eqj4QQ= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/7PdFy23A30FCyo+4eN3AnLi5aOQ= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/8slBSv0zKMv8lsTPcQ0qcd+6e0Y= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/9S7VtcIYrPx+ioyAERJ78gI9x3M= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/9kjkSgo5YmlU9hR5jIQynlNqCX4= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/9pvkDHWi+idzpt4gJXnqnQzWCuU= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Au_HZyUQxXCY900HsO3iBXvbPIw= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/BmqGcp3bZhm3GI8yT8D4MuS5ZtM= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/BsJvHBBf9JyGPWqQ8bz_wW2Ct4Y= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/DP68isr86GbkpkAzTve5ZTU5DTg= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ESSCHnTu5fp_eR0IRgaz8Q3hg1g= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/FlU+E03IuPq6dNuqGkDHnZDQj6I= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Gf0qMsQdTVmBlKNuBYLQlgJqKbw= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/GqL5yAVM4OVxwEbeN9dbPx7wODQ= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/GsBQd2spo1t3ArkO61lKLvzci5Y= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/GvNFrrq7GkD+CHHb28JXxf3NVvI= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/H5uMABcRXBHycZ2CFB+_GRiHZj4= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/HmZ5zoJmPD6p0hc8pxWheNkq3E0= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/HuFLtiTdcxsXi2DUgyDNDzkGhvg= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/J4YGylmPn8d0OiQ9ATH6jdmakh0= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/JBwbroegnYBeMCjUZppzcL3qtm4= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/JPtmR42CkiduBdFI0s+z8L4e+q8= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/JRmdL+dbDCfBFBmAD+O+WftWFnc= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/KstdXx2uo9CSdNMGOpLBInkVHYA= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/LDkOtbrpbuY219UAOwoeyn8GSEg= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/LGOfTfFmrcGn3ZvI37UP0C+HuSs= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/LMhbnzwZQyHaz3AtvcSqQXgNvV0= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/LNUceJwMxxJ8+BGxagg_auS6s0Q= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/LYHe6wrCvgnH6blVYx0bOY1K0Ew= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/LeoO_G0ua8x+tzYlE8kuETUZmfE= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/M3aM2raASatsk1LHYsQgGL8x3ps= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/M9E8Bm_00AIbm5AcjmzXncULI6Q= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Mx0ZGgH5q52RfAGBY_91581R7gg= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/NDaMLkHXp1Kz_hGTojqZRNVg7XI= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/NIKHF7R2_1OejbfWES7mlAOER9U= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/NK6SQ56QpEbjkZxmrFLt+hXOXJQ= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/NPY2bu0lOF1UT+WhNFmrw3ORohQ= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/NQs+IfJF2wroSh2lDW5SfwLIq6I= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/OcKHAjJdhnDq804tFUzyUN7cfWo= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/OeVzYljIJzhZ6GLBv_15fA8VLUM= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/OoHESz8RzXeCmPZ9y6i6TKZ+mbc= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/P0XjpqfdatKlyR4JsJZbksB+34k= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/P1ByKX4rgMh4esAg_cS2bTpWWUI= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Pr+4yvYbCR3XGy_2SGGU_io+gUw= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/PuOCX6ZbHYUvaicX2KoCgIPsEs8= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/QPwpjqwsZr_ptUn_N1Cs8tT9H8g= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/T3XPHmhFTRLwZlTRxhTvB0+v4og= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/UZQ_Hk_vWG81pgerj02xQ7dF280= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Vjm6H341BMMYKox9flj6e3lmjdk= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/VvMEPXKdrfSux_CZQKLCNCKTf6U= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/WQ+RuDTxD4+qvWxEConxfUeKG9Q= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/WhW1_qhaloYgEjMesOcvylD+Pnk= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/XWj0zw6O4uMrnXWA5FQouOc53Tg= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/XZ__1HG13AED28evKIshcw5hySE= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/XqybuSfxeZf8eboIDA1D7pUBC5I= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Y7EJrKNmndQf6UZmyRChMuJgBYQ= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/YdDokDo9j2SqEkh9ZYRNIFp7s5g= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Z22aHROCi3zDhuf2RQgK6_2ROQw= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/aF9LVa+V+RgBb8Ss1Np_N6wk7qw= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/aVVJFwKwmc3c_BGEy59_bQOYHZQ= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/abK+KD5HXcVm2vV+Q2Iak1+JtOM= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/bcRiiUu_4My+JIrLHfJDEkmvJbU= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/c_BIsgxO8Ee7cXZd17gMzjbAdVo= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/d_0Md1Xw6rMCOPw4j0VxAq_dOSM= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/dcwU8JU0Q4ya1Y5x25D18X2HTOA= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/dxV0GCEgBirKUHvL40NzRaREEsQ= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/eamoKrKeZgzGXrTKAynh4hsuNU0= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/f6FS26b9zRzkjg_TV4HFzAJ8RD4= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/jObIG307MewNNZ8V3zd3hDp9WRU= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/km8GC1YPsBzVnHwsL5nvT1_HAmM= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/kygbhMAu37jwUfpbvoKnVwx4O0w= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/lNasvhcwZGLsD2F_9EMszAuN8q4= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ljJROCyxUBZpLSTZUNYaQ_Qvros= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/m5Ol+llndZYety0HpzJSK+bHGqc= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/m8b5BVaM7aWgfo4F723vRY3Caps= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/mPpL+lcuD1pdSRw4wrtu3bnOC6w= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/nP7qz8_B_+He8PnpAtfAsSfECSM= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/qmDyKmC4HWA3eaQS+c+4muipUvo= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/rouVv7vLizwLOYA4anlrEh74NW0= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/smFzrU3EBWvX6s8cDmJx9ekugXY= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/tR3e20qJIu19iYcTHmOJ0cfaDkA= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/u9Tm40LzRSMnpvjselniGXqUqgU= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/v3dce0HdkfOVmryjQ6DKOySEF14= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/vUjpF_rf8PvBkQxqNV2qip06jmY= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/x+ZOnXPwlirJ5AEzllKvRsAB41Q= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/x2LA3UOCBM0CMekJ+KFR1ZMVZQ0= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/yS4JoeULxMI6jRb8RRJubDeVzOg= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/zFdBb5besctw8LaXVFVdvqvR_0Q= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ze2va5ofiKbAs5nshrq1Bnj2wxI= +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/mergeDebugAssets/merger.xml +0 -2
- package/dist/native/androidProject/app/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +0 -2
- package/dist/native/androidProject/app/build/intermediates/incremental/mergeDebugShaders/merger.xml +0 -2
- package/dist/native/androidProject/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt +0 -4
- package/dist/native/androidProject/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/androidResources +0 -0
- package/dist/native/androidProject/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/javaResources0 +0 -0
- package/dist/native/androidProject/app/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/app_debug.kotlin_module +0 -0
- package/dist/native/androidProject/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/androidProject/BuildConfig.class +0 -0
- package/dist/native/androidProject/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/androidProject/databinding/ActivityMainBinding.class +0 -0
- package/dist/native/androidProject/app/build/intermediates/linked_resources_binary_format/debug/processDebugResources/linked-resources-binary-format-debug.ap_ +0 -0
- package/dist/native/androidProject/app/build/intermediates/linked_resources_binary_format/debug/processDebugResources/output-metadata.json +0 -20
- package/dist/native/androidProject/app/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt +0 -20
- package/dist/native/androidProject/app/build/intermediates/manifest_merge_blame_file/debug/processDebugMainManifest/manifest-merger-blame-debug-report.txt +0 -143
- package/dist/native/androidProject/app/build/intermediates/merged_art_profile/debug/mergeDebugArtProfile/baseline-prof.txt +0 -1342
- package/dist/native/androidProject/app/build/intermediates/merged_java_res/debug/mergeDebugJavaResource/base.jar +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_manifest/debug/processDebugMainManifest/AndroidManifest.xml +0 -84
- package/dist/native/androidProject/app/build/intermediates/merged_manifests/debug/processDebugManifest/AndroidManifest.xml +0 -84
- package/dist/native/androidProject/app/build/intermediates/merged_manifests/debug/processDebugManifest/output-metadata.json +0 -20
- package/dist/native/androidProject/app/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/libnative-lib.so +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/armeabi-v7a/libnative-lib.so +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86/libnative-lib.so +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86_64/libnative-lib.so +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable_ic_launcher_background.xml.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable_ic_launcher_foreground.xml.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/layout_activity_main.xml.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-anydpi-v26_ic_launcher.xml.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-anydpi-v26_ic_launcher_round.xml.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-hdpi_ic_launcher.webp.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-hdpi_ic_launcher_round.webp.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-mdpi_ic_launcher.webp.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-mdpi_ic_launcher_round.webp.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xhdpi_ic_launcher.webp.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xhdpi_ic_launcher_round.webp.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xxhdpi_ic_launcher.webp.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xxhdpi_ic_launcher_round.webp.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xxxhdpi_ic_launcher.webp.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xxxhdpi_ic_launcher_round.webp.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-af_values-af.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-am_values-am.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ar_values-ar.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-as_values-as.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-az_values-az.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-b+es+419_values-b+es+419.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-b+sr+Latn_values-b+sr+Latn.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-be_values-be.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-bg_values-bg.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-bn_values-bn.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-bs_values-bs.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ca_values-ca.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-cs_values-cs.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-da_values-da.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-de_values-de.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-el_values-el.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-en-rAU_values-en-rAU.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-en-rCA_values-en-rCA.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-en-rGB_values-en-rGB.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-en-rIN_values-en-rIN.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-en-rXC_values-en-rXC.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-es-rUS_values-es-rUS.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-es_values-es.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-et_values-et.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-eu_values-eu.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-fa_values-fa.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-fi_values-fi.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-fr-rCA_values-fr-rCA.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-fr_values-fr.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-gl_values-gl.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-gu_values-gu.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-h320dp-port-v13_values-h320dp-port-v13.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-h360dp-land-v13_values-h360dp-land-v13.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-h480dp-land-v13_values-h480dp-land-v13.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-h550dp-port-v13_values-h550dp-port-v13.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-h720dp-v13_values-h720dp-v13.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-hdpi-v4_values-hdpi-v4.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-hi_values-hi.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-hr_values-hr.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-hu_values-hu.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-hy_values-hy.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-in_values-in.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-is_values-is.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-it_values-it.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-iw_values-iw.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ja_values-ja.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ka_values-ka.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-kk_values-kk.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-km_values-km.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-kn_values-kn.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ko_values-ko.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ky_values-ky.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-land_values-land.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-large-v4_values-large-v4.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ldltr-v21_values-ldltr-v21.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ldrtl-v17_values-ldrtl-v17.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-lo_values-lo.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-lt_values-lt.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-lv_values-lv.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-mk_values-mk.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ml_values-ml.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-mn_values-mn.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-mr_values-mr.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ms_values-ms.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-my_values-my.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-nb_values-nb.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ne_values-ne.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-night-v8_values-night-v8.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-nl_values-nl.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-or_values-or.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-pa_values-pa.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-pl_values-pl.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-port_values-port.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-pt-rBR_values-pt-rBR.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-pt-rPT_values-pt-rPT.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-pt_values-pt.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ro_values-ro.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ru_values-ru.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-si_values-si.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-sk_values-sk.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-sl_values-sl.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-small-v4_values-small-v4.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-sq_values-sq.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-sr_values-sr.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-sv_values-sv.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-sw600dp-v13_values-sw600dp-v13.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-sw_values-sw.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ta_values-ta.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-te_values-te.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-th_values-th.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-tl_values-tl.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-tr_values-tr.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-uk_values-uk.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ur_values-ur.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-uz_values-uz.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-v16_values-v16.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-v17_values-v17.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-v18_values-v18.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-v21_values-v21.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-v22_values-v22.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-v23_values-v23.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-v24_values-v24.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-v25_values-v25.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-v26_values-v26.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-v28_values-v28.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-v31_values-v31.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-v34_values-v34.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-vi_values-vi.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-w320dp-land-v13_values-w320dp-land-v13.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-w360dp-port-v13_values-w360dp-port-v13.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-w400dp-port-v13_values-w400dp-port-v13.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-w600dp-land-v13_values-w600dp-land-v13.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-watch-v20_values-watch-v20.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-watch-v21_values-watch-v21.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-xlarge-v4_values-xlarge-v4.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-zh-rCN_values-zh-rCN.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-zh-rHK_values-zh-rHK.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-zh-rTW_values-zh-rTW.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-zu_values-zu.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values_values.arsc.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/xml_backup_rules.xml.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/xml_data_extraction_rules.xml.flat +0 -0
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/mergeDebugResources.json +0 -5959
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-af.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-am.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ar.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-as.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-az.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-b+es+419.json +0 -20
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-b+sr+Latn.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-be.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-bg.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-bn.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-bs.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ca.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-cs.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-da.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-de.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-el.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-en-rAU.json +0 -43
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-en-rCA.json +0 -43
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-en-rGB.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-en-rIN.json +0 -43
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-en-rXC.json +0 -43
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-es-rUS.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-es.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-et.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-eu.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-fa.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-fi.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-fr-rCA.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-fr.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-gl.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-gu.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-h320dp-port-v13.json +0 -19
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-h360dp-land-v13.json +0 -19
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-h480dp-land-v13.json +0 -19
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-h550dp-port-v13.json +0 -19
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-h720dp-v13.json +0 -19
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-hdpi-v4.json +0 -20
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-hi.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-hr.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-hu.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-hy.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-in.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-is.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-it.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-iw.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ja.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ka.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-kk.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-km.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-kn.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ko.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ky.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-land.json +0 -38
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-large-v4.json +0 -36
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ldltr-v21.json +0 -19
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ldrtl-v17.json +0 -19
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-lo.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-lt.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-lv.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-mk.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ml.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-mn.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-mr.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ms.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-my.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-nb.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ne.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-night-v8.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-nl.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-or.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-pa.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-pl.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-port.json +0 -19
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-pt-rBR.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-pt-rPT.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-pt.json +0 -43
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ro.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ru.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-si.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-sk.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-sl.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-small-v4.json +0 -19
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-sq.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-sr.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-sv.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-sw.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-sw600dp-v13.json +0 -38
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ta.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-te.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-th.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-tl.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-tr.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-uk.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ur.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-uz.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-v16.json +0 -20
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-v17.json +0 -20
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-v18.json +0 -19
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-v21.json +0 -66
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-v22.json +0 -20
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-v23.json +0 -58
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-v24.json +0 -38
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-v25.json +0 -20
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-v26.json +0 -20
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-v28.json +0 -47
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-v31.json +0 -20
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-v34.json +0 -19
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-vi.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-w320dp-land-v13.json +0 -19
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-w360dp-port-v13.json +0 -19
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-w400dp-port-v13.json +0 -19
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-w600dp-land-v13.json +0 -19
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-watch-v20.json +0 -20
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-watch-v21.json +0 -20
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-xlarge-v4.json +0 -19
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-zh-rCN.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-zh-rHK.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-zh-rTW.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-zu.json +0 -62
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values.json +0 -373
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/single/layout.json +0 -6
- package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/single/mergeDebugResources.json +0 -70
- package/dist/native/androidProject/app/build/intermediates/metadata_library_dependencies_report/debug/collectDebugDependencies/dependencies.pb +0 -0
- package/dist/native/androidProject/app/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json +0 -1
- package/dist/native/androidProject/app/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt +0 -1
- package/dist/native/androidProject/app/build/intermediates/optimized_processed_res/debug/optimizeDebugResources/output-metadata.json +0 -20
- package/dist/native/androidProject/app/build/intermediates/optimized_processed_res/debug/optimizeDebugResources/resources-debug-optimize.ap_ +0 -0
- package/dist/native/androidProject/app/build/intermediates/packaged_manifests/debug/processDebugManifestForPackage/AndroidManifest.xml +0 -84
- package/dist/native/androidProject/app/build/intermediates/packaged_manifests/debug/processDebugManifestForPackage/output-metadata.json +0 -20
- package/dist/native/androidProject/app/build/intermediates/packaged_res/debug/packageDebugResources/drawable/ic_launcher_background.xml +0 -170
- package/dist/native/androidProject/app/build/intermediates/packaged_res/debug/packageDebugResources/drawable/ic_launcher_foreground.xml +0 -30
- package/dist/native/androidProject/app/build/intermediates/packaged_res/debug/packageDebugResources/layout/activity_main.xml +0 -22
- package/dist/native/androidProject/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-anydpi-v26/ic_launcher.xml +0 -6
- package/dist/native/androidProject/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-anydpi-v26/ic_launcher_round.xml +0 -6
- package/dist/native/androidProject/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-hdpi-v4/ic_launcher.webp +0 -0
- package/dist/native/androidProject/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-hdpi-v4/ic_launcher_round.webp +0 -0
- package/dist/native/androidProject/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-mdpi-v4/ic_launcher.webp +0 -0
- package/dist/native/androidProject/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-mdpi-v4/ic_launcher_round.webp +0 -0
- package/dist/native/androidProject/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-xhdpi-v4/ic_launcher.webp +0 -0
- package/dist/native/androidProject/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-xhdpi-v4/ic_launcher_round.webp +0 -0
- package/dist/native/androidProject/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-xxhdpi-v4/ic_launcher.webp +0 -0
- package/dist/native/androidProject/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-xxhdpi-v4/ic_launcher_round.webp +0 -0
- package/dist/native/androidProject/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-xxxhdpi-v4/ic_launcher.webp +0 -0
- package/dist/native/androidProject/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-xxxhdpi-v4/ic_launcher_round.webp +0 -0
- package/dist/native/androidProject/app/build/intermediates/packaged_res/debug/packageDebugResources/values/values.xml +0 -23
- package/dist/native/androidProject/app/build/intermediates/packaged_res/debug/packageDebugResources/values-night-v8/values-night-v8.xml +0 -15
- package/dist/native/androidProject/app/build/intermediates/packaged_res/debug/packageDebugResources/xml/backup_rules.xml +0 -13
- package/dist/native/androidProject/app/build/intermediates/packaged_res/debug/packageDebugResources/xml/data_extraction_rules.xml +0 -19
- package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/bdb298b9df351e4ff2e214ec7e399c1c1170e7b31e799763dc6ad8e5b79a36d3_0.jar +0 -0
- package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/bdb298b9df351e4ff2e214ec7e399c1c1170e7b31e799763dc6ad8e5b79a36d3_1.jar +0 -0
- package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/bdb298b9df351e4ff2e214ec7e399c1c1170e7b31e799763dc6ad8e5b79a36d3_2.jar +0 -0
- package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/bdb298b9df351e4ff2e214ec7e399c1c1170e7b31e799763dc6ad8e5b79a36d3_3.jar +0 -0
- package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/bdb298b9df351e4ff2e214ec7e399c1c1170e7b31e799763dc6ad8e5b79a36d3_4.jar +0 -0
- package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/androidProject/BuildConfig.dex +0 -0
- package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/androidProject/MainActivity$AndroidConfig.dex +0 -0
- package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/androidProject/MainActivity$onCreate$2.dex +0 -0
- package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/androidProject/MainActivity$onCreate$4.dex +0 -0
- package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/androidProject/MainActivity$setupWebView$2$shouldInterceptRequest$1.dex +0 -0
- package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/androidProject/MainActivity$setupWebView$2.dex +0 -0
- package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/androidProject/MainActivity$setupWebView$3.dex +0 -0
- package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/androidProject/MainActivity.dex +0 -0
- package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/androidProject/databinding/ActivityMainBinding.dex +0 -0
- package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/myapplication/WebCacheManager$CacheEntry.dex +0 -0
- package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/myapplication/WebCacheManager$CacheMetadata.dex +0 -0
- package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/myapplication/WebCacheManager$cleanup$1.dex +0 -0
- package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/myapplication/WebCacheManager$cleanup$2$invokeSuspend$$inlined$sortedBy$1.dex +0 -0
- package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/myapplication/WebCacheManager$cleanup$2$invokeSuspend$$inlined$sortedBy$2.dex +0 -0
- package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/myapplication/WebCacheManager$cleanup$2.dex +0 -0
- package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/myapplication/WebCacheManager$fetchAndCacheResource$2$2.dex +0 -0
- package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/myapplication/WebCacheManager$fetchAndCacheResource$2.dex +0 -0
- package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/myapplication/WebCacheManager$generateCacheKey$1.dex +0 -0
- package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/myapplication/WebCacheManager$getCachedResponse$2.dex +0 -0
- package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/myapplication/WebCacheManager$revalidateInBackground$1.dex +0 -0
- package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/myapplication/WebCacheManager.dex +0 -0
- package/dist/native/androidProject/app/build/intermediates/runtime_symbol_list/debug/processDebugResources/R.txt +0 -7181
- package/dist/native/androidProject/app/build/intermediates/sdk_dependency_data/debug/sdkDebugDependencyData/sdkDependencyData.pb +0 -0
- package/dist/native/androidProject/app/build/intermediates/signing_config_versions/debug/writeDebugSigningConfigVersions/signing-config-versions.json +0 -1
- package/dist/native/androidProject/app/build/intermediates/source_set_path_map/debug/mapDebugSourceSetPaths/file-map.txt +0 -35
- package/dist/native/androidProject/app/build/intermediates/stable_resource_ids_file/debug/processDebugResources/stableIds.txt +0 -5666
- package/dist/native/androidProject/app/build/intermediates/stripped_native_libs/debug/stripDebugDebugSymbols/out/lib/arm64-v8a/libnative-lib.so +0 -0
- package/dist/native/androidProject/app/build/intermediates/stripped_native_libs/debug/stripDebugDebugSymbols/out/lib/armeabi-v7a/libnative-lib.so +0 -0
- package/dist/native/androidProject/app/build/intermediates/stripped_native_libs/debug/stripDebugDebugSymbols/out/lib/x86/libnative-lib.so +0 -0
- package/dist/native/androidProject/app/build/intermediates/stripped_native_libs/debug/stripDebugDebugSymbols/out/lib/x86_64/libnative-lib.so +0 -0
- package/dist/native/androidProject/app/build/intermediates/symbol_list_with_package_name/debug/processDebugResources/package-aware-r.txt +0 -5251
- package/dist/native/androidProject/app/build/intermediates/version_control_info_file/debug/extractDebugVersionControlInfo/version-control-info.textproto +0 -1
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.keystream +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.keystream.len +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.len +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.values.at +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab_i +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab_i.len +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab +0 -2
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.s +0 -1
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/last-build.bin +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin +0 -0
- package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/local-state/build-history.bin +0 -0
- package/dist/native/androidProject/app/build/outputs/apk/debug/app-debug.apk +0 -0
- package/dist/native/androidProject/app/build/outputs/apk/debug/output-metadata.json +0 -21
- package/dist/native/androidProject/app/build/outputs/logs/manifest-merger-debug-report.txt +0 -324
- package/dist/native/androidProject/app/build/outputs/sdk-dependencies/debug/sdkDependencies.txt +0 -1226
- package/dist/native/androidProject/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/BuildConfig.class.uniqueId0 +0 -0
- package/dist/native/androidProject/app/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin +0 -0
- package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/META-INF/app_debug.kotlin_module +0 -0
- package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/com/example/androidProject/MainActivity$AndroidConfig.class +0 -0
- package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/com/example/androidProject/MainActivity$onCreate$2.class +0 -0
- package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/com/example/androidProject/MainActivity$onCreate$4.class +0 -0
- package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/com/example/androidProject/MainActivity$setupWebView$2$shouldInterceptRequest$1.class +0 -0
- package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/com/example/androidProject/MainActivity$setupWebView$2.class +0 -0
- package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/com/example/androidProject/MainActivity$setupWebView$3.class +0 -0
- package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/com/example/androidProject/MainActivity.class +0 -0
- package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/com/example/myapplication/WebCacheManager$CacheEntry.class +0 -0
- package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/com/example/myapplication/WebCacheManager$CacheMetadata.class +0 -0
- package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/com/example/myapplication/WebCacheManager$cleanup$1.class +0 -0
- package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/com/example/myapplication/WebCacheManager$cleanup$2$invokeSuspend$$inlined$sortedBy$1.class +0 -0
- package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/com/example/myapplication/WebCacheManager$cleanup$2$invokeSuspend$$inlined$sortedBy$2.class +0 -0
- package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/com/example/myapplication/WebCacheManager$cleanup$2.class +0 -0
- package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/com/example/myapplication/WebCacheManager$fetchAndCacheResource$2$2.class +0 -0
- package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/com/example/myapplication/WebCacheManager$fetchAndCacheResource$2.class +0 -0
- package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/com/example/myapplication/WebCacheManager$generateCacheKey$1.class +0 -0
- package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/com/example/myapplication/WebCacheManager$getCachedResponse$2.class +0 -0
- package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/com/example/myapplication/WebCacheManager$revalidateInBackground$1.class +0 -0
- package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/com/example/myapplication/WebCacheManager.class +0 -0
- package/dist/native/androidProject/app/src/androidTest/java/com/example/myapplication/ExampleInstrumentedTest.kt +0 -24
- package/dist/native/androidProject/app/src/main/assets/webview_config.properties +0 -4
- package/dist/native/androidProject/app/src/main/cpp/CMakeLists.txt +0 -41
- package/dist/native/androidProject/app/src/main/cpp/native-lib.cpp +0 -22
- package/dist/native/androidProject/app/src/main/java/com/example/myapplication/MainActivity.kt +0 -306
- package/dist/native/androidProject/app/src/test/java/com/example/myapplication/ExampleUnitTest.kt +0 -17
- package/dist/native/iosnativeWebView/iosnativeWebView/ConfigConstants.swift +0 -7
- package/dist/native/iosnativeWebView/iosnativeWebView/WebView.swift +0 -79
- package/dist/native/iosnativeWebView/iosnativeWebView/WebViewModel.swift +0 -47
- package/dist/native/iosnativeWebView/iosnativeWebView/WebViewNavigationDelegate.swift +0 -140
- package/dist/native/iosnativeWebView/iosnativeWebView.xcodeproj/project.xcworkspace/xcuserdata/mayankmahavar.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/dist/native/iosnativeWebView/iosnativeWebView.xcodeproj/xcuserdata/mayankmahavar.xcuserdatad/xcschemes/xcschememanagement.plist +0 -32
package/README.md
CHANGED
|
@@ -9,14 +9,13 @@
|
|
|
9
9
|
|
|
10
10
|
- Overview
|
|
11
11
|
- Installation
|
|
12
|
-
|
|
12
|
+
|
|
13
13
|
## Overview
|
|
14
14
|
|
|
15
15
|
Catalyst offers a comprehensive suite of features designed for modern web development. It includes isomorphic rendering for optimal performance, an extendable server with full-stack capabilities, and configurable state management. The framework employs smart prefetching of data and chunks, allows easy configuration of global styles and layouts, and provides SEO optimization at both global and page levels.
|
|
16
16
|
|
|
17
17
|
This version adds support for Universal app for both Android and iOS. Please checkout [Universal App Documentaion](https://catalyst.1mg.com/public_docs/content/Universal%20App/RunUniversalApp)
|
|
18
18
|
|
|
19
|
-
|
|
20
19
|
## Installation
|
|
21
20
|
|
|
22
21
|
**System Requirements**
|
|
@@ -38,7 +37,7 @@ You will see some prompts to configure your application.
|
|
|
38
37
|
cd <name-of-your-project> && npm run start
|
|
39
38
|
```
|
|
40
39
|
|
|
41
|
-
The development server will start at
|
|
40
|
+
The development server will start at `http://localhost:3005`
|
|
42
41
|
|
|
43
42
|
## Documentation
|
|
44
43
|
|
package/bin/catalyst.js
CHANGED
|
@@ -8,9 +8,17 @@ const args = process.argv.slice(2)
|
|
|
8
8
|
|
|
9
9
|
// Array of valid commands
|
|
10
10
|
const validCommands = [
|
|
11
|
-
"build",
|
|
12
|
-
"
|
|
13
|
-
"
|
|
11
|
+
"build",
|
|
12
|
+
"start",
|
|
13
|
+
"serve",
|
|
14
|
+
"devBuild",
|
|
15
|
+
"devServe",
|
|
16
|
+
"buildApp",
|
|
17
|
+
"buildApp:ios",
|
|
18
|
+
"buildApp:android",
|
|
19
|
+
"setupEmulator",
|
|
20
|
+
"setupEmulator:ios",
|
|
21
|
+
"setupEmulator:android",
|
|
14
22
|
]
|
|
15
23
|
|
|
16
24
|
// Map of platform-specific commands to their script paths
|
|
@@ -18,17 +26,16 @@ const platformScripts = {
|
|
|
18
26
|
"setupEmulator:ios": "../dist/native/setupEmulatorIos.js",
|
|
19
27
|
"setupEmulator:android": "../dist/native/androidSetup.js",
|
|
20
28
|
"buildApp:ios": "../dist/native/buildAppIos.js",
|
|
21
|
-
"buildApp:android": "../dist/native/buildAppAndroid.js"
|
|
29
|
+
"buildApp:android": "../dist/native/buildAppAndroid.js",
|
|
22
30
|
}
|
|
23
31
|
|
|
24
32
|
// Helper to check if arg is a platform command
|
|
25
33
|
const isPlatformCommand = (arg, prefix) => {
|
|
26
34
|
if (!arg.startsWith(`${prefix}:`)) return false
|
|
27
|
-
const platform = arg.split(
|
|
28
|
-
return [
|
|
35
|
+
const platform = arg.split(":")[1]
|
|
36
|
+
return ["ios", "android"].includes(platform) || platform === undefined
|
|
29
37
|
}
|
|
30
38
|
|
|
31
|
-
|
|
32
39
|
// Helper function to run a platform command
|
|
33
40
|
const runPlatformCommand = (baseCommand, platform) => {
|
|
34
41
|
const command = `${baseCommand}:${platform}`
|
|
@@ -42,7 +49,7 @@ const runPlatformCommand = (baseCommand, platform) => {
|
|
|
42
49
|
|
|
43
50
|
// Helper function to run commands for all platforms
|
|
44
51
|
const runAllPlatforms = (baseCommand) => {
|
|
45
|
-
const platforms = [
|
|
52
|
+
const platforms = ["ios", "android"]
|
|
46
53
|
for (const platform of platforms) {
|
|
47
54
|
const result = runPlatformCommand(baseCommand, platform)
|
|
48
55
|
if (result.status !== 0) {
|
|
@@ -54,8 +61,14 @@ const runAllPlatforms = (baseCommand) => {
|
|
|
54
61
|
}
|
|
55
62
|
|
|
56
63
|
const scriptIndex = args.findIndex(
|
|
57
|
-
(x) =>
|
|
58
|
-
|
|
64
|
+
(x) =>
|
|
65
|
+
x === "build" ||
|
|
66
|
+
x === "start" ||
|
|
67
|
+
x === "serve" ||
|
|
68
|
+
x === "devBuild" ||
|
|
69
|
+
x === "devServe" ||
|
|
70
|
+
isPlatformCommand(x, "buildApp") ||
|
|
71
|
+
isPlatformCommand(x, "setupEmulator")
|
|
59
72
|
)
|
|
60
73
|
const script = scriptIndex === -1 ? args[0] : args[scriptIndex]
|
|
61
74
|
const nodeArgs = scriptIndex > 0 ? args.slice(0, scriptIndex) : []
|
|
@@ -92,17 +105,17 @@ function handleProcessResult(result) {
|
|
|
92
105
|
if (result.signal === "SIGKILL") {
|
|
93
106
|
console.log(
|
|
94
107
|
"The build failed because the process exited too early. " +
|
|
95
|
-
|
|
96
|
-
|
|
108
|
+
"This probably means the system ran out of memory or someone called " +
|
|
109
|
+
"`kill -9` on the process."
|
|
97
110
|
)
|
|
98
111
|
} else if (result.signal === "SIGTERM") {
|
|
99
112
|
console.log(
|
|
100
113
|
"The build failed because the process exited too early. " +
|
|
101
|
-
|
|
102
|
-
|
|
114
|
+
"Someone might have called `kill` or `killall`, or the system could " +
|
|
115
|
+
"be shutting down."
|
|
103
116
|
)
|
|
104
117
|
}
|
|
105
118
|
process.exit(1)
|
|
106
119
|
}
|
|
107
120
|
process.exit(result.status)
|
|
108
|
-
}
|
|
121
|
+
}
|
package/changelog.md
CHANGED
|
@@ -1,36 +1,147 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [0.0
|
|
3
|
+
## [0.1.0-canary.4] - 2026-02-12
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
- Added Google Sign-In support for both Android and iOS in Catalyst, enabling a unified native authentication experience for apps built on the framework.
|
|
6
|
+
- Improved release/build reliability with related bridge and CI updates, making integration smoother and more consistent across platforms.
|
|
6
7
|
|
|
7
|
-
|
|
8
|
+
## [0.1.0-canary.3] - 2026-02-04
|
|
8
9
|
|
|
9
|
-
|
|
10
|
-
This PR introduces native WebView implementations for both Android and iOS platforms, along with significant cache management improvements and bug fixes.
|
|
10
|
+
- Android device security: added root, emulator, and Frida detection with launch-time checks and a Material Design 3 bottom sheet threat alert UI
|
|
11
11
|
|
|
12
|
-
##
|
|
12
|
+
## [0.1.0-canary.2] - 2026-01-28
|
|
13
13
|
|
|
14
|
-
|
|
15
|
-
-
|
|
16
|
-
- Added iOS native WebView implementation with custom cache handling
|
|
17
|
-
- Introduced new cache pattern management system
|
|
14
|
+
- Adds mono-repository support for catalyst
|
|
15
|
+
- Notifications sound channel bug fix
|
|
18
16
|
|
|
19
|
-
|
|
20
|
-
- Android:
|
|
21
|
-
- Added complete Android project structure with WebView implementation
|
|
22
|
-
- Implemented `WebCacheManager.kt` for handling cache operations
|
|
23
|
-
- Set up Gradle configuration and project dependencies
|
|
17
|
+
## [0.1.0-canary.1] - 2026-01-12
|
|
24
18
|
|
|
25
|
-
-
|
|
26
|
-
- Created iOS native WebView project with Swift
|
|
27
|
-
- Implemented `CacheManager.swift` and `ResourceURLProtocol.swift` for cache handling
|
|
28
|
-
- Added WebView navigation and view model components
|
|
19
|
+
- Universal Merge
|
|
29
20
|
|
|
21
|
+
## [0.0.3-canary.20] - 2025-12-12
|
|
30
22
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
-
|
|
23
|
+
- Patch: Allow localhost traffic to be served from http
|
|
24
|
+
|
|
25
|
+
## [0.0.3-canary.19] - 2025-12-09
|
|
26
|
+
|
|
27
|
+
- Offline fallback support: packages `public/offline.html` into Android/iOS bundles and shows it automatically when connectivity drops (with retry handling)
|
|
28
|
+
- Notification refactor: streamlined config toggle for local vs push, centralized permission/asset handling, and simpler routing into the web app
|
|
29
|
+
- Access control: combined access control config for ios
|
|
30
|
+
|
|
31
|
+
## [0.0.3-canary.18] - 2025-11-19
|
|
32
|
+
|
|
33
|
+
- Configuration Files
|
|
34
|
+
- Android Native WebView - MainActivity.kt
|
|
35
|
+
- Android Native WebView - CustomWebview.kt
|
|
36
|
+
|
|
37
|
+
## [0.0.3-canary.17] - 2025-11-19
|
|
38
|
+
|
|
39
|
+
- ✨ Added complete notification system (local & push)
|
|
40
|
+
- 🔔 New useNotification() React hook
|
|
41
|
+
- 📱 Firebase Cloud Messaging conditional build support
|
|
42
|
+
- 🤖 Android notification handling in MainActivity
|
|
43
|
+
- 🔧 5 new notification commands + 5 callbacks in NativeBridge
|
|
44
|
+
- 📦 Auto-processing of notification icons & sounds
|
|
45
|
+
- ⚙️ Conditional dependencies based on notification config
|
|
46
|
+
- 🧹 Updated .gitignore & .npmignore
|
|
47
|
+
- 📋 Enhanced build process with automatic permission injection
|
|
48
|
+
- 🔗 Deep link integration with notifications
|
|
49
|
+
|
|
50
|
+
## [0.0.3-canary.16] - 2025-11-19
|
|
51
|
+
|
|
52
|
+
- FeaturesGallery Support for File Picker: Enhanced file picker to open native gallery for selecting images and videos
|
|
53
|
+
- HTTPS Framework Server: Enabled HTTPS support for the framework server with self-signed SSL certificate
|
|
54
|
+
- MIME Type Handling: Fixed and improved MIME type detection and handling in the file picker
|
|
55
|
+
|
|
56
|
+
## [0.0.3-canary.15] - 2025-11-19
|
|
57
|
+
|
|
58
|
+
- Adding Android release support and appInfo key
|
|
59
|
+
|
|
60
|
+
## [0.0.3-canary.14] - 2025-09-29
|
|
61
|
+
|
|
62
|
+
- Android custom splashscreen
|
|
63
|
+
|
|
64
|
+
## [0.0.3-canary.13] - 2025-09-28
|
|
65
|
+
|
|
66
|
+
- Multi file support in useFilePicker hook
|
|
67
|
+
- Android multiple app icon support
|
|
68
|
+
- Android whitelisting toggle support
|
|
69
|
+
|
|
70
|
+
## [0.0.3-canary.12] - 2025-09-26
|
|
71
|
+
|
|
72
|
+
- Universal App Context: Added comprehensive context support for building universal mobile applications
|
|
73
|
+
- OpenTelemetry SDK Integration: Built-in support for observability and performance monitoring with Otel SDK
|
|
74
|
+
|
|
75
|
+
## [0.0.3-canary.11] - 2025-09-26
|
|
76
|
+
|
|
77
|
+
- Build organization: Store APKs and iOS builds organized by generation date and time for better tracking and management
|
|
78
|
+
- Enhanced Android native support: Add support for native keyboard and webview resizing in Android
|
|
79
|
+
- Device info API web support: Web support in device info API
|
|
80
|
+
|
|
81
|
+
## [0.0.3-canary.10] - 2025-09-11
|
|
82
|
+
|
|
83
|
+
- **Sentry import bug fix**
|
|
84
|
+
- **Open telemetry SDK**
|
|
85
|
+
|
|
86
|
+
## [0.0.3-canary.9] - 2025-09-11
|
|
87
|
+
|
|
88
|
+
- **App name configuration**
|
|
89
|
+
- **Device Info API**
|
|
90
|
+
- **Access control configuration**
|
|
91
|
+
|
|
92
|
+
## [0.0.3-canary.8] - 2025-01-06
|
|
93
|
+
|
|
94
|
+
- **App icon configuration**
|
|
95
|
+
- **Splash screen integration**
|
|
96
|
+
- **Url Whitelisting**
|
|
97
|
+
|
|
98
|
+
## [0.0.3-canary.7] - 2025-01-06
|
|
99
|
+
|
|
100
|
+
### 🚀 Features
|
|
101
|
+
|
|
102
|
+
- **Native API Integration**: Enhanced native module integration for better performance
|
|
103
|
+
- **Automated IP Resolution**: Intelligent network detection eliminates manual IP configuration
|
|
104
|
+
- **Universal Build System**: Streamlined one-command builds for both Android and iOS platforms
|
|
105
|
+
- **Enhanced CLI Interface**: Improved command-line tools for better developer experience
|
|
106
|
+
|
|
107
|
+
### 🐛 Bug Fixes
|
|
108
|
+
|
|
109
|
+
- Fixed IP address detection issues on development environments
|
|
110
|
+
- Resolved build configuration conflicts between platforms
|
|
111
|
+
- Improved error handling and recovery mechanisms
|
|
112
|
+
|
|
113
|
+
### 🔧 Improvements
|
|
114
|
+
|
|
115
|
+
- **Performance**: Optimized native module loading and execution
|
|
116
|
+
- **Developer Experience**: Enhanced CLI with better error messages and debugging info
|
|
117
|
+
- **Configuration**: Dynamic config updates without requiring restarts
|
|
118
|
+
- **Build Process**: Faster and more reliable build pipeline
|
|
119
|
+
|
|
120
|
+
### 🧪 Testing & Validation
|
|
121
|
+
|
|
122
|
+
- ✅ **Android Build**: Verified APK generation, installation, and runtime behavior
|
|
123
|
+
- ✅ **iOS Build**: Tested build process and device compatibility
|
|
124
|
+
- ✅ **IP Detection**: Validated automatic network resolution across platforms
|
|
125
|
+
- ✅ **Native Modules**: Confirmed API integration and performance benchmarks
|
|
126
|
+
- ✅ **CLI Operations**: Tested enhanced command-line workflows and error handling
|
|
127
|
+
|
|
128
|
+
### 🔄 Breaking Changes
|
|
129
|
+
|
|
130
|
+
**None** - All changes maintain backward compatibility while enhancing existing functionality
|
|
131
|
+
|
|
132
|
+
### 📝 Technical Details
|
|
133
|
+
|
|
134
|
+
- Improved native API bridge for better cross-platform communication
|
|
135
|
+
- Enhanced error reporting with detailed stack traces and suggestions
|
|
136
|
+
- Optimized build configuration for faster development cycles
|
|
137
|
+
- Added comprehensive logging for debugging and monitoring
|
|
138
|
+
|
|
139
|
+
### 🔗 Migration Notes
|
|
140
|
+
|
|
141
|
+
- No migration steps required
|
|
142
|
+
- Existing projects will automatically benefit from improvements
|
|
143
|
+
- Optional: Update CLI usage to leverage new enhanced features
|
|
34
144
|
|
|
35
145
|
## Version
|
|
36
|
-
|
|
146
|
+
|
|
147
|
+
- Target version: 0.0.3-canary.7
|