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.
Files changed (961) hide show
  1. package/README.md +2 -3
  2. package/bin/catalyst.js +28 -15
  3. package/changelog.md +134 -23
  4. package/dist/native/androidProject/app/build.gradle.kts +301 -37
  5. package/dist/native/androidProject/app/proguard-rules.pro +85 -14
  6. package/dist/native/androidProject/app/src/debug/res/xml/network_security_config.xml +8 -0
  7. package/dist/native/androidProject/app/src/main/AndroidManifest.xml +29 -4
  8. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/BridgeMessageValidator.kt +552 -0
  9. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/CatalystConstants.kt +109 -0
  10. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/CustomWebview.kt +1016 -0
  11. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/MainActivity.kt +546 -0
  12. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/MetricsMonitor.kt +341 -0
  13. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/NativeBridge.kt +1239 -0
  14. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/SplashActivity.kt +111 -0
  15. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/URLWhitelistManager.kt +231 -0
  16. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/Utils.kt +58 -0
  17. package/dist/native/androidProject/app/src/main/java/{com/example/myapplication → io/yourname/androidproject}/WebCacheManager.kt +166 -36
  18. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/design/DesignTokens.kt +307 -0
  19. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/security/EmulatorDetector.kt +203 -0
  20. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/security/FridaDetector.kt +187 -0
  21. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/security/SecurityAlertHandler.kt +170 -0
  22. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/security/SecurityAlertUI.kt +366 -0
  23. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/security/SecurityBottomSheet.kt +138 -0
  24. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/security/SecurityCheckManager.kt +511 -0
  25. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/security/SecurityCheckScheduler.kt +68 -0
  26. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/utils/BridgeUtils.kt +257 -0
  27. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/utils/CameraUtils.kt +269 -0
  28. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/utils/DeviceInfoUtils.kt +85 -0
  29. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/utils/DownloadUtils.kt +273 -0
  30. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/utils/FileSizeRouterUtils.kt +347 -0
  31. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/utils/FileUtils.kt +335 -0
  32. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/utils/FrameworkServerUtils.kt +411 -0
  33. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/utils/IntentUtils.kt +299 -0
  34. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/utils/KeyboardUtil.kt +82 -0
  35. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/utils/NetworkUtils.kt +105 -0
  36. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/utils/NotificationConstants.kt +28 -0
  37. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/utils/NotificationUtils.kt +639 -0
  38. package/dist/native/androidProject/app/src/main/java/io/yourname/androidproject/utils/SafeAreaUtils.kt +62 -0
  39. package/dist/native/androidProject/app/src/main/res/drawable/splashscreen_fallback.png +0 -0
  40. package/dist/native/androidProject/app/src/main/res/layout/activity_main.xml +13 -6
  41. package/dist/native/androidProject/app/src/main/res/layout/activity_splash.xml +20 -0
  42. package/dist/native/androidProject/app/src/main/res/values/strings.xml +1 -1
  43. package/dist/native/androidProject/app/src/main/res/values/themes.xml +23 -0
  44. package/dist/native/androidProject/app/src/main/res/values-night/themes.xml +11 -0
  45. package/dist/native/androidProject/app/src/main/res/xml/file_paths.xml +18 -0
  46. package/dist/native/androidProject/app/src/main/res/xml/network_security_config.xml +12 -0
  47. package/dist/native/androidProject/app/src/noFcm/java/io/yourname/androidproject/utils/NotificationManager.kt +166 -0
  48. package/dist/native/androidProject/app/src/noFcm/java/io/yourname/androidproject/utils/PushNotificationUtils.kt +94 -0
  49. package/dist/native/androidProject/app/src/test/java/io/yourname/androidproject/BridgeMessageValidatorTest.kt +267 -0
  50. package/dist/native/androidProject/app/src/test/java/io/yourname/androidproject/BridgeUtilsTest.kt +286 -0
  51. package/dist/native/androidProject/app/src/test/java/io/yourname/androidproject/CameraUtilsTest.kt +296 -0
  52. package/dist/native/androidProject/app/src/test/java/io/yourname/androidproject/ConfigMappingTest.kt +594 -0
  53. package/dist/native/androidProject/app/src/test/java/io/yourname/androidproject/CustomWebviewTest.kt +466 -0
  54. package/dist/native/androidProject/app/src/test/java/io/yourname/androidproject/DeviceInfoUtilsTest.kt +187 -0
  55. package/dist/native/androidProject/app/src/test/java/io/yourname/androidproject/FileUtilsTest.kt +304 -0
  56. package/dist/native/androidProject/app/src/test/java/io/yourname/androidproject/NativeBridgeTest.kt +424 -0
  57. package/dist/native/androidProject/app/src/test/java/io/yourname/androidproject/NotificationUtilsTest.kt +469 -0
  58. package/dist/native/androidProject/app/src/test/java/io/yourname/androidproject/SecurityBridgeTest.kt +199 -0
  59. package/dist/native/androidProject/app/src/test/java/io/yourname/androidproject/URLWhitelistManagerTest.kt +462 -0
  60. package/dist/native/androidProject/app/src/test/java/io/yourname/androidproject/WebCacheManagerTest.kt +391 -0
  61. package/dist/native/androidProject/app/src/withFcm/java/io/yourname/androidproject/utils/NotificationManager.kt +224 -0
  62. package/dist/native/androidProject/app/src/withFcm/java/io/yourname/androidproject/utils/PushNotificationUtils.kt +399 -0
  63. package/dist/native/androidProject/build.gradle.kts +6 -0
  64. package/dist/native/androidProject/gradle/libs.versions.toml +9 -3
  65. package/dist/native/androidProject/gradle/wrapper/gradle-wrapper.properties +1 -1
  66. package/dist/native/androidProject/keystore/Untitled +0 -0
  67. package/dist/native/androidProject/keystore/release-key.jks +0 -0
  68. package/dist/native/androidProject/settings.gradle.kts +1 -1
  69. package/dist/native/androidSetup.js +4 -3
  70. package/dist/native/assets/catalyst.png +0 -0
  71. package/dist/native/bridge/WebBridge.js +59 -0
  72. package/dist/native/bridge/constants/NativeInterfaces.js +42 -0
  73. package/dist/native/bridge/errors.js +39 -0
  74. package/dist/native/bridge/hooks.js +137 -0
  75. package/dist/native/bridge/safeArea.js +5 -0
  76. package/dist/native/bridge/standardizedHooks.js +98 -0
  77. package/dist/native/bridge/useBaseHook.js +42 -0
  78. package/dist/native/bridge/utils/CameraUtils.js +58 -0
  79. package/dist/native/bridge/utils/FileObjectConverter.js +40 -0
  80. package/dist/native/bridge/utils/NativeBridge.js +109 -0
  81. package/dist/native/buildAppAndroid.js +149 -7
  82. package/dist/native/buildAppIos.js +293 -25
  83. package/dist/native/iosnativeWebView/Configurations/Debug.xcconfig +21 -0
  84. package/dist/native/iosnativeWebView/Configurations/Release.xcconfig +24 -0
  85. package/dist/native/iosnativeWebView/Configurations/Shared.xcconfig +50 -0
  86. package/dist/native/iosnativeWebView/Package.resolved +32 -0
  87. package/dist/native/iosnativeWebView/Package.swift +37 -0
  88. package/dist/native/iosnativeWebView/Sources/CatalystNotifications/LocalNotificationHandler.swift +293 -0
  89. package/dist/native/iosnativeWebView/Sources/CatalystNotifications/NotificationManager.swift +299 -0
  90. package/dist/native/iosnativeWebView/Sources/CatalystNotifications/PushNotificationHandler.swift +199 -0
  91. package/dist/native/iosnativeWebView/Sources/Core/Constants/CatalystConstants.swift +125 -0
  92. package/dist/native/iosnativeWebView/Sources/Core/Constants/ConfigConstants.swift +70 -0
  93. package/dist/native/iosnativeWebView/Sources/Core/Notifications/NotificationModels.swift +156 -0
  94. package/dist/native/iosnativeWebView/Sources/Core/Protocols/NotificationHandlerProtocol.swift +35 -0
  95. package/dist/native/iosnativeWebView/Sources/Core/Utils/BootTimingUtility.swift +26 -0
  96. package/dist/native/iosnativeWebView/{iosnativeWebView → Sources/Core/Utils}/CacheManager.swift +69 -36
  97. package/dist/native/iosnativeWebView/Sources/Core/Utils/CameraTransportUtils.swift +363 -0
  98. package/dist/native/iosnativeWebView/Sources/Core/Utils/DeviceInfoUtils.swift +67 -0
  99. package/dist/native/iosnativeWebView/Sources/Core/Utils/FilePickerHandler.swift +1053 -0
  100. package/dist/native/iosnativeWebView/Sources/Core/Utils/FrameworkServerUtils.swift +901 -0
  101. package/dist/native/iosnativeWebView/Sources/Core/Utils/ImageHandler.swift +474 -0
  102. package/dist/native/iosnativeWebView/Sources/Core/Utils/NetworkMonitor.swift +112 -0
  103. package/dist/native/iosnativeWebView/Sources/Core/Utils/NotificationHandlerProvider.swift +20 -0
  104. package/dist/native/iosnativeWebView/Sources/Core/Utils/NullNotificationHandler.swift +85 -0
  105. package/dist/native/iosnativeWebView/{iosnativeWebView → Sources/Core/Utils}/ResourceURLProtocol.swift +60 -25
  106. package/dist/native/iosnativeWebView/Sources/Core/Utils/SafeAreaUtils.swift +132 -0
  107. package/dist/native/iosnativeWebView/Sources/Core/Utils/ScreenSecureManager.swift +131 -0
  108. package/dist/native/iosnativeWebView/Sources/Core/Utils/URLWhitelistManager.swift +224 -0
  109. package/dist/native/iosnativeWebView/Sources/Core/Utils/WebKitConfig.swift +43 -0
  110. package/dist/native/iosnativeWebView/Sources/Core/WebView/BridgeCommandHandler.swift +991 -0
  111. package/dist/native/iosnativeWebView/Sources/Core/WebView/BridgeDelegateHandler.swift +166 -0
  112. package/dist/native/iosnativeWebView/Sources/Core/WebView/BridgeFileHandler.swift +340 -0
  113. package/dist/native/iosnativeWebView/Sources/Core/WebView/BridgeJavaScriptInterface.swift +149 -0
  114. package/dist/native/iosnativeWebView/Sources/Core/WebView/BridgeMessageValidator.swift +611 -0
  115. package/dist/native/iosnativeWebView/Sources/Core/WebView/NativeBridge.swift +334 -0
  116. package/dist/native/iosnativeWebView/Sources/Core/WebView/SplashView.swift +95 -0
  117. package/dist/native/iosnativeWebView/Sources/Core/WebView/SplashViewModel.swift +86 -0
  118. package/dist/native/iosnativeWebView/Sources/Core/WebView/WebView.swift +181 -0
  119. package/dist/native/iosnativeWebView/Sources/Core/WebView/WebViewModel.swift +182 -0
  120. package/dist/native/iosnativeWebView/Sources/Core/WebView/WebViewNavigationDelegate.swift +395 -0
  121. package/dist/native/iosnativeWebView/iosnativeWebView/AppDelegate.swift +84 -0
  122. package/dist/native/iosnativeWebView/iosnativeWebView/Assets.xcassets/AccentColor.colorset/Contents.json +8 -8
  123. package/dist/native/iosnativeWebView/iosnativeWebView/Assets.xcassets/AppIcon.appiconset/Contents.json +10 -10
  124. package/dist/native/iosnativeWebView/iosnativeWebView/Assets.xcassets/Contents.json +4 -4
  125. package/dist/native/iosnativeWebView/iosnativeWebView/ContentView.swift +79 -9
  126. package/dist/native/iosnativeWebView/iosnativeWebView/Info-Release.plist +21 -0
  127. package/dist/native/iosnativeWebView/iosnativeWebView/Info.plist +15 -0
  128. package/dist/native/iosnativeWebView/iosnativeWebView/Preview Content/Preview Assets.xcassets/Contents.json +4 -4
  129. package/dist/native/iosnativeWebView/iosnativeWebView/iosnativeWebView.entitlements +12 -0
  130. package/dist/native/iosnativeWebView/iosnativeWebView/iosnativeWebViewApp.swift +80 -0
  131. package/dist/native/iosnativeWebView/iosnativeWebView/localhost.p12 +0 -0
  132. package/dist/native/iosnativeWebView/iosnativeWebView.xcodeproj/project.pbxproj +118 -92
  133. package/dist/native/iosnativeWebView/iosnativeWebView.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +69 -0
  134. package/dist/native/iosnativeWebView/iosnativeWebView.xcodeproj/xcshareddata/xcschemes/iosnativeWebView.xcscheme +9 -4
  135. package/dist/native/iosnativeWebView/iosnativeWebView.xctestplan +47 -0
  136. package/dist/native/iosnativeWebView/iosnativeWebViewTests/BootTimingUtilityTests.swift +236 -0
  137. package/dist/native/iosnativeWebView/iosnativeWebViewTests/BridgeCommandHandlerSecurityTests.swift +212 -0
  138. package/dist/native/iosnativeWebView/iosnativeWebViewTests/BridgeMessageValidatorTests.swift +418 -0
  139. package/dist/native/iosnativeWebView/iosnativeWebViewTests/CacheManagerTests.swift +390 -0
  140. package/dist/native/iosnativeWebView/iosnativeWebViewTests/ConfigMappingTests.swift +299 -0
  141. package/dist/native/iosnativeWebView/iosnativeWebViewTests/FilePickerHandlerTests.swift +383 -0
  142. package/dist/native/iosnativeWebView/iosnativeWebViewTests/FrameworkServerUtilsTests.swift +391 -0
  143. package/dist/native/iosnativeWebView/iosnativeWebViewTests/NativeBridgeTests.swift +581 -0
  144. package/dist/native/iosnativeWebView/iosnativeWebViewTests/NotificationHandlerTests.swift +430 -0
  145. package/dist/native/iosnativeWebView/iosnativeWebViewTests/ScreenSecureManagerTests.swift +121 -0
  146. package/dist/native/iosnativeWebView/iosnativeWebViewTests/URLWhitelistManagerTests.swift +367 -0
  147. package/dist/native/iosnativeWebView/iosnativeWebViewTests/WebViewTests.swift +440 -0
  148. package/dist/native/renameAndroidProject.js +89 -0
  149. package/dist/native/setupEmulatorIos.js +22 -5
  150. package/dist/native/setupServer.js +28 -0
  151. package/dist/native/terminalProgress.js +10 -10
  152. package/dist/native/utils.js +4 -5
  153. package/dist/otel.js +4 -0
  154. package/dist/scripts/build.js +2 -2
  155. package/dist/scripts/devBuild.js +2 -2
  156. package/dist/scripts/loadEnvironmentVariables.js +4 -1
  157. package/dist/scripts/scriptUtils.js +2 -2
  158. package/dist/scripts/start.js +1 -1
  159. package/dist/sentry.js +5 -0
  160. package/dist/server/renderer/document/Body.js +4 -4
  161. package/dist/server/renderer/document/Head.js +1 -1
  162. package/dist/server/renderer/extract.js +3 -3
  163. package/dist/server/renderer/handler.js +13 -11
  164. package/dist/server/renderer/index.js +1 -1
  165. package/dist/server/startServer.js +2 -2
  166. package/dist/webpack/base.babel.js +2 -2
  167. package/dist/webpack/development.client.babel.js +17 -2
  168. package/dist/webpack/production.client.babel.js +2 -2
  169. package/dist/webpack/production.ssr.babel.js +2 -2
  170. package/package.json +10 -5
  171. package/dist/native/androidProject/.idea/.name +0 -1
  172. package/dist/native/androidProject/.idea/codeStyles/Project.xml +0 -123
  173. package/dist/native/androidProject/.idea/codeStyles/codeStyleConfig.xml +0 -5
  174. package/dist/native/androidProject/.idea/compiler.xml +0 -6
  175. package/dist/native/androidProject/.idea/deploymentTargetSelector.xml +0 -18
  176. package/dist/native/androidProject/.idea/gradle.xml +0 -20
  177. package/dist/native/androidProject/.idea/kotlinc.xml +0 -6
  178. package/dist/native/androidProject/.idea/migrations.xml +0 -10
  179. package/dist/native/androidProject/.idea/misc.xml +0 -9
  180. package/dist/native/androidProject/.idea/other.xml +0 -329
  181. package/dist/native/androidProject/.idea/runConfigurations.xml +0 -17
  182. package/dist/native/androidProject/.idea/vcs.xml +0 -8
  183. package/dist/native/androidProject/app/build/generated/data_binding_base_class_source_out/debug/out/com/example/androidProject/databinding/ActivityMainBinding.java +0 -80
  184. package/dist/native/androidProject/app/build/generated/source/buildConfig/debug/com/example/androidProject/BuildConfig.java +0 -16
  185. package/dist/native/androidProject/app/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json +0 -1
  186. package/dist/native/androidProject/app/build/intermediates/apk/debug/app-debug.apk +0 -0
  187. package/dist/native/androidProject/app/build/intermediates/apk/debug/baselineProfiles/0/app-debug.dm +0 -0
  188. package/dist/native/androidProject/app/build/intermediates/apk/debug/baselineProfiles/1/app-debug.dm +0 -0
  189. package/dist/native/androidProject/app/build/intermediates/apk/debug/output-metadata.json +0 -37
  190. package/dist/native/androidProject/app/build/intermediates/apk_ide_redirect_file/debug/createDebugApkListingFileRedirect/redirect.txt +0 -2
  191. package/dist/native/androidProject/app/build/intermediates/app_metadata/debug/writeDebugAppMetadata/app-metadata.properties +0 -2
  192. package/dist/native/androidProject/app/build/intermediates/assets/debug/mergeDebugAssets/webview_config.properties +0 -4
  193. package/dist/native/androidProject/app/build/intermediates/binary_art_profile/debug/compileDebugArtProfile/baseline.prof +0 -0
  194. package/dist/native/androidProject/app/build/intermediates/binary_art_profile_metadata/debug/compileDebugArtProfile/baseline.profm +0 -0
  195. package/dist/native/androidProject/app/build/intermediates/combined_art_profile/debug/compileDebugArtProfile/baseline-prof.txt +0 -1342
  196. package/dist/native/androidProject/app/build/intermediates/compatible_screen_manifest/debug/createDebugCompatibleScreenManifests/output-metadata.json +0 -10
  197. package/dist/native/androidProject/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debug/processDebugResources/R.jar +0 -0
  198. package/dist/native/androidProject/app/build/intermediates/compressed_assets/debug/compressDebugAssets/out/assets/webview_config.properties.jar +0 -0
  199. package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/arm64-v8a/build_command_native-lib +0 -4
  200. package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/arm64-v8a/build_model.json +0 -196
  201. package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/arm64-v8a/build_stderr_native-lib.txt +0 -0
  202. package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/arm64-v8a/build_stdout_native-lib.txt +0 -3
  203. package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/arm64-v8a/generate_cxx_metadata_670_timing.txt +0 -2
  204. package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/arm64-v8a/metadata_generation_record.json +0 -41
  205. package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/armeabi-v7a/build_command_native-lib +0 -4
  206. package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/armeabi-v7a/build_model.json +0 -196
  207. package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/armeabi-v7a/build_stderr_native-lib.txt +0 -0
  208. package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/armeabi-v7a/build_stdout_native-lib.txt +0 -3
  209. package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/armeabi-v7a/generate_cxx_metadata_665_timing.txt +0 -2
  210. package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/armeabi-v7a/metadata_generation_record.json +0 -41
  211. package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/x86/build_command_native-lib +0 -4
  212. package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/x86/build_model.json +0 -196
  213. package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/x86/build_stderr_native-lib.txt +0 -0
  214. package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/x86/build_stdout_native-lib.txt +0 -3
  215. package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/x86/generate_cxx_metadata_34_timing.txt +0 -6
  216. package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/x86/generate_cxx_metadata_665_timing.txt +0 -2
  217. package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/x86/metadata_generation_record.json +0 -41
  218. package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/x86_64/build_command_native-lib +0 -4
  219. package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/x86_64/build_model.json +0 -196
  220. package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/x86_64/build_stderr_native-lib.txt +0 -0
  221. package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/x86_64/build_stdout_native-lib.txt +0 -3
  222. package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/x86_64/generate_cxx_metadata_662_timing.txt +0 -2
  223. package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/logs/x86_64/metadata_generation_record.json +0 -41
  224. package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/obj/arm64-v8a/libnative-lib.so +0 -0
  225. package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/obj/armeabi-v7a/libnative-lib.so +0 -0
  226. package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/obj/x86/libnative-lib.so +0 -0
  227. package/dist/native/androidProject/app/build/intermediates/cxx/Debug/6m305623/obj/x86_64/libnative-lib.so +0 -0
  228. package/dist/native/androidProject/app/build/intermediates/d8_metadata/debug/mergeDexDebug/out.jar +0 -1
  229. package/dist/native/androidProject/app/build/intermediates/data_binding_base_class_log_artifact/debug/dataBindingGenBaseClassesDebug/out/com.example.androidProject-binding_classes.json +0 -0
  230. package/dist/native/androidProject/app/build/intermediates/data_binding_layout_info_type_merge/debug/mergeDebugResources/out/activity_main-layout.xml +0 -1
  231. package/dist/native/androidProject/app/build/intermediates/data_binding_layout_info_type_package/debug/packageDebugResources/out/activity_main-layout.xml +0 -1
  232. package/dist/native/androidProject/app/build/intermediates/desugar_graph/debug/dexBuilderDebug/out/currentProject/dirs_bucket_0/graph.bin +0 -0
  233. package/dist/native/androidProject/app/build/intermediates/desugar_graph/debug/dexBuilderDebug/out/currentProject/dirs_bucket_1/graph.bin +0 -0
  234. package/dist/native/androidProject/app/build/intermediates/desugar_graph/debug/dexBuilderDebug/out/currentProject/dirs_bucket_2/graph.bin +0 -0
  235. package/dist/native/androidProject/app/build/intermediates/desugar_graph/debug/dexBuilderDebug/out/currentProject/dirs_bucket_3/graph.bin +0 -0
  236. package/dist/native/androidProject/app/build/intermediates/desugar_graph/debug/dexBuilderDebug/out/currentProject/dirs_bucket_4/graph.bin +0 -0
  237. package/dist/native/androidProject/app/build/intermediates/desugar_graph/debug/dexBuilderDebug/out/currentProject/jar_52bf48673b4727146fb85aee8d24356abad3dcc9dbb8cea715d056c0c4286d95_bucket_0/graph.bin +0 -0
  238. package/dist/native/androidProject/app/build/intermediates/desugar_graph/debug/dexBuilderDebug/out/currentProject/jar_52bf48673b4727146fb85aee8d24356abad3dcc9dbb8cea715d056c0c4286d95_bucket_1/graph.bin +0 -0
  239. package/dist/native/androidProject/app/build/intermediates/desugar_graph/debug/dexBuilderDebug/out/currentProject/jar_52bf48673b4727146fb85aee8d24356abad3dcc9dbb8cea715d056c0c4286d95_bucket_2/graph.bin +0 -0
  240. package/dist/native/androidProject/app/build/intermediates/desugar_graph/debug/dexBuilderDebug/out/currentProject/jar_52bf48673b4727146fb85aee8d24356abad3dcc9dbb8cea715d056c0c4286d95_bucket_3/graph.bin +0 -0
  241. package/dist/native/androidProject/app/build/intermediates/desugar_graph/debug/dexBuilderDebug/out/currentProject/jar_52bf48673b4727146fb85aee8d24356abad3dcc9dbb8cea715d056c0c4286d95_bucket_4/graph.bin +0 -0
  242. package/dist/native/androidProject/app/build/intermediates/dex/debug/mergeDexDebug/classes.dex +0 -0
  243. package/dist/native/androidProject/app/build/intermediates/dex/debug/mergeExtDexDebug/classes.dex +0 -0
  244. package/dist/native/androidProject/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex +0 -0
  245. package/dist/native/androidProject/app/build/intermediates/dex/debug/mergeProjectDexDebug/11/classes.dex +0 -0
  246. package/dist/native/androidProject/app/build/intermediates/dex/debug/mergeProjectDexDebug/5/classes.dex +0 -0
  247. package/dist/native/androidProject/app/build/intermediates/dex/debug/mergeProjectDexDebug/8/classes.dex +0 -0
  248. package/dist/native/androidProject/app/build/intermediates/dex_archive_input_jar_hashes/debug/dexBuilderDebug/out +0 -0
  249. package/dist/native/androidProject/app/build/intermediates/dex_metadata_directory/debug/compileDebugArtProfile/0/.dm +0 -0
  250. package/dist/native/androidProject/app/build/intermediates/dex_metadata_directory/debug/compileDebugArtProfile/1/.dm +0 -0
  251. package/dist/native/androidProject/app/build/intermediates/dex_metadata_directory/debug/compileDebugArtProfile/dex-metadata-map.properties +0 -5
  252. package/dist/native/androidProject/app/build/intermediates/dex_number_of_buckets_file/debug/dexBuilderDebug/out +0 -1
  253. package/dist/native/androidProject/app/build/intermediates/external_libs_dex/debug/mergeExtDexDebug/classes.dex +0 -0
  254. package/dist/native/androidProject/app/build/intermediates/incremental/dataBindingGenBaseClassesDebug/base_builder_log.json +0 -0
  255. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/compile-file-map.properties +0 -18
  256. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values/values.xml +0 -14050
  257. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-af/values-af.xml +0 -118
  258. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-am/values-am.xml +0 -118
  259. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ar/values-ar.xml +0 -122
  260. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-as/values-as.xml +0 -118
  261. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-az/values-az.xml +0 -118
  262. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-b+es+419/values-b+es+419.xml +0 -82
  263. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml +0 -119
  264. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-be/values-be.xml +0 -120
  265. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-bg/values-bg.xml +0 -118
  266. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-bn/values-bn.xml +0 -118
  267. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-bs/values-bs.xml +0 -119
  268. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ca/values-ca.xml +0 -118
  269. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-cs/values-cs.xml +0 -120
  270. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-da/values-da.xml +0 -118
  271. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-de/values-de.xml +0 -118
  272. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-el/values-el.xml +0 -118
  273. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rAU/values-en-rAU.xml +0 -39
  274. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rCA/values-en-rCA.xml +0 -39
  275. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml +0 -118
  276. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml +0 -39
  277. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rXC/values-en-rXC.xml +0 -39
  278. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-es/values-es.xml +0 -118
  279. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml +0 -118
  280. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-et/values-et.xml +0 -118
  281. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-eu/values-eu.xml +0 -118
  282. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fa/values-fa.xml +0 -118
  283. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fi/values-fi.xml +0 -118
  284. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fr/values-fr.xml +0 -118
  285. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml +0 -118
  286. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-gl/values-gl.xml +0 -118
  287. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-gu/values-gu.xml +0 -118
  288. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-h320dp-port-v13/values-h320dp-port-v13.xml +0 -4
  289. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-h360dp-land-v13/values-h360dp-land-v13.xml +0 -12
  290. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-h480dp-land-v13/values-h480dp-land-v13.xml +0 -12
  291. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-h550dp-port-v13/values-h550dp-port-v13.xml +0 -4
  292. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml +0 -4
  293. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml +0 -8
  294. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hi/values-hi.xml +0 -118
  295. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hr/values-hr.xml +0 -119
  296. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hu/values-hu.xml +0 -118
  297. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hy/values-hy.xml +0 -118
  298. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-in/values-in.xml +0 -118
  299. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-is/values-is.xml +0 -118
  300. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-it/values-it.xml +0 -118
  301. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-iw/values-iw.xml +0 -119
  302. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ja/values-ja.xml +0 -118
  303. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ka/values-ka.xml +0 -118
  304. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-kk/values-kk.xml +0 -118
  305. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-km/values-km.xml +0 -118
  306. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-kn/values-kn.xml +0 -118
  307. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ko/values-ko.xml +0 -118
  308. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ky/values-ky.xml +0 -118
  309. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-land/values-land.xml +0 -47
  310. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml +0 -16
  311. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ldltr-v21/values-ldltr-v21.xml +0 -4
  312. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ldrtl-v17/values-ldrtl-v17.xml +0 -5
  313. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-lo/values-lo.xml +0 -118
  314. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-lt/values-lt.xml +0 -120
  315. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-lv/values-lv.xml +0 -119
  316. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-mk/values-mk.xml +0 -118
  317. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ml/values-ml.xml +0 -118
  318. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-mn/values-mn.xml +0 -118
  319. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-mr/values-mr.xml +0 -118
  320. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ms/values-ms.xml +0 -118
  321. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-my/values-my.xml +0 -118
  322. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-nb/values-nb.xml +0 -118
  323. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ne/values-ne.xml +0 -118
  324. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-night-v8/values-night-v8.xml +0 -57
  325. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-nl/values-nl.xml +0 -118
  326. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-or/values-or.xml +0 -118
  327. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-pa/values-pa.xml +0 -118
  328. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-pl/values-pl.xml +0 -120
  329. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-port/values-port.xml +0 -4
  330. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-pt/values-pt.xml +0 -39
  331. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-pt-rBR/values-pt-rBR.xml +0 -118
  332. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-pt-rPT/values-pt-rPT.xml +0 -118
  333. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ro/values-ro.xml +0 -119
  334. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ru/values-ru.xml +0 -120
  335. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-si/values-si.xml +0 -118
  336. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sk/values-sk.xml +0 -120
  337. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sl/values-sl.xml +0 -120
  338. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-small-v4/values-small-v4.xml +0 -7
  339. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sq/values-sq.xml +0 -118
  340. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sr/values-sr.xml +0 -119
  341. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sv/values-sv.xml +0 -118
  342. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sw/values-sw.xml +0 -118
  343. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml +0 -27
  344. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ta/values-ta.xml +0 -118
  345. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-te/values-te.xml +0 -118
  346. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-th/values-th.xml +0 -118
  347. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-tl/values-tl.xml +0 -118
  348. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-tr/values-tr.xml +0 -118
  349. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-uk/values-uk.xml +0 -120
  350. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ur/values-ur.xml +0 -118
  351. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-uz/values-uz.xml +0 -118
  352. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v16/values-v16.xml +0 -7
  353. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v17/values-v17.xml +0 -62
  354. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v18/values-v18.xml +0 -4
  355. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v21/values-v21.xml +0 -564
  356. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v22/values-v22.xml +0 -15
  357. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v23/values-v23.xml +0 -88
  358. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v24/values-v24.xml +0 -21
  359. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v25/values-v25.xml +0 -9
  360. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v26/values-v26.xml +0 -18
  361. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v28/values-v28.xml +0 -29
  362. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v31/values-v31.xml +0 -475
  363. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v34/values-v34.xml +0 -91
  364. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-vi/values-vi.xml +0 -118
  365. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w320dp-land-v13/values-w320dp-land-v13.xml +0 -5
  366. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w360dp-port-v13/values-w360dp-port-v13.xml +0 -11
  367. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w400dp-port-v13/values-w400dp-port-v13.xml +0 -11
  368. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w600dp-land-v13/values-w600dp-land-v13.xml +0 -4
  369. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-watch-v20/values-watch-v20.xml +0 -12
  370. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-watch-v21/values-watch-v21.xml +0 -15
  371. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml +0 -9
  372. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml +0 -118
  373. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml +0 -118
  374. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml +0 -118
  375. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zu/values-zu.xml +0 -118
  376. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/merger.xml +0 -15617
  377. package/dist/native/androidProject/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/activity_main.xml +0 -22
  378. package/dist/native/androidProject/app/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties +0 -18
  379. package/dist/native/androidProject/app/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml +0 -23
  380. package/dist/native/androidProject/app/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values-night-v8/values-night-v8.xml +0 -15
  381. package/dist/native/androidProject/app/build/intermediates/incremental/debug/packageDebugResources/merger.xml +0 -24
  382. package/dist/native/androidProject/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/activity_main.xml +0 -22
  383. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/merge-state +0 -0
  384. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/+8JS8dSxslw2R3BqOE7BXWYjhjM= +0 -0
  385. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/0Apl8BCGxmcyeS9WnVr+WkxdRO8= +0 -0
  386. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/0QewgYUx8yUZPh+OpWQAzuwHyvg= +0 -0
  387. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/1n1D34Lo2ckpQccE9F08e9P5QQE= +0 -0
  388. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/2MJNzMGizEciNef_juyia8JFPPc= +0 -0
  389. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/2RXKa6CUCP5maRV0ZClLaGq0CY4= +0 -0
  390. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/31ykE7hT9MOj91_4JKR8agKkZNM= +0 -0
  391. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/3J6xF6M1SvKhQsajtOBH7looxes= +0 -0
  392. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/4KjrsauZSIjpFTscLAiU2Cz_G1w= +0 -0
  393. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/4LQvrxLcpJn49d6GtyCjUY78vpA= +0 -0
  394. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/54MoobjMrsdl7Rc2IXfsw7w2R3Y= +0 -0
  395. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/5FbPfVbG9zRREDSiDj93jXHyzNE= +0 -0
  396. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/5xZGrCul95ORnm1Gn_hujbafEXA= +0 -0
  397. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/5ym0YLbjRLBkMsmNyD3o9nDtDvc= +0 -0
  398. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/6GA5JVX_9VJH0hP+Zf4Lh99yBDA= +0 -0
  399. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/6ZXOvcaFlY_fGsXskTWE60m3eZY= +0 -0
  400. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/7+CxkmqOBpIN1ZoDDd0P8Eqj4QQ= +0 -0
  401. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/7PdFy23A30FCyo+4eN3AnLi5aOQ= +0 -0
  402. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/8slBSv0zKMv8lsTPcQ0qcd+6e0Y= +0 -0
  403. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/9S7VtcIYrPx+ioyAERJ78gI9x3M= +0 -0
  404. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/9kjkSgo5YmlU9hR5jIQynlNqCX4= +0 -0
  405. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/9pvkDHWi+idzpt4gJXnqnQzWCuU= +0 -0
  406. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Au_HZyUQxXCY900HsO3iBXvbPIw= +0 -0
  407. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/BmqGcp3bZhm3GI8yT8D4MuS5ZtM= +0 -0
  408. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/BsJvHBBf9JyGPWqQ8bz_wW2Ct4Y= +0 -0
  409. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/DP68isr86GbkpkAzTve5ZTU5DTg= +0 -0
  410. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ESSCHnTu5fp_eR0IRgaz8Q3hg1g= +0 -0
  411. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/FlU+E03IuPq6dNuqGkDHnZDQj6I= +0 -0
  412. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Gf0qMsQdTVmBlKNuBYLQlgJqKbw= +0 -0
  413. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/GqL5yAVM4OVxwEbeN9dbPx7wODQ= +0 -0
  414. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/GsBQd2spo1t3ArkO61lKLvzci5Y= +0 -0
  415. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/GvNFrrq7GkD+CHHb28JXxf3NVvI= +0 -0
  416. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/H5uMABcRXBHycZ2CFB+_GRiHZj4= +0 -0
  417. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/HmZ5zoJmPD6p0hc8pxWheNkq3E0= +0 -0
  418. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/HuFLtiTdcxsXi2DUgyDNDzkGhvg= +0 -0
  419. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/J4YGylmPn8d0OiQ9ATH6jdmakh0= +0 -0
  420. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/JBwbroegnYBeMCjUZppzcL3qtm4= +0 -0
  421. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/JPtmR42CkiduBdFI0s+z8L4e+q8= +0 -0
  422. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/JRmdL+dbDCfBFBmAD+O+WftWFnc= +0 -0
  423. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/KstdXx2uo9CSdNMGOpLBInkVHYA= +0 -0
  424. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/LDkOtbrpbuY219UAOwoeyn8GSEg= +0 -0
  425. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/LGOfTfFmrcGn3ZvI37UP0C+HuSs= +0 -0
  426. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/LMhbnzwZQyHaz3AtvcSqQXgNvV0= +0 -0
  427. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/LNUceJwMxxJ8+BGxagg_auS6s0Q= +0 -0
  428. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/LYHe6wrCvgnH6blVYx0bOY1K0Ew= +0 -0
  429. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/LeoO_G0ua8x+tzYlE8kuETUZmfE= +0 -0
  430. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/M3aM2raASatsk1LHYsQgGL8x3ps= +0 -0
  431. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/M9E8Bm_00AIbm5AcjmzXncULI6Q= +0 -0
  432. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Mx0ZGgH5q52RfAGBY_91581R7gg= +0 -0
  433. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/NDaMLkHXp1Kz_hGTojqZRNVg7XI= +0 -0
  434. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/NIKHF7R2_1OejbfWES7mlAOER9U= +0 -0
  435. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/NK6SQ56QpEbjkZxmrFLt+hXOXJQ= +0 -0
  436. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/NPY2bu0lOF1UT+WhNFmrw3ORohQ= +0 -0
  437. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/NQs+IfJF2wroSh2lDW5SfwLIq6I= +0 -0
  438. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/OcKHAjJdhnDq804tFUzyUN7cfWo= +0 -0
  439. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/OeVzYljIJzhZ6GLBv_15fA8VLUM= +0 -0
  440. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/OoHESz8RzXeCmPZ9y6i6TKZ+mbc= +0 -0
  441. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/P0XjpqfdatKlyR4JsJZbksB+34k= +0 -0
  442. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/P1ByKX4rgMh4esAg_cS2bTpWWUI= +0 -0
  443. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Pr+4yvYbCR3XGy_2SGGU_io+gUw= +0 -0
  444. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/PuOCX6ZbHYUvaicX2KoCgIPsEs8= +0 -0
  445. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/QPwpjqwsZr_ptUn_N1Cs8tT9H8g= +0 -0
  446. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/T3XPHmhFTRLwZlTRxhTvB0+v4og= +0 -0
  447. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/UZQ_Hk_vWG81pgerj02xQ7dF280= +0 -0
  448. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Vjm6H341BMMYKox9flj6e3lmjdk= +0 -0
  449. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/VvMEPXKdrfSux_CZQKLCNCKTf6U= +0 -0
  450. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/WQ+RuDTxD4+qvWxEConxfUeKG9Q= +0 -0
  451. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/WhW1_qhaloYgEjMesOcvylD+Pnk= +0 -0
  452. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/XWj0zw6O4uMrnXWA5FQouOc53Tg= +0 -0
  453. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/XZ__1HG13AED28evKIshcw5hySE= +0 -0
  454. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/XqybuSfxeZf8eboIDA1D7pUBC5I= +0 -0
  455. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Y7EJrKNmndQf6UZmyRChMuJgBYQ= +0 -0
  456. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/YdDokDo9j2SqEkh9ZYRNIFp7s5g= +0 -0
  457. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Z22aHROCi3zDhuf2RQgK6_2ROQw= +0 -0
  458. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/aF9LVa+V+RgBb8Ss1Np_N6wk7qw= +0 -0
  459. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/aVVJFwKwmc3c_BGEy59_bQOYHZQ= +0 -0
  460. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/abK+KD5HXcVm2vV+Q2Iak1+JtOM= +0 -0
  461. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/bcRiiUu_4My+JIrLHfJDEkmvJbU= +0 -0
  462. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/c_BIsgxO8Ee7cXZd17gMzjbAdVo= +0 -0
  463. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/d_0Md1Xw6rMCOPw4j0VxAq_dOSM= +0 -0
  464. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/dcwU8JU0Q4ya1Y5x25D18X2HTOA= +0 -0
  465. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/dxV0GCEgBirKUHvL40NzRaREEsQ= +0 -0
  466. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/eamoKrKeZgzGXrTKAynh4hsuNU0= +0 -0
  467. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/f6FS26b9zRzkjg_TV4HFzAJ8RD4= +0 -0
  468. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/jObIG307MewNNZ8V3zd3hDp9WRU= +0 -0
  469. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/km8GC1YPsBzVnHwsL5nvT1_HAmM= +0 -0
  470. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/kygbhMAu37jwUfpbvoKnVwx4O0w= +0 -0
  471. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/lNasvhcwZGLsD2F_9EMszAuN8q4= +0 -0
  472. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ljJROCyxUBZpLSTZUNYaQ_Qvros= +0 -0
  473. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/m5Ol+llndZYety0HpzJSK+bHGqc= +0 -0
  474. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/m8b5BVaM7aWgfo4F723vRY3Caps= +0 -0
  475. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/mPpL+lcuD1pdSRw4wrtu3bnOC6w= +0 -0
  476. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/nP7qz8_B_+He8PnpAtfAsSfECSM= +0 -0
  477. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/qmDyKmC4HWA3eaQS+c+4muipUvo= +0 -0
  478. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/rouVv7vLizwLOYA4anlrEh74NW0= +0 -0
  479. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/smFzrU3EBWvX6s8cDmJx9ekugXY= +0 -0
  480. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/tR3e20qJIu19iYcTHmOJ0cfaDkA= +0 -0
  481. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/u9Tm40LzRSMnpvjselniGXqUqgU= +0 -0
  482. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/v3dce0HdkfOVmryjQ6DKOySEF14= +0 -0
  483. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/vUjpF_rf8PvBkQxqNV2qip06jmY= +0 -0
  484. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/x+ZOnXPwlirJ5AEzllKvRsAB41Q= +0 -0
  485. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/x2LA3UOCBM0CMekJ+KFR1ZMVZQ0= +0 -0
  486. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/yS4JoeULxMI6jRb8RRJubDeVzOg= +0 -0
  487. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/zFdBb5besctw8LaXVFVdvqvR_0Q= +0 -0
  488. package/dist/native/androidProject/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ze2va5ofiKbAs5nshrq1Bnj2wxI= +0 -0
  489. package/dist/native/androidProject/app/build/intermediates/incremental/mergeDebugAssets/merger.xml +0 -2
  490. package/dist/native/androidProject/app/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +0 -2
  491. package/dist/native/androidProject/app/build/intermediates/incremental/mergeDebugShaders/merger.xml +0 -2
  492. package/dist/native/androidProject/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt +0 -4
  493. package/dist/native/androidProject/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/androidResources +0 -0
  494. package/dist/native/androidProject/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/javaResources0 +0 -0
  495. package/dist/native/androidProject/app/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/app_debug.kotlin_module +0 -0
  496. package/dist/native/androidProject/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/androidProject/BuildConfig.class +0 -0
  497. package/dist/native/androidProject/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/androidProject/databinding/ActivityMainBinding.class +0 -0
  498. package/dist/native/androidProject/app/build/intermediates/linked_resources_binary_format/debug/processDebugResources/linked-resources-binary-format-debug.ap_ +0 -0
  499. package/dist/native/androidProject/app/build/intermediates/linked_resources_binary_format/debug/processDebugResources/output-metadata.json +0 -20
  500. package/dist/native/androidProject/app/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt +0 -20
  501. package/dist/native/androidProject/app/build/intermediates/manifest_merge_blame_file/debug/processDebugMainManifest/manifest-merger-blame-debug-report.txt +0 -143
  502. package/dist/native/androidProject/app/build/intermediates/merged_art_profile/debug/mergeDebugArtProfile/baseline-prof.txt +0 -1342
  503. package/dist/native/androidProject/app/build/intermediates/merged_java_res/debug/mergeDebugJavaResource/base.jar +0 -0
  504. package/dist/native/androidProject/app/build/intermediates/merged_manifest/debug/processDebugMainManifest/AndroidManifest.xml +0 -84
  505. package/dist/native/androidProject/app/build/intermediates/merged_manifests/debug/processDebugManifest/AndroidManifest.xml +0 -84
  506. package/dist/native/androidProject/app/build/intermediates/merged_manifests/debug/processDebugManifest/output-metadata.json +0 -20
  507. package/dist/native/androidProject/app/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/libnative-lib.so +0 -0
  508. package/dist/native/androidProject/app/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/armeabi-v7a/libnative-lib.so +0 -0
  509. package/dist/native/androidProject/app/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86/libnative-lib.so +0 -0
  510. package/dist/native/androidProject/app/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86_64/libnative-lib.so +0 -0
  511. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable_ic_launcher_background.xml.flat +0 -0
  512. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable_ic_launcher_foreground.xml.flat +0 -0
  513. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/layout_activity_main.xml.flat +0 -0
  514. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-anydpi-v26_ic_launcher.xml.flat +0 -0
  515. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-anydpi-v26_ic_launcher_round.xml.flat +0 -0
  516. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-hdpi_ic_launcher.webp.flat +0 -0
  517. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-hdpi_ic_launcher_round.webp.flat +0 -0
  518. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-mdpi_ic_launcher.webp.flat +0 -0
  519. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-mdpi_ic_launcher_round.webp.flat +0 -0
  520. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xhdpi_ic_launcher.webp.flat +0 -0
  521. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xhdpi_ic_launcher_round.webp.flat +0 -0
  522. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xxhdpi_ic_launcher.webp.flat +0 -0
  523. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xxhdpi_ic_launcher_round.webp.flat +0 -0
  524. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xxxhdpi_ic_launcher.webp.flat +0 -0
  525. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/mipmap-xxxhdpi_ic_launcher_round.webp.flat +0 -0
  526. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-af_values-af.arsc.flat +0 -0
  527. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-am_values-am.arsc.flat +0 -0
  528. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ar_values-ar.arsc.flat +0 -0
  529. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-as_values-as.arsc.flat +0 -0
  530. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-az_values-az.arsc.flat +0 -0
  531. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-b+es+419_values-b+es+419.arsc.flat +0 -0
  532. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-b+sr+Latn_values-b+sr+Latn.arsc.flat +0 -0
  533. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-be_values-be.arsc.flat +0 -0
  534. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-bg_values-bg.arsc.flat +0 -0
  535. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-bn_values-bn.arsc.flat +0 -0
  536. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-bs_values-bs.arsc.flat +0 -0
  537. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ca_values-ca.arsc.flat +0 -0
  538. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-cs_values-cs.arsc.flat +0 -0
  539. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-da_values-da.arsc.flat +0 -0
  540. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-de_values-de.arsc.flat +0 -0
  541. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-el_values-el.arsc.flat +0 -0
  542. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-en-rAU_values-en-rAU.arsc.flat +0 -0
  543. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-en-rCA_values-en-rCA.arsc.flat +0 -0
  544. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-en-rGB_values-en-rGB.arsc.flat +0 -0
  545. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-en-rIN_values-en-rIN.arsc.flat +0 -0
  546. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-en-rXC_values-en-rXC.arsc.flat +0 -0
  547. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-es-rUS_values-es-rUS.arsc.flat +0 -0
  548. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-es_values-es.arsc.flat +0 -0
  549. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-et_values-et.arsc.flat +0 -0
  550. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-eu_values-eu.arsc.flat +0 -0
  551. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-fa_values-fa.arsc.flat +0 -0
  552. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-fi_values-fi.arsc.flat +0 -0
  553. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-fr-rCA_values-fr-rCA.arsc.flat +0 -0
  554. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-fr_values-fr.arsc.flat +0 -0
  555. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-gl_values-gl.arsc.flat +0 -0
  556. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-gu_values-gu.arsc.flat +0 -0
  557. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-h320dp-port-v13_values-h320dp-port-v13.arsc.flat +0 -0
  558. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-h360dp-land-v13_values-h360dp-land-v13.arsc.flat +0 -0
  559. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-h480dp-land-v13_values-h480dp-land-v13.arsc.flat +0 -0
  560. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-h550dp-port-v13_values-h550dp-port-v13.arsc.flat +0 -0
  561. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-h720dp-v13_values-h720dp-v13.arsc.flat +0 -0
  562. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-hdpi-v4_values-hdpi-v4.arsc.flat +0 -0
  563. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-hi_values-hi.arsc.flat +0 -0
  564. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-hr_values-hr.arsc.flat +0 -0
  565. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-hu_values-hu.arsc.flat +0 -0
  566. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-hy_values-hy.arsc.flat +0 -0
  567. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-in_values-in.arsc.flat +0 -0
  568. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-is_values-is.arsc.flat +0 -0
  569. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-it_values-it.arsc.flat +0 -0
  570. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-iw_values-iw.arsc.flat +0 -0
  571. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ja_values-ja.arsc.flat +0 -0
  572. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ka_values-ka.arsc.flat +0 -0
  573. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-kk_values-kk.arsc.flat +0 -0
  574. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-km_values-km.arsc.flat +0 -0
  575. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-kn_values-kn.arsc.flat +0 -0
  576. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ko_values-ko.arsc.flat +0 -0
  577. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ky_values-ky.arsc.flat +0 -0
  578. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-land_values-land.arsc.flat +0 -0
  579. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-large-v4_values-large-v4.arsc.flat +0 -0
  580. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ldltr-v21_values-ldltr-v21.arsc.flat +0 -0
  581. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ldrtl-v17_values-ldrtl-v17.arsc.flat +0 -0
  582. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-lo_values-lo.arsc.flat +0 -0
  583. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-lt_values-lt.arsc.flat +0 -0
  584. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-lv_values-lv.arsc.flat +0 -0
  585. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-mk_values-mk.arsc.flat +0 -0
  586. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ml_values-ml.arsc.flat +0 -0
  587. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-mn_values-mn.arsc.flat +0 -0
  588. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-mr_values-mr.arsc.flat +0 -0
  589. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ms_values-ms.arsc.flat +0 -0
  590. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-my_values-my.arsc.flat +0 -0
  591. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-nb_values-nb.arsc.flat +0 -0
  592. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ne_values-ne.arsc.flat +0 -0
  593. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-night-v8_values-night-v8.arsc.flat +0 -0
  594. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-nl_values-nl.arsc.flat +0 -0
  595. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-or_values-or.arsc.flat +0 -0
  596. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-pa_values-pa.arsc.flat +0 -0
  597. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-pl_values-pl.arsc.flat +0 -0
  598. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-port_values-port.arsc.flat +0 -0
  599. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-pt-rBR_values-pt-rBR.arsc.flat +0 -0
  600. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-pt-rPT_values-pt-rPT.arsc.flat +0 -0
  601. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-pt_values-pt.arsc.flat +0 -0
  602. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ro_values-ro.arsc.flat +0 -0
  603. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ru_values-ru.arsc.flat +0 -0
  604. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-si_values-si.arsc.flat +0 -0
  605. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-sk_values-sk.arsc.flat +0 -0
  606. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-sl_values-sl.arsc.flat +0 -0
  607. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-small-v4_values-small-v4.arsc.flat +0 -0
  608. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-sq_values-sq.arsc.flat +0 -0
  609. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-sr_values-sr.arsc.flat +0 -0
  610. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-sv_values-sv.arsc.flat +0 -0
  611. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-sw600dp-v13_values-sw600dp-v13.arsc.flat +0 -0
  612. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-sw_values-sw.arsc.flat +0 -0
  613. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ta_values-ta.arsc.flat +0 -0
  614. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-te_values-te.arsc.flat +0 -0
  615. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-th_values-th.arsc.flat +0 -0
  616. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-tl_values-tl.arsc.flat +0 -0
  617. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-tr_values-tr.arsc.flat +0 -0
  618. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-uk_values-uk.arsc.flat +0 -0
  619. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-ur_values-ur.arsc.flat +0 -0
  620. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-uz_values-uz.arsc.flat +0 -0
  621. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-v16_values-v16.arsc.flat +0 -0
  622. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-v17_values-v17.arsc.flat +0 -0
  623. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-v18_values-v18.arsc.flat +0 -0
  624. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-v21_values-v21.arsc.flat +0 -0
  625. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-v22_values-v22.arsc.flat +0 -0
  626. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-v23_values-v23.arsc.flat +0 -0
  627. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-v24_values-v24.arsc.flat +0 -0
  628. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-v25_values-v25.arsc.flat +0 -0
  629. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-v26_values-v26.arsc.flat +0 -0
  630. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-v28_values-v28.arsc.flat +0 -0
  631. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-v31_values-v31.arsc.flat +0 -0
  632. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-v34_values-v34.arsc.flat +0 -0
  633. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-vi_values-vi.arsc.flat +0 -0
  634. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-w320dp-land-v13_values-w320dp-land-v13.arsc.flat +0 -0
  635. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-w360dp-port-v13_values-w360dp-port-v13.arsc.flat +0 -0
  636. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-w400dp-port-v13_values-w400dp-port-v13.arsc.flat +0 -0
  637. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-w600dp-land-v13_values-w600dp-land-v13.arsc.flat +0 -0
  638. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-watch-v20_values-watch-v20.arsc.flat +0 -0
  639. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-watch-v21_values-watch-v21.arsc.flat +0 -0
  640. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-xlarge-v4_values-xlarge-v4.arsc.flat +0 -0
  641. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-zh-rCN_values-zh-rCN.arsc.flat +0 -0
  642. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-zh-rHK_values-zh-rHK.arsc.flat +0 -0
  643. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-zh-rTW_values-zh-rTW.arsc.flat +0 -0
  644. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values-zu_values-zu.arsc.flat +0 -0
  645. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/values_values.arsc.flat +0 -0
  646. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/xml_backup_rules.xml.flat +0 -0
  647. package/dist/native/androidProject/app/build/intermediates/merged_res/debug/mergeDebugResources/xml_data_extraction_rules.xml.flat +0 -0
  648. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/mergeDebugResources.json +0 -5959
  649. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-af.json +0 -62
  650. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-am.json +0 -62
  651. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ar.json +0 -62
  652. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-as.json +0 -62
  653. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-az.json +0 -62
  654. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-b+es+419.json +0 -20
  655. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-b+sr+Latn.json +0 -62
  656. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-be.json +0 -62
  657. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-bg.json +0 -62
  658. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-bn.json +0 -62
  659. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-bs.json +0 -62
  660. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ca.json +0 -62
  661. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-cs.json +0 -62
  662. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-da.json +0 -62
  663. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-de.json +0 -62
  664. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-el.json +0 -62
  665. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-en-rAU.json +0 -43
  666. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-en-rCA.json +0 -43
  667. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-en-rGB.json +0 -62
  668. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-en-rIN.json +0 -43
  669. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-en-rXC.json +0 -43
  670. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-es-rUS.json +0 -62
  671. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-es.json +0 -62
  672. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-et.json +0 -62
  673. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-eu.json +0 -62
  674. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-fa.json +0 -62
  675. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-fi.json +0 -62
  676. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-fr-rCA.json +0 -62
  677. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-fr.json +0 -62
  678. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-gl.json +0 -62
  679. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-gu.json +0 -62
  680. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-h320dp-port-v13.json +0 -19
  681. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-h360dp-land-v13.json +0 -19
  682. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-h480dp-land-v13.json +0 -19
  683. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-h550dp-port-v13.json +0 -19
  684. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-h720dp-v13.json +0 -19
  685. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-hdpi-v4.json +0 -20
  686. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-hi.json +0 -62
  687. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-hr.json +0 -62
  688. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-hu.json +0 -62
  689. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-hy.json +0 -62
  690. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-in.json +0 -62
  691. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-is.json +0 -62
  692. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-it.json +0 -62
  693. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-iw.json +0 -62
  694. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ja.json +0 -62
  695. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ka.json +0 -62
  696. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-kk.json +0 -62
  697. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-km.json +0 -62
  698. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-kn.json +0 -62
  699. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ko.json +0 -62
  700. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ky.json +0 -62
  701. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-land.json +0 -38
  702. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-large-v4.json +0 -36
  703. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ldltr-v21.json +0 -19
  704. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ldrtl-v17.json +0 -19
  705. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-lo.json +0 -62
  706. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-lt.json +0 -62
  707. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-lv.json +0 -62
  708. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-mk.json +0 -62
  709. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ml.json +0 -62
  710. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-mn.json +0 -62
  711. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-mr.json +0 -62
  712. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ms.json +0 -62
  713. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-my.json +0 -62
  714. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-nb.json +0 -62
  715. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ne.json +0 -62
  716. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-night-v8.json +0 -62
  717. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-nl.json +0 -62
  718. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-or.json +0 -62
  719. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-pa.json +0 -62
  720. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-pl.json +0 -62
  721. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-port.json +0 -19
  722. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-pt-rBR.json +0 -62
  723. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-pt-rPT.json +0 -62
  724. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-pt.json +0 -43
  725. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ro.json +0 -62
  726. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ru.json +0 -62
  727. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-si.json +0 -62
  728. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-sk.json +0 -62
  729. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-sl.json +0 -62
  730. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-small-v4.json +0 -19
  731. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-sq.json +0 -62
  732. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-sr.json +0 -62
  733. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-sv.json +0 -62
  734. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-sw.json +0 -62
  735. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-sw600dp-v13.json +0 -38
  736. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ta.json +0 -62
  737. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-te.json +0 -62
  738. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-th.json +0 -62
  739. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-tl.json +0 -62
  740. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-tr.json +0 -62
  741. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-uk.json +0 -62
  742. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-ur.json +0 -62
  743. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-uz.json +0 -62
  744. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-v16.json +0 -20
  745. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-v17.json +0 -20
  746. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-v18.json +0 -19
  747. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-v21.json +0 -66
  748. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-v22.json +0 -20
  749. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-v23.json +0 -58
  750. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-v24.json +0 -38
  751. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-v25.json +0 -20
  752. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-v26.json +0 -20
  753. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-v28.json +0 -47
  754. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-v31.json +0 -20
  755. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-v34.json +0 -19
  756. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-vi.json +0 -62
  757. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-w320dp-land-v13.json +0 -19
  758. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-w360dp-port-v13.json +0 -19
  759. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-w400dp-port-v13.json +0 -19
  760. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-w600dp-land-v13.json +0 -19
  761. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-watch-v20.json +0 -20
  762. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-watch-v21.json +0 -20
  763. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-xlarge-v4.json +0 -19
  764. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-zh-rCN.json +0 -62
  765. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-zh-rHK.json +0 -62
  766. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-zh-rTW.json +0 -62
  767. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values-zu.json +0 -62
  768. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/multi-v2/values.json +0 -373
  769. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/single/layout.json +0 -6
  770. package/dist/native/androidProject/app/build/intermediates/merged_res_blame_folder/debug/mergeDebugResources/out/single/mergeDebugResources.json +0 -70
  771. package/dist/native/androidProject/app/build/intermediates/metadata_library_dependencies_report/debug/collectDebugDependencies/dependencies.pb +0 -0
  772. package/dist/native/androidProject/app/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json +0 -1
  773. package/dist/native/androidProject/app/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt +0 -1
  774. package/dist/native/androidProject/app/build/intermediates/optimized_processed_res/debug/optimizeDebugResources/output-metadata.json +0 -20
  775. package/dist/native/androidProject/app/build/intermediates/optimized_processed_res/debug/optimizeDebugResources/resources-debug-optimize.ap_ +0 -0
  776. package/dist/native/androidProject/app/build/intermediates/packaged_manifests/debug/processDebugManifestForPackage/AndroidManifest.xml +0 -84
  777. package/dist/native/androidProject/app/build/intermediates/packaged_manifests/debug/processDebugManifestForPackage/output-metadata.json +0 -20
  778. package/dist/native/androidProject/app/build/intermediates/packaged_res/debug/packageDebugResources/drawable/ic_launcher_background.xml +0 -170
  779. package/dist/native/androidProject/app/build/intermediates/packaged_res/debug/packageDebugResources/drawable/ic_launcher_foreground.xml +0 -30
  780. package/dist/native/androidProject/app/build/intermediates/packaged_res/debug/packageDebugResources/layout/activity_main.xml +0 -22
  781. package/dist/native/androidProject/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-anydpi-v26/ic_launcher.xml +0 -6
  782. package/dist/native/androidProject/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-anydpi-v26/ic_launcher_round.xml +0 -6
  783. package/dist/native/androidProject/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-hdpi-v4/ic_launcher.webp +0 -0
  784. package/dist/native/androidProject/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-hdpi-v4/ic_launcher_round.webp +0 -0
  785. package/dist/native/androidProject/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-mdpi-v4/ic_launcher.webp +0 -0
  786. package/dist/native/androidProject/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-mdpi-v4/ic_launcher_round.webp +0 -0
  787. package/dist/native/androidProject/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-xhdpi-v4/ic_launcher.webp +0 -0
  788. package/dist/native/androidProject/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-xhdpi-v4/ic_launcher_round.webp +0 -0
  789. package/dist/native/androidProject/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-xxhdpi-v4/ic_launcher.webp +0 -0
  790. package/dist/native/androidProject/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-xxhdpi-v4/ic_launcher_round.webp +0 -0
  791. package/dist/native/androidProject/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-xxxhdpi-v4/ic_launcher.webp +0 -0
  792. package/dist/native/androidProject/app/build/intermediates/packaged_res/debug/packageDebugResources/mipmap-xxxhdpi-v4/ic_launcher_round.webp +0 -0
  793. package/dist/native/androidProject/app/build/intermediates/packaged_res/debug/packageDebugResources/values/values.xml +0 -23
  794. package/dist/native/androidProject/app/build/intermediates/packaged_res/debug/packageDebugResources/values-night-v8/values-night-v8.xml +0 -15
  795. package/dist/native/androidProject/app/build/intermediates/packaged_res/debug/packageDebugResources/xml/backup_rules.xml +0 -13
  796. package/dist/native/androidProject/app/build/intermediates/packaged_res/debug/packageDebugResources/xml/data_extraction_rules.xml +0 -19
  797. package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/bdb298b9df351e4ff2e214ec7e399c1c1170e7b31e799763dc6ad8e5b79a36d3_0.jar +0 -0
  798. package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/bdb298b9df351e4ff2e214ec7e399c1c1170e7b31e799763dc6ad8e5b79a36d3_1.jar +0 -0
  799. package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/bdb298b9df351e4ff2e214ec7e399c1c1170e7b31e799763dc6ad8e5b79a36d3_2.jar +0 -0
  800. package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/bdb298b9df351e4ff2e214ec7e399c1c1170e7b31e799763dc6ad8e5b79a36d3_3.jar +0 -0
  801. package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/bdb298b9df351e4ff2e214ec7e399c1c1170e7b31e799763dc6ad8e5b79a36d3_4.jar +0 -0
  802. package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/androidProject/BuildConfig.dex +0 -0
  803. package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/androidProject/MainActivity$AndroidConfig.dex +0 -0
  804. package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/androidProject/MainActivity$onCreate$2.dex +0 -0
  805. package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/androidProject/MainActivity$onCreate$4.dex +0 -0
  806. package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/androidProject/MainActivity$setupWebView$2$shouldInterceptRequest$1.dex +0 -0
  807. package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/androidProject/MainActivity$setupWebView$2.dex +0 -0
  808. package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/androidProject/MainActivity$setupWebView$3.dex +0 -0
  809. package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/androidProject/MainActivity.dex +0 -0
  810. package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/androidProject/databinding/ActivityMainBinding.dex +0 -0
  811. package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/myapplication/WebCacheManager$CacheEntry.dex +0 -0
  812. package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/myapplication/WebCacheManager$CacheMetadata.dex +0 -0
  813. package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/myapplication/WebCacheManager$cleanup$1.dex +0 -0
  814. 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
  815. 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
  816. package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/myapplication/WebCacheManager$cleanup$2.dex +0 -0
  817. package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/myapplication/WebCacheManager$fetchAndCacheResource$2$2.dex +0 -0
  818. package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/myapplication/WebCacheManager$fetchAndCacheResource$2.dex +0 -0
  819. package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/myapplication/WebCacheManager$generateCacheKey$1.dex +0 -0
  820. package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/myapplication/WebCacheManager$getCachedResponse$2.dex +0 -0
  821. package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/myapplication/WebCacheManager$revalidateInBackground$1.dex +0 -0
  822. package/dist/native/androidProject/app/build/intermediates/project_dex_archive/debug/dexBuilderDebug/out/com/example/myapplication/WebCacheManager.dex +0 -0
  823. package/dist/native/androidProject/app/build/intermediates/runtime_symbol_list/debug/processDebugResources/R.txt +0 -7181
  824. package/dist/native/androidProject/app/build/intermediates/sdk_dependency_data/debug/sdkDebugDependencyData/sdkDependencyData.pb +0 -0
  825. package/dist/native/androidProject/app/build/intermediates/signing_config_versions/debug/writeDebugSigningConfigVersions/signing-config-versions.json +0 -1
  826. package/dist/native/androidProject/app/build/intermediates/source_set_path_map/debug/mapDebugSourceSetPaths/file-map.txt +0 -35
  827. package/dist/native/androidProject/app/build/intermediates/stable_resource_ids_file/debug/processDebugResources/stableIds.txt +0 -5666
  828. package/dist/native/androidProject/app/build/intermediates/stripped_native_libs/debug/stripDebugDebugSymbols/out/lib/arm64-v8a/libnative-lib.so +0 -0
  829. package/dist/native/androidProject/app/build/intermediates/stripped_native_libs/debug/stripDebugDebugSymbols/out/lib/armeabi-v7a/libnative-lib.so +0 -0
  830. package/dist/native/androidProject/app/build/intermediates/stripped_native_libs/debug/stripDebugDebugSymbols/out/lib/x86/libnative-lib.so +0 -0
  831. package/dist/native/androidProject/app/build/intermediates/stripped_native_libs/debug/stripDebugDebugSymbols/out/lib/x86_64/libnative-lib.so +0 -0
  832. package/dist/native/androidProject/app/build/intermediates/symbol_list_with_package_name/debug/processDebugResources/package-aware-r.txt +0 -5251
  833. package/dist/native/androidProject/app/build/intermediates/version_control_info_file/debug/extractDebugVersionControlInfo/version-control-info.textproto +0 -1
  834. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab +0 -0
  835. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream +0 -0
  836. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len +0 -0
  837. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len +0 -0
  838. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at +0 -0
  839. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i +0 -0
  840. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len +0 -0
  841. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab +0 -0
  842. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream +0 -0
  843. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len +0 -0
  844. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len +0 -0
  845. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at +0 -0
  846. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i +0 -0
  847. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len +0 -0
  848. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab +0 -0
  849. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream +0 -0
  850. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len +0 -0
  851. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len +0 -0
  852. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at +0 -0
  853. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i +0 -0
  854. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len +0 -0
  855. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab +0 -0
  856. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream +0 -0
  857. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len +0 -0
  858. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len +0 -0
  859. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at +0 -0
  860. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i +0 -0
  861. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len +0 -0
  862. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab +0 -0
  863. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.keystream +0 -0
  864. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.keystream.len +0 -0
  865. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.len +0 -0
  866. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.values.at +0 -0
  867. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab_i +0 -0
  868. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/java-sources-proto-map.tab_i.len +0 -0
  869. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab +0 -0
  870. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream +0 -0
  871. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len +0 -0
  872. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len +0 -0
  873. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at +0 -0
  874. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i +0 -0
  875. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len +0 -0
  876. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab +0 -0
  877. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream +0 -0
  878. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len +0 -0
  879. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len +0 -0
  880. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at +0 -0
  881. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i +0 -0
  882. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len +0 -0
  883. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab +0 -0
  884. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream +0 -0
  885. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len +0 -0
  886. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len +0 -0
  887. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at +0 -0
  888. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i +0 -0
  889. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len +0 -0
  890. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab +0 -0
  891. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream +0 -0
  892. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len +0 -0
  893. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len +0 -0
  894. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at +0 -0
  895. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i +0 -0
  896. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len +0 -0
  897. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab +0 -2
  898. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab +0 -0
  899. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream +0 -0
  900. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len +0 -0
  901. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len +0 -0
  902. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at +0 -0
  903. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i +0 -0
  904. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len +0 -0
  905. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab +0 -0
  906. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream +0 -0
  907. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len +0 -0
  908. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len +0 -0
  909. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at +0 -0
  910. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i +0 -0
  911. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len +0 -0
  912. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab +0 -0
  913. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream +0 -0
  914. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len +0 -0
  915. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len +0 -0
  916. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values +0 -0
  917. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at +0 -0
  918. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.s +0 -1
  919. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i +0 -0
  920. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len +0 -0
  921. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/cacheable/last-build.bin +0 -0
  922. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin +0 -0
  923. package/dist/native/androidProject/app/build/kotlin/compileDebugKotlin/local-state/build-history.bin +0 -0
  924. package/dist/native/androidProject/app/build/outputs/apk/debug/app-debug.apk +0 -0
  925. package/dist/native/androidProject/app/build/outputs/apk/debug/output-metadata.json +0 -21
  926. package/dist/native/androidProject/app/build/outputs/logs/manifest-merger-debug-report.txt +0 -324
  927. package/dist/native/androidProject/app/build/outputs/sdk-dependencies/debug/sdkDependencies.txt +0 -1226
  928. package/dist/native/androidProject/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/BuildConfig.class.uniqueId0 +0 -0
  929. package/dist/native/androidProject/app/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin +0 -0
  930. package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/META-INF/app_debug.kotlin_module +0 -0
  931. package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/com/example/androidProject/MainActivity$AndroidConfig.class +0 -0
  932. package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/com/example/androidProject/MainActivity$onCreate$2.class +0 -0
  933. package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/com/example/androidProject/MainActivity$onCreate$4.class +0 -0
  934. package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/com/example/androidProject/MainActivity$setupWebView$2$shouldInterceptRequest$1.class +0 -0
  935. package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/com/example/androidProject/MainActivity$setupWebView$2.class +0 -0
  936. package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/com/example/androidProject/MainActivity$setupWebView$3.class +0 -0
  937. package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/com/example/androidProject/MainActivity.class +0 -0
  938. package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/com/example/myapplication/WebCacheManager$CacheEntry.class +0 -0
  939. package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/com/example/myapplication/WebCacheManager$CacheMetadata.class +0 -0
  940. package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/com/example/myapplication/WebCacheManager$cleanup$1.class +0 -0
  941. package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/com/example/myapplication/WebCacheManager$cleanup$2$invokeSuspend$$inlined$sortedBy$1.class +0 -0
  942. package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/com/example/myapplication/WebCacheManager$cleanup$2$invokeSuspend$$inlined$sortedBy$2.class +0 -0
  943. package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/com/example/myapplication/WebCacheManager$cleanup$2.class +0 -0
  944. package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/com/example/myapplication/WebCacheManager$fetchAndCacheResource$2$2.class +0 -0
  945. package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/com/example/myapplication/WebCacheManager$fetchAndCacheResource$2.class +0 -0
  946. package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/com/example/myapplication/WebCacheManager$generateCacheKey$1.class +0 -0
  947. package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/com/example/myapplication/WebCacheManager$getCachedResponse$2.class +0 -0
  948. package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/com/example/myapplication/WebCacheManager$revalidateInBackground$1.class +0 -0
  949. package/dist/native/androidProject/app/build/tmp/kotlin-classes/debug/com/example/myapplication/WebCacheManager.class +0 -0
  950. package/dist/native/androidProject/app/src/androidTest/java/com/example/myapplication/ExampleInstrumentedTest.kt +0 -24
  951. package/dist/native/androidProject/app/src/main/assets/webview_config.properties +0 -4
  952. package/dist/native/androidProject/app/src/main/cpp/CMakeLists.txt +0 -41
  953. package/dist/native/androidProject/app/src/main/cpp/native-lib.cpp +0 -22
  954. package/dist/native/androidProject/app/src/main/java/com/example/myapplication/MainActivity.kt +0 -306
  955. package/dist/native/androidProject/app/src/test/java/com/example/myapplication/ExampleUnitTest.kt +0 -17
  956. package/dist/native/iosnativeWebView/iosnativeWebView/ConfigConstants.swift +0 -7
  957. package/dist/native/iosnativeWebView/iosnativeWebView/WebView.swift +0 -79
  958. package/dist/native/iosnativeWebView/iosnativeWebView/WebViewModel.swift +0 -47
  959. package/dist/native/iosnativeWebView/iosnativeWebView/WebViewNavigationDelegate.swift +0 -140
  960. package/dist/native/iosnativeWebView/iosnativeWebView.xcodeproj/project.xcworkspace/xcuserdata/mayankmahavar.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  961. 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 ```http://localhost:3005```
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", "start", "serve", "devBuild", "devServe",
12
- "buildApp", "buildApp:ios", "buildApp:android",
13
- "setupEmulator", "setupEmulator:ios", "setupEmulator:android"
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(':')[1]
28
- return ['ios', 'android'].includes(platform) || platform === undefined
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 = ['ios', 'android']
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) => x === "build" || x === "start" || x === "serve" || x === "devBuild" || x === "devServe" ||
58
- isPlatformCommand(x, 'buildApp') || isPlatformCommand(x, 'setupEmulator')
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
- "This probably means the system ran out of memory or someone called " +
96
- "`kill -9` on the process."
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
- "Someone might have called `kill` or `killall`, or the system could " +
102
- "be shutting down."
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-canary.8] - 31-01-2025
3
+ ## [0.1.0-canary.4] - 2026-02-12
4
4
 
5
- ### Changes
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
- # Native WebView Implementation and Cache Management Updates
8
+ ## [0.1.0-canary.3] - 2026-02-04
8
9
 
9
- ## Overview
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
- ## Changes
12
+ ## [0.1.0-canary.2] - 2026-01-28
13
13
 
14
- ### New Features
15
- - Implemented native Android WebView with cache management functionality
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
- ### Technical Implementation Details
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
- - iOS:
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
- ### Other Changes
32
- - Enhanced terminal progress reporting
33
- - Updated documentation and README
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
- - Target version: 0.0.3-canary.1
146
+
147
+ - Target version: 0.0.3-canary.7