create-gufran-expo-app 2.0.0 → 2.0.2

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 (266) hide show
  1. package/lib/createApp.js +7 -2
  2. package/package.json +1 -1
  3. package/template/App.tsx +118 -0
  4. package/template/ReactotronConfig.js +5 -0
  5. package/template/android/app/build.gradle +184 -0
  6. package/template/android/app/debug.keystore +0 -0
  7. package/template/android/app/google-services.json +29 -0
  8. package/template/android/app/proguard-rules.pro +14 -0
  9. package/template/android/app/src/debug/AndroidManifest.xml +7 -0
  10. package/template/android/app/src/debugOptimized/AndroidManifest.xml +7 -0
  11. package/template/android/app/src/main/AndroidManifest.xml +28 -0
  12. package/template/android/app/src/main/assets/fonts/Outfit-Bold.ttf +0 -0
  13. package/template/android/app/src/main/assets/fonts/Outfit-Light.ttf +0 -0
  14. package/template/android/app/src/main/assets/fonts/Outfit-Medium.ttf +0 -0
  15. package/template/android/app/src/main/assets/fonts/Outfit-Regular.ttf +0 -0
  16. package/template/android/app/src/main/assets/fonts/Outfit-SemiBold.ttf +0 -0
  17. package/template/android/app/src/main/java/com/club/yakka/MainActivity.kt +61 -0
  18. package/template/android/app/src/main/java/com/club/yakka/MainApplication.kt +60 -0
  19. package/template/android/app/src/main/res/drawable/ic_launcher_background.xml +6 -0
  20. package/template/android/app/src/main/res/drawable/rn_edit_text_material.xml +37 -0
  21. package/template/android/app/src/main/res/drawable-hdpi/splashscreen_logo.png +0 -0
  22. package/template/android/app/src/main/res/drawable-mdpi/splashscreen_logo.png +0 -0
  23. package/template/android/app/src/main/res/drawable-xhdpi/splashscreen_logo.png +0 -0
  24. package/template/android/app/src/main/res/drawable-xxhdpi/splashscreen_logo.png +0 -0
  25. package/template/android/app/src/main/res/drawable-xxxhdpi/splashscreen_logo.png +0 -0
  26. package/template/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml +5 -0
  27. package/template/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml +5 -0
  28. package/template/android/app/src/main/res/mipmap-hdpi/ic_launcher.webp +0 -0
  29. package/template/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp +0 -0
  30. package/template/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp +0 -0
  31. package/template/android/app/src/main/res/mipmap-mdpi/ic_launcher.webp +0 -0
  32. package/template/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp +0 -0
  33. package/template/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp +0 -0
  34. package/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher.webp +0 -0
  35. package/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp +0 -0
  36. package/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp +0 -0
  37. package/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp +0 -0
  38. package/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp +0 -0
  39. package/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp +0 -0
  40. package/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp +0 -0
  41. package/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp +0 -0
  42. package/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp +0 -0
  43. package/template/android/app/src/main/res/values/colors.xml +6 -0
  44. package/template/android/app/src/main/res/values/strings.xml +5 -0
  45. package/template/android/app/src/main/res/values/styles.xml +14 -0
  46. package/template/android/app/src/main/res/values-night/colors.xml +1 -0
  47. package/template/android/build.gradle +33 -0
  48. package/template/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  49. package/template/android/gradle/wrapper/gradle-wrapper.properties +7 -0
  50. package/template/android/gradle.properties +65 -0
  51. package/template/android/gradlew +251 -0
  52. package/template/android/gradlew.bat +94 -0
  53. package/template/android/settings.gradle +39 -0
  54. package/template/app.json +69 -0
  55. package/template/assets/adaptive-icon.png +0 -0
  56. package/template/assets/adaptive-icon1.png +0 -0
  57. package/template/assets/app_icon.png +0 -0
  58. package/template/assets/favicon.png +0 -0
  59. package/template/assets/icon.png +0 -0
  60. package/template/assets/splash-icon.png +0 -0
  61. package/template/babel-plugin-disable-font-scaling.js +41 -0
  62. package/template/babel.config.js +28 -0
  63. package/template/firebase.json +5 -0
  64. package/template/index.ts +24 -0
  65. package/template/ios/.xcode.env +11 -0
  66. package/template/ios/ClubYakka/AppDelegate.swift +74 -0
  67. package/template/ios/ClubYakka/ClubYakka-Bridging-Header.h +3 -0
  68. package/template/ios/ClubYakka/ClubYakka.entitlements +8 -0
  69. package/template/ios/ClubYakka/GoogleService-Info.plist +30 -0
  70. package/template/ios/ClubYakka/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png +0 -0
  71. package/template/ios/ClubYakka/Images.xcassets/AppIcon.appiconset/Contents.json +14 -0
  72. package/template/ios/ClubYakka/Images.xcassets/Contents.json +6 -0
  73. package/template/ios/ClubYakka/Images.xcassets/SplashScreenBackground.colorset/Contents.json +20 -0
  74. package/template/ios/ClubYakka/Images.xcassets/SplashScreenLegacy.imageset/Contents.json +23 -0
  75. package/template/ios/ClubYakka/Images.xcassets/SplashScreenLegacy.imageset/image.png +0 -0
  76. package/template/ios/ClubYakka/Images.xcassets/SplashScreenLegacy.imageset/image@2x.png +0 -0
  77. package/template/ios/ClubYakka/Images.xcassets/SplashScreenLegacy.imageset/image@3x.png +0 -0
  78. package/template/ios/ClubYakka/Info.plist +101 -0
  79. package/template/ios/ClubYakka/PrivacyInfo.xcprivacy +50 -0
  80. package/template/ios/ClubYakka/SplashScreen.storyboard +48 -0
  81. package/template/ios/ClubYakka/Supporting/Expo.plist +12 -0
  82. package/template/ios/ClubYakka.xcodeproj/project.pbxproj +669 -0
  83. package/template/ios/ClubYakka.xcodeproj/xcshareddata/xcschemes/ClubYakka.xcscheme +88 -0
  84. package/template/ios/ClubYakka.xcworkspace/contents.xcworkspacedata +10 -0
  85. package/template/ios/ClubYakka.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +5 -0
  86. package/template/ios/Podfile +84 -0
  87. package/template/ios/Podfile.lock +2698 -0
  88. package/template/ios/Podfile.properties.json +8 -0
  89. package/template/metro.config.js +17 -0
  90. package/template/package.json +70 -0
  91. package/template/patches/react-native-background-upload+6.6.0.patch +704 -0
  92. package/template/react-native.config.js +7 -0
  93. package/template/src/assets/fonts/Outfit-Bold.ttf +0 -0
  94. package/template/src/assets/fonts/Outfit-Light.ttf +0 -0
  95. package/template/src/assets/fonts/Outfit-Medium.ttf +0 -0
  96. package/template/src/assets/fonts/Outfit-Regular.ttf +0 -0
  97. package/template/src/assets/fonts/Outfit-SemiBold.ttf +0 -0
  98. package/template/src/assets/icons/BG.svg +33 -0
  99. package/template/src/assets/icons/Ic_Users.svg +6 -0
  100. package/template/src/assets/icons/arrow-left-white.svg +4 -0
  101. package/template/src/assets/icons/arrow-left.svg +4 -0
  102. package/template/src/assets/icons/bell.svg +4 -0
  103. package/template/src/assets/icons/bottomSheetIcone.svg +3 -0
  104. package/template/src/assets/icons/call.svg +4 -0
  105. package/template/src/assets/icons/camera.svg +0 -0
  106. package/template/src/assets/icons/chatAppleGreenBG.svg +22 -0
  107. package/template/src/assets/icons/check.svg +4 -0
  108. package/template/src/assets/icons/check_Radio.svg +4 -0
  109. package/template/src/assets/icons/chevron-right.svg +3 -0
  110. package/template/src/assets/icons/clubDefauldImage.png +0 -0
  111. package/template/src/assets/icons/curvBackgroundView.svg +3 -0
  112. package/template/src/assets/icons/defaultClub.png +0 -0
  113. package/template/src/assets/icons/email.svg +3 -0
  114. package/template/src/assets/icons/emptyUser.svg +5 -0
  115. package/template/src/assets/icons/eye-Hide.svg +8 -0
  116. package/template/src/assets/icons/eye.svg +4 -0
  117. package/template/src/assets/icons/gallery.svg +4 -0
  118. package/template/src/assets/icons/home.svg +4 -0
  119. package/template/src/assets/icons/ic_Calendar.svg +14 -0
  120. package/template/src/assets/icons/ic_Calendar_blue.svg +12 -0
  121. package/template/src/assets/icons/ic_Calendar_white.svg +12 -0
  122. package/template/src/assets/icons/ic_Chat.svg +14 -0
  123. package/template/src/assets/icons/ic_ChatAppleGreen.svg +21 -0
  124. package/template/src/assets/icons/ic_ChatAppleWhite.svg +21 -0
  125. package/template/src/assets/icons/ic_Download.svg +6 -0
  126. package/template/src/assets/icons/ic_Events.svg +6 -0
  127. package/template/src/assets/icons/ic_HeadCoachIcon.svg +3 -0
  128. package/template/src/assets/icons/ic_Membership.svg +10 -0
  129. package/template/src/assets/icons/ic_Notification.svg +6 -0
  130. package/template/src/assets/icons/ic_Raffles.svg +14 -0
  131. package/template/src/assets/icons/ic_Referral_Members.svg +12 -0
  132. package/template/src/assets/icons/ic_Shop.svg +13 -0
  133. package/template/src/assets/icons/ic_Teams.svg +8 -0
  134. package/template/src/assets/icons/ic_Volunteer.svg +9 -0
  135. package/template/src/assets/icons/ic_add.svg +3 -0
  136. package/template/src/assets/icons/ic_addCircle.svg +5 -0
  137. package/template/src/assets/icons/ic_chatSend.svg +4 -0
  138. package/template/src/assets/icons/ic_chat_blue_bg.svg +22 -0
  139. package/template/src/assets/icons/ic_clock_blue.svg +4 -0
  140. package/template/src/assets/icons/ic_delete.svg +8 -0
  141. package/template/src/assets/icons/ic_more.svg +5 -0
  142. package/template/src/assets/icons/ic_mute.svg +10 -0
  143. package/template/src/assets/icons/ic_pdf.svg +3 -0
  144. package/template/src/assets/icons/ic_pending_AppleGreen.svg +11 -0
  145. package/template/src/assets/icons/ic_right_appleGreen.svg +11 -0
  146. package/template/src/assets/icons/ic_unread_chat_blue_bg.svg +23 -0
  147. package/template/src/assets/icons/ic_volunteer_Member.svg +8 -0
  148. package/template/src/assets/icons/index.ts +144 -0
  149. package/template/src/assets/icons/location-blue.svg +4 -0
  150. package/template/src/assets/icons/location-white.svg +4 -0
  151. package/template/src/assets/icons/location.svg +4 -0
  152. package/template/src/assets/icons/lock.svg +5 -0
  153. package/template/src/assets/icons/log-out.svg +5 -0
  154. package/template/src/assets/icons/login_logo.svg +9 -0
  155. package/template/src/assets/icons/mail.svg +4 -0
  156. package/template/src/assets/icons/or_saprater.svg +5 -0
  157. package/template/src/assets/icons/password.svg +4 -0
  158. package/template/src/assets/icons/profile-appleGreen.svg +6 -0
  159. package/template/src/assets/icons/search.svg +3 -0
  160. package/template/src/assets/icons/settings.svg +4 -0
  161. package/template/src/assets/icons/success.svg +4 -0
  162. package/template/src/assets/icons/unCheck_Radio.svg +3 -0
  163. package/template/src/assets/icons/uncheck.svg +3 -0
  164. package/template/src/assets/icons/upload_Image.svg +6 -0
  165. package/template/src/assets/icons/upload_Image_Member.svg +6 -0
  166. package/template/src/assets/icons/user.svg +4 -0
  167. package/template/src/assets/icons/wifi.svg +1 -0
  168. package/template/src/assets/images/Splash.png +0 -0
  169. package/template/src/assets/images/SplashLogo.png +0 -0
  170. package/template/src/assets/images/background.png +0 -0
  171. package/template/src/assets/images/clubDefauldImage.png +0 -0
  172. package/template/src/assets/images/index.tsx +9 -0
  173. package/template/src/assets/index.ts +1 -0
  174. package/template/src/components/common/AddMemberModal.tsx +543 -0
  175. package/template/src/components/common/AppLoader.tsx +91 -0
  176. package/template/src/components/common/Button.tsx +173 -0
  177. package/template/src/components/common/ClubCard.tsx +248 -0
  178. package/template/src/components/common/Icon.tsx +93 -0
  179. package/template/src/components/common/IconAlt.tsx +65 -0
  180. package/template/src/components/common/IconButton.tsx +92 -0
  181. package/template/src/components/common/ImagePicker.tsx +451 -0
  182. package/template/src/components/common/LoadingSpinner.tsx +30 -0
  183. package/template/src/components/common/OTPInput.tsx +128 -0
  184. package/template/src/components/common/ReminderCalendar.tsx +129 -0
  185. package/template/src/components/common/ReminderCardItem.tsx +91 -0
  186. package/template/src/components/common/SafeAreaWrapper.tsx +27 -0
  187. package/template/src/components/common/SetReminderModal.tsx +308 -0
  188. package/template/src/components/common/SlowInternet.js +57 -0
  189. package/template/src/components/common/TeamCard.tsx +297 -0
  190. package/template/src/components/common/TextInput.tsx +227 -0
  191. package/template/src/components/common/ToastConfig.tsx +103 -0
  192. package/template/src/components/common/ToastManager.ts +86 -0
  193. package/template/src/components/common/UploadProgressModal.tsx +284 -0
  194. package/template/src/components/common/WrapperContainer.tsx +39 -0
  195. package/template/src/components/common/index.ts +19 -0
  196. package/template/src/constants/Constants.tsx +7 -0
  197. package/template/src/constants/Fonts.tsx +30 -0
  198. package/template/src/constants/index.ts +45 -0
  199. package/template/src/constants/strings.ts +211 -0
  200. package/template/src/constants/theme.ts +72 -0
  201. package/template/src/contexts/AuthContext.tsx +268 -0
  202. package/template/src/contexts/index.ts +2 -0
  203. package/template/src/hooks/index.ts +3 -0
  204. package/template/src/hooks/useImageUpload.ts +199 -0
  205. package/template/src/index.ts +8 -0
  206. package/template/src/navigation/AuthStack.tsx +67 -0
  207. package/template/src/navigation/MainStack.tsx +183 -0
  208. package/template/src/navigation/MiddleStack.tsx +35 -0
  209. package/template/src/navigation/RootNavigator.tsx +101 -0
  210. package/template/src/navigation/index.ts +5 -0
  211. package/template/src/navigation/navigationRef.ts +5 -0
  212. package/template/src/providers/QueryProvider.tsx +30 -0
  213. package/template/src/screens/DetailsScreen.tsx +271 -0
  214. package/template/src/screens/HomeScreen.tsx +736 -0
  215. package/template/src/screens/ProfileScreen.tsx +202 -0
  216. package/template/src/screens/SettingsScreen.tsx +253 -0
  217. package/template/src/screens/SportHubScreen.tsx +280 -0
  218. package/template/src/screens/auth/AddMamber.tsx +428 -0
  219. package/template/src/screens/auth/ForgotPasswordScreen.tsx +176 -0
  220. package/template/src/screens/auth/LoginScreen.tsx +286 -0
  221. package/template/src/screens/auth/OTPVerifyScreen.tsx +359 -0
  222. package/template/src/screens/auth/RegisterScreen.tsx +430 -0
  223. package/template/src/screens/auth/SuccessScreen.tsx +201 -0
  224. package/template/src/screens/auth/WalcomeScreen.tsx +274 -0
  225. package/template/src/screens/auth/index.ts +8 -0
  226. package/template/src/screens/chat/ChatScreen.tsx +1819 -0
  227. package/template/src/screens/chat/ChatThreadsScreen.tsx +360 -0
  228. package/template/src/screens/chat/ReportMessageScreen.tsx +238 -0
  229. package/template/src/screens/clubs/Announcements.tsx +426 -0
  230. package/template/src/screens/clubs/BuyRaffleTicketsScreen.tsx +568 -0
  231. package/template/src/screens/clubs/ClubDeteils.tsx +497 -0
  232. package/template/src/screens/clubs/JoinClub.tsx +841 -0
  233. package/template/src/screens/events/EventScreen.tsx +460 -0
  234. package/template/src/screens/index.ts +42 -0
  235. package/template/src/screens/raffles/MyReferralMembersScreen.tsx +758 -0
  236. package/template/src/screens/raffles/RaffleDetailsScreen.tsx +762 -0
  237. package/template/src/screens/raffles/RafflesScreen.tsx +495 -0
  238. package/template/src/screens/raffles/SetRaffleReminderScreen.tsx +390 -0
  239. package/template/src/screens/teams/JoinTeamScreen.tsx +464 -0
  240. package/template/src/screens/teams/MyTeamDetailsScreen.tsx +979 -0
  241. package/template/src/screens/teams/MyTeamScreen.tsx +568 -0
  242. package/template/src/screens/teams/PendingRequestsScreen.tsx +426 -0
  243. package/template/src/screens/volunteerOpportunities/SetReminderScreen.tsx +631 -0
  244. package/template/src/screens/volunteerOpportunities/VolunteerOpportunitiesDetailsScreen.tsx +1049 -0
  245. package/template/src/screens/volunteerOpportunities/VolunteerOpportunitiesScreen.tsx +608 -0
  246. package/template/src/services/api.ts +167 -0
  247. package/template/src/services/authService.ts +422 -0
  248. package/template/src/services/index.ts +5 -0
  249. package/template/src/services/mainServices.ts +1963 -0
  250. package/template/src/stores/authStore.ts +159 -0
  251. package/template/src/stores/index.ts +2 -0
  252. package/template/src/types/index.ts +85 -0
  253. package/template/src/types/navigation.ts +206 -0
  254. package/template/src/utils/AzureUploaderService.ts +371 -0
  255. package/template/src/utils/ClubSearchManager.ts +222 -0
  256. package/template/src/utils/NotificationManager.ts +503 -0
  257. package/template/src/utils/UploadDebugUtil.ts +107 -0
  258. package/template/src/utils/imagePicker.ts +321 -0
  259. package/template/src/utils/index.ts +111 -0
  260. package/template/src/utils/permissions.ts +277 -0
  261. package/template/src/utils/scaling.ts +14 -0
  262. package/template/src/utils/storage.ts +247 -0
  263. package/template/src/utils/usePermissions.ts +275 -0
  264. package/template/src/utils/validation.ts +340 -0
  265. package/template/tsconfig.json +50 -0
  266. package/template/types/svg.d.ts +6 -0
@@ -0,0 +1,704 @@
1
+ diff --git a/node_modules/react-native-background-upload/android/build.gradle b/node_modules/react-native-background-upload/android/build.gradle
2
+ index fa6963f..83b4c07 100755
3
+ --- a/node_modules/react-native-background-upload/android/build.gradle
4
+ +++ b/node_modules/react-native-background-upload/android/build.gradle
5
+ @@ -1,10 +1,10 @@
6
+ buildscript {
7
+ ext {
8
+ - kotlinVersion = '1.6.0'
9
+ - buildToolsVersion = '29.0.2'
10
+ - compileSdkVersion = 29
11
+ - targetSdkVersion = 29
12
+ minSdkVersion = 18
13
+ + kotlinVersion = '1.8.21'
14
+ + buildToolsVersion = '34.0.8'
15
+ + compileSdkVersion = 34
16
+ + targetSdkVersion = 34
17
+ }
18
+ ext.detoxKotlinVersion = ext.kotlinVersion
19
+
20
+ @@ -20,7 +20,8 @@ buildscript {
21
+
22
+ apply plugin: 'com.android.library'
23
+ apply plugin: 'kotlin-android'
24
+ -apply plugin: 'kotlin-android-extensions'
25
+ +apply plugin: 'kotlin-parcelize'
26
+ +
27
+
28
+ def DEFAULT_COMPILE_SDK_VERSION = 28
29
+ def DEFAULT_BUILD_TOOLS_VERSION = "28.0.3"
30
+ @@ -64,7 +65,7 @@ dependencies {
31
+
32
+ implementation "org.jetbrains.kotlin:$_kotlinStdlib:$_kotlinVersion"
33
+
34
+ - implementation 'net.gotev:uploadservice-okhttp:4.7.0'
35
+ + implementation 'net.gotev:uploadservice-okhttp:4.9.2'
36
+
37
+ implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.0.0'
38
+ }
39
+ diff --git a/node_modules/react-native-background-upload/android/build/.transforms/0dfdf4322e04f79851a27af0270bdc99/results.bin b/node_modules/react-native-background-upload/android/build/.transforms/0dfdf4322e04f79851a27af0270bdc99/results.bin
40
+ new file mode 100644
41
+ index 0000000..0d259dd
42
+ --- /dev/null
43
+ +++ b/node_modules/react-native-background-upload/android/build/.transforms/0dfdf4322e04f79851a27af0270bdc99/results.bin
44
+ @@ -0,0 +1 @@
45
+ +o/classes
46
+ diff --git a/node_modules/react-native-background-upload/android/build/.transforms/0dfdf4322e04f79851a27af0270bdc99/transformed/classes/classes_dex/classes.dex b/node_modules/react-native-background-upload/android/build/.transforms/0dfdf4322e04f79851a27af0270bdc99/transformed/classes/classes_dex/classes.dex
47
+ new file mode 100644
48
+ index 0000000..41486a6
49
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/.transforms/0dfdf4322e04f79851a27af0270bdc99/transformed/classes/classes_dex/classes.dex differ
50
+ diff --git a/node_modules/react-native-background-upload/android/build/.transforms/c8c37f75c8284dd52d0cd39d01acee65/results.bin b/node_modules/react-native-background-upload/android/build/.transforms/c8c37f75c8284dd52d0cd39d01acee65/results.bin
51
+ new file mode 100644
52
+ index 0000000..7ed749e
53
+ --- /dev/null
54
+ +++ b/node_modules/react-native-background-upload/android/build/.transforms/c8c37f75c8284dd52d0cd39d01acee65/results.bin
55
+ @@ -0,0 +1 @@
56
+ +o/bundleLibRuntimeToDirDebug
57
+ diff --git a/node_modules/react-native-background-upload/android/build/.transforms/c8c37f75c8284dd52d0cd39d01acee65/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/vydia/RNUploader/BuildConfig.dex b/node_modules/react-native-background-upload/android/build/.transforms/c8c37f75c8284dd52d0cd39d01acee65/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/vydia/RNUploader/BuildConfig.dex
58
+ new file mode 100644
59
+ index 0000000..9971cfb
60
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/.transforms/c8c37f75c8284dd52d0cd39d01acee65/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/vydia/RNUploader/BuildConfig.dex differ
61
+ diff --git a/node_modules/react-native-background-upload/android/build/.transforms/c8c37f75c8284dd52d0cd39d01acee65/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/vydia/RNUploader/GlobalRequestObserverDelegate.dex b/node_modules/react-native-background-upload/android/build/.transforms/c8c37f75c8284dd52d0cd39d01acee65/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/vydia/RNUploader/GlobalRequestObserverDelegate.dex
62
+ new file mode 100644
63
+ index 0000000..5ab2215
64
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/.transforms/c8c37f75c8284dd52d0cd39d01acee65/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/vydia/RNUploader/GlobalRequestObserverDelegate.dex differ
65
+ diff --git a/node_modules/react-native-background-upload/android/build/.transforms/c8c37f75c8284dd52d0cd39d01acee65/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/vydia/RNUploader/NotificationActions.dex b/node_modules/react-native-background-upload/android/build/.transforms/c8c37f75c8284dd52d0cd39d01acee65/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/vydia/RNUploader/NotificationActions.dex
66
+ new file mode 100644
67
+ index 0000000..57ed760
68
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/.transforms/c8c37f75c8284dd52d0cd39d01acee65/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/vydia/RNUploader/NotificationActions.dex differ
69
+ diff --git a/node_modules/react-native-background-upload/android/build/.transforms/c8c37f75c8284dd52d0cd39d01acee65/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/vydia/RNUploader/NotificationActionsReceiver.dex b/node_modules/react-native-background-upload/android/build/.transforms/c8c37f75c8284dd52d0cd39d01acee65/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/vydia/RNUploader/NotificationActionsReceiver.dex
70
+ new file mode 100644
71
+ index 0000000..4edb393
72
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/.transforms/c8c37f75c8284dd52d0cd39d01acee65/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/vydia/RNUploader/NotificationActionsReceiver.dex differ
73
+ diff --git a/node_modules/react-native-background-upload/android/build/.transforms/c8c37f75c8284dd52d0cd39d01acee65/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/vydia/RNUploader/UploaderModule.dex b/node_modules/react-native-background-upload/android/build/.transforms/c8c37f75c8284dd52d0cd39d01acee65/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/vydia/RNUploader/UploaderModule.dex
74
+ new file mode 100644
75
+ index 0000000..5f62cfd
76
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/.transforms/c8c37f75c8284dd52d0cd39d01acee65/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/vydia/RNUploader/UploaderModule.dex differ
77
+ diff --git a/node_modules/react-native-background-upload/android/build/.transforms/c8c37f75c8284dd52d0cd39d01acee65/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/vydia/RNUploader/UploaderReactPackage.dex b/node_modules/react-native-background-upload/android/build/.transforms/c8c37f75c8284dd52d0cd39d01acee65/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/vydia/RNUploader/UploaderReactPackage.dex
78
+ new file mode 100644
79
+ index 0000000..1a2a04d
80
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/.transforms/c8c37f75c8284dd52d0cd39d01acee65/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/vydia/RNUploader/UploaderReactPackage.dex differ
81
+ diff --git a/node_modules/react-native-background-upload/android/build/.transforms/c8c37f75c8284dd52d0cd39d01acee65/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin b/node_modules/react-native-background-upload/android/build/.transforms/c8c37f75c8284dd52d0cd39d01acee65/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin
82
+ new file mode 100644
83
+ index 0000000..601f245
84
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/.transforms/c8c37f75c8284dd52d0cd39d01acee65/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin differ
85
+ diff --git a/node_modules/react-native-background-upload/android/build/generated/source/buildConfig/debug/com/vydia/RNUploader/BuildConfig.java b/node_modules/react-native-background-upload/android/build/generated/source/buildConfig/debug/com/vydia/RNUploader/BuildConfig.java
86
+ new file mode 100644
87
+ index 0000000..c3fab9b
88
+ --- /dev/null
89
+ +++ b/node_modules/react-native-background-upload/android/build/generated/source/buildConfig/debug/com/vydia/RNUploader/BuildConfig.java
90
+ @@ -0,0 +1,10 @@
91
+ +/**
92
+ + * Automatically generated file. DO NOT MODIFY
93
+ + */
94
+ +package com.vydia.RNUploader;
95
+ +
96
+ +public final class BuildConfig {
97
+ + public static final boolean DEBUG = Boolean.parseBoolean("true");
98
+ + public static final String LIBRARY_PACKAGE_NAME = "com.vydia.RNUploader";
99
+ + public static final String BUILD_TYPE = "debug";
100
+ +}
101
+ diff --git a/node_modules/react-native-background-upload/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml b/node_modules/react-native-background-upload/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml
102
+ new file mode 100644
103
+ index 0000000..abd5072
104
+ --- /dev/null
105
+ +++ b/node_modules/react-native-background-upload/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml
106
+ @@ -0,0 +1,7 @@
107
+ +<?xml version="1.0" encoding="utf-8"?>
108
+ +<manifest xmlns:android="http://schemas.android.com/apk/res/android"
109
+ + package="com.vydia.RNUploader" >
110
+ +
111
+ + <uses-sdk android:minSdkVersion="21" />
112
+ +
113
+ +</manifest>
114
+
115
+ diff --git a/node_modules/react-native-background-upload/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json b/node_modules/react-native-background-upload/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json
116
+ new file mode 100644
117
+ index 0000000..eae5175
118
+ --- /dev/null
119
+ +++ b/node_modules/react-native-background-upload/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json
120
+ @@ -0,0 +1,18 @@
121
+ +{
122
+ + "version": 3,
123
+ + "artifactType": {
124
+ + "type": "AAPT_FRIENDLY_MERGED_MANIFESTS",
125
+ + "kind": "Directory"
126
+ + },
127
+ + "applicationId": "com.vydia.RNUploader",
128
+ + "variantName": "debug",
129
+ + "elements": [
130
+ + {
131
+ + "type": "SINGLE",
132
+ + "filters": [],
133
+ + "attributes": [],
134
+ + "outputFile": "AndroidManifest.xml"
135
+ + }
136
+ + ],
137
+ + "elementType": "File"
138
+ +}
139
+
140
+ diff --git a/node_modules/react-native-background-upload/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/node_modules/react-native-background-upload/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties
141
+ new file mode 100644
142
+ index 0000000..1211b1e
143
+ --- /dev/null
144
+ +++ b/node_modules/react-native-background-upload/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties
145
+ @@ -0,0 +1,6 @@
146
+ +aarFormatVersion=1.0
147
+ +aarMetadataVersion=1.0
148
+ +minCompileSdk=1
149
+ +minCompileSdkExtension=0
150
+ +minAndroidGradlePluginVersion=1.0.0
151
+ +coreLibraryDesugaringEnabled=false
152
+ diff --git a/node_modules/react-native-background-upload/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json b/node_modules/react-native-background-upload/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json
153
+ new file mode 100644
154
+ index 0000000..9e26dfe
155
+ --- /dev/null
156
+ +++ b/node_modules/react-native-background-upload/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json
157
+ @@ -0,0 +1 @@
158
+ +{}
159
+
160
+ diff --git a/node_modules/react-native-background-upload/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar b/node_modules/react-native-background-upload/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar
161
+ new file mode 100644
162
+ index 0000000..e68fb8d
163
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar differ
164
+ diff --git a/node_modules/react-native-background-upload/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar b/node_modules/react-native-background-upload/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar
165
+ new file mode 100644
166
+ index 0000000..5785a12
167
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar differ
168
+ diff --git a/node_modules/react-native-background-upload/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt b/node_modules/react-native-background-upload/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt
169
+ new file mode 100644
170
+ index 0000000..e69de29
171
+ diff --git a/node_modules/react-native-background-upload/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties b/node_modules/react-native-background-upload/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties
172
+ new file mode 100644
173
+ index 0000000..b8dcf47
174
+ --- /dev/null
175
+ +++ b/node_modules/react-native-background-upload/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties
176
+ @@ -0,0 +1 @@
177
+ +#Thu Sep 18 17:09:51 IST 2025
178
+ diff --git a/node_modules/react-native-background-upload/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml b/node_modules/react-native-background-upload/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml
179
+ new file mode 100644
180
+ index 0000000..e8e5253
181
+ --- /dev/null
182
+ +++ b/node_modules/react-native-background-upload/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml
183
+ @@ -0,0 +1,2 @@
184
+ +<?xml version="1.0" encoding="utf-8"?>
185
+ +<merger version="3"><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="main$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/mohammedgufran/Desktop/Projects/RN_CLUB_YAKKA/node_modules/react-native-background-upload/android/src/main/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="main" generated-set="main$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/mohammedgufran/Desktop/Projects/RN_CLUB_YAKKA/node_modules/react-native-background-upload/android/src/main/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="debug$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/mohammedgufran/Desktop/Projects/RN_CLUB_YAKKA/node_modules/react-native-background-upload/android/src/debug/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="debug" generated-set="debug$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/mohammedgufran/Desktop/Projects/RN_CLUB_YAKKA/node_modules/react-native-background-upload/android/src/debug/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="generated$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/mohammedgufran/Desktop/Projects/RN_CLUB_YAKKA/node_modules/react-native-background-upload/android/build/generated/res/resValues/debug"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="generated" generated-set="generated$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/mohammedgufran/Desktop/Projects/RN_CLUB_YAKKA/node_modules/react-native-background-upload/android/build/generated/res/resValues/debug"/></dataSet><mergedItems/></merger>
186
+
187
+ diff --git a/node_modules/react-native-background-upload/android/build/intermediates/incremental/mergeDebugAssets/merger.xml b/node_modules/react-native-background-upload/android/build/intermediates/incremental/mergeDebugAssets/merger.xml
188
+ new file mode 100644
189
+ index 0000000..12ac1bc
190
+ --- /dev/null
191
+ +++ b/node_modules/react-native-background-upload/android/build/intermediates/incremental/mergeDebugAssets/merger.xml
192
+ @@ -0,0 +1,2 @@
193
+ +<?xml version="1.0" encoding="utf-8"?>
194
+ +<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/mohammedgufran/Desktop/Projects/RN_CLUB_YAKKA/node_modules/react-native-background-upload/android/src/main/assets"/></dataSet><dataSet config="debug" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/mohammedgufran/Desktop/Projects/RN_CLUB_YAKKA/node_modules/react-native-background-upload/android/src/debug/assets"/></dataSet><dataSet config="generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/mohammedgufran/Desktop/Projects/RN_CLUB_YAKKA/node_modules/react-native-background-upload/android/build/intermediates/shader_assets/debug/compileDebugShaders/out"/></dataSet></merger>
195
+
196
+ diff --git a/node_modules/react-native-background-upload/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/node_modules/react-native-background-upload/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml
197
+ new file mode 100644
198
+ index 0000000..126ed0c
199
+ --- /dev/null
200
+ +++ b/node_modules/react-native-background-upload/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml
201
+ @@ -0,0 +1,2 @@
202
+ +<?xml version="1.0" encoding="utf-8"?>
203
+ +<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/mohammedgufran/Desktop/Projects/RN_CLUB_YAKKA/node_modules/react-native-background-upload/android/src/main/jniLibs"/></dataSet><dataSet config="debug" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/mohammedgufran/Desktop/Projects/RN_CLUB_YAKKA/node_modules/react-native-background-upload/android/src/debug/jniLibs"/></dataSet></merger>
204
+
205
+ diff --git a/node_modules/react-native-background-upload/android/build/intermediates/incremental/mergeDebugShaders/merger.xml b/node_modules/react-native-background-upload/android/build/intermediates/incremental/mergeDebugShaders/merger.xml
206
+ new file mode 100644
207
+ index 0000000..56489ca
208
+ --- /dev/null
209
+ +++ b/node_modules/react-native-background-upload/android/build/intermediates/incremental/mergeDebugShaders/merger.xml
210
+ @@ -0,0 +1,2 @@
211
+ +<?xml version="1.0" encoding="utf-8"?>
212
+ +<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/mohammedgufran/Desktop/Projects/RN_CLUB_YAKKA/node_modules/react-native-background-upload/android/src/main/shaders"/></dataSet><dataSet config="debug" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/mohammedgufran/Desktop/Projects/RN_CLUB_YAKKA/node_modules/react-native-background-upload/android/src/debug/shaders"/></dataSet></merger>
213
+
214
+ diff --git a/node_modules/react-native-background-upload/android/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/react-native-background-upload_debug.kotlin_module b/node_modules/react-native-background-upload/android/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/react-native-background-upload_debug.kotlin_module
215
+ new file mode 100644
216
+ index 0000000..9dbc290
217
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/react-native-background-upload_debug.kotlin_module differ
218
+ diff --git a/node_modules/react-native-background-upload/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/vydia/RNUploader/BuildConfig.class b/node_modules/react-native-background-upload/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/vydia/RNUploader/BuildConfig.class
219
+ new file mode 100644
220
+ index 0000000..cd529e1
221
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/vydia/RNUploader/BuildConfig.class differ
222
+ diff --git a/node_modules/react-native-background-upload/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/vydia/RNUploader/UploaderReactPackage.class b/node_modules/react-native-background-upload/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/vydia/RNUploader/UploaderReactPackage.class
223
+ new file mode 100644
224
+ index 0000000..421d91c
225
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/vydia/RNUploader/UploaderReactPackage.class differ
226
+ diff --git a/node_modules/react-native-background-upload/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt b/node_modules/react-native-background-upload/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt
227
+ new file mode 100644
228
+ index 0000000..78ac5b8
229
+ --- /dev/null
230
+ +++ b/node_modules/react-native-background-upload/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt
231
+ @@ -0,0 +1,2 @@
232
+ +R_DEF: Internal format may change without notice
233
+ +local
234
+ diff --git a/node_modules/react-native-background-upload/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt b/node_modules/react-native-background-upload/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt
235
+ new file mode 100644
236
+ index 0000000..55595ca
237
+ --- /dev/null
238
+ +++ b/node_modules/react-native-background-upload/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt
239
+ @@ -0,0 +1,7 @@
240
+ +1<?xml version="1.0" encoding="utf-8"?>
241
+ +2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
242
+ +3 package="com.vydia.RNUploader" >
243
+ +4
244
+ +5 <uses-sdk android:minSdkVersion="21" />
245
+ +6
246
+ +7</manifest>
247
+ diff --git a/node_modules/react-native-background-upload/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml b/node_modules/react-native-background-upload/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml
248
+ new file mode 100644
249
+ index 0000000..abd5072
250
+ --- /dev/null
251
+ +++ b/node_modules/react-native-background-upload/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml
252
+ @@ -0,0 +1,7 @@
253
+ +<?xml version="1.0" encoding="utf-8"?>
254
+ +<manifest xmlns:android="http://schemas.android.com/apk/res/android"
255
+ + package="com.vydia.RNUploader" >
256
+ +
257
+ + <uses-sdk android:minSdkVersion="21" />
258
+ +
259
+ +</manifest>
260
+
261
+ diff --git a/node_modules/react-native-background-upload/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json b/node_modules/react-native-background-upload/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json
262
+ new file mode 100644
263
+ index 0000000..0637a08
264
+ --- /dev/null
265
+ +++ b/node_modules/react-native-background-upload/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json
266
+ @@ -0,0 +1 @@
267
+ +[]
268
+
269
+ diff --git a/node_modules/react-native-background-upload/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt b/node_modules/react-native-background-upload/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt
270
+ new file mode 100644
271
+ index 0000000..08f4ebe
272
+ --- /dev/null
273
+ +++ b/node_modules/react-native-background-upload/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt
274
+ @@ -0,0 +1 @@
275
+ +0 Warning/Error
276
+
277
+ diff --git a/node_modules/react-native-background-upload/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/react-native-background-upload_debug.kotlin_module b/node_modules/react-native-background-upload/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/react-native-background-upload_debug.kotlin_module
278
+ new file mode 100644
279
+ index 0000000..9dbc290
280
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/react-native-background-upload_debug.kotlin_module differ
281
+ diff --git a/node_modules/react-native-background-upload/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/vydia/RNUploader/BuildConfig.class b/node_modules/react-native-background-upload/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/vydia/RNUploader/BuildConfig.class
282
+ new file mode 100644
283
+ index 0000000..cd529e1
284
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/vydia/RNUploader/BuildConfig.class differ
285
+ diff --git a/node_modules/react-native-background-upload/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/vydia/RNUploader/GlobalRequestObserverDelegate.class b/node_modules/react-native-background-upload/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/vydia/RNUploader/GlobalRequestObserverDelegate.class
286
+ new file mode 100644
287
+ index 0000000..750644d
288
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/vydia/RNUploader/GlobalRequestObserverDelegate.class differ
289
+ diff --git a/node_modules/react-native-background-upload/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/vydia/RNUploader/NotificationActions.class b/node_modules/react-native-background-upload/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/vydia/RNUploader/NotificationActions.class
290
+ new file mode 100644
291
+ index 0000000..aaf84e5
292
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/vydia/RNUploader/NotificationActions.class differ
293
+ diff --git a/node_modules/react-native-background-upload/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/vydia/RNUploader/NotificationActionsReceiver.class b/node_modules/react-native-background-upload/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/vydia/RNUploader/NotificationActionsReceiver.class
294
+ new file mode 100644
295
+ index 0000000..eca1972
296
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/vydia/RNUploader/NotificationActionsReceiver.class differ
297
+ diff --git a/node_modules/react-native-background-upload/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/vydia/RNUploader/UploaderModule.class b/node_modules/react-native-background-upload/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/vydia/RNUploader/UploaderModule.class
298
+ new file mode 100644
299
+ index 0000000..43b642c
300
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/vydia/RNUploader/UploaderModule.class differ
301
+ diff --git a/node_modules/react-native-background-upload/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/vydia/RNUploader/UploaderReactPackage.class b/node_modules/react-native-background-upload/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/vydia/RNUploader/UploaderReactPackage.class
302
+ new file mode 100644
303
+ index 0000000..421d91c
304
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/vydia/RNUploader/UploaderReactPackage.class differ
305
+ diff --git a/node_modules/react-native-background-upload/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar b/node_modules/react-native-background-upload/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar
306
+ new file mode 100644
307
+ index 0000000..e5d6bda
308
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar differ
309
+ diff --git a/node_modules/react-native-background-upload/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt b/node_modules/react-native-background-upload/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt
310
+ new file mode 100644
311
+ index 0000000..1683e97
312
+ --- /dev/null
313
+ +++ b/node_modules/react-native-background-upload/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt
314
+ @@ -0,0 +1 @@
315
+ +com.vydia.RNUploader
316
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab
317
+ new file mode 100644
318
+ index 0000000..32dcb6b
319
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab differ
320
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream
321
+ new file mode 100644
322
+ index 0000000..ea4e7d6
323
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream differ
324
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len
325
+ new file mode 100644
326
+ index 0000000..4aec0a1
327
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len differ
328
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len
329
+ new file mode 100644
330
+ index 0000000..93a595b
331
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len differ
332
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at
333
+ new file mode 100644
334
+ index 0000000..676f0bf
335
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at differ
336
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i
337
+ new file mode 100644
338
+ index 0000000..00adfb1
339
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i differ
340
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len
341
+ new file mode 100644
342
+ index 0000000..131e265
343
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len differ
344
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab
345
+ new file mode 100644
346
+ index 0000000..4b7052f
347
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab differ
348
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream
349
+ new file mode 100644
350
+ index 0000000..638687a
351
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream differ
352
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len
353
+ new file mode 100644
354
+ index 0000000..bf327e2
355
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len differ
356
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len
357
+ new file mode 100644
358
+ index 0000000..93a595b
359
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len differ
360
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at
361
+ new file mode 100644
362
+ index 0000000..8f28327
363
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at differ
364
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i
365
+ new file mode 100644
366
+ index 0000000..06ac60d
367
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i differ
368
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len
369
+ new file mode 100644
370
+ index 0000000..131e265
371
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len differ
372
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab
373
+ new file mode 100644
374
+ index 0000000..db7dcfd
375
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab differ
376
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream
377
+ new file mode 100644
378
+ index 0000000..638687a
379
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream differ
380
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len
381
+ new file mode 100644
382
+ index 0000000..bf327e2
383
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len differ
384
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len
385
+ new file mode 100644
386
+ index 0000000..93a595b
387
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len differ
388
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at
389
+ new file mode 100644
390
+ index 0000000..9e2f84e
391
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at differ
392
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i
393
+ new file mode 100644
394
+ index 0000000..06ac60d
395
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i differ
396
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len
397
+ new file mode 100644
398
+ index 0000000..131e265
399
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len differ
400
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab
401
+ new file mode 100644
402
+ index 0000000..db7dcfd
403
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab differ
404
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream
405
+ new file mode 100644
406
+ index 0000000..fd0469c
407
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream differ
408
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len
409
+ new file mode 100644
410
+ index 0000000..bf327e2
411
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len differ
412
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len
413
+ new file mode 100644
414
+ index 0000000..93a595b
415
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len differ
416
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at
417
+ new file mode 100644
418
+ index 0000000..9e2f84e
419
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at differ
420
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i
421
+ new file mode 100644
422
+ index 0000000..f29c4d5
423
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i differ
424
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len
425
+ new file mode 100644
426
+ index 0000000..131e265
427
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len differ
428
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab
429
+ new file mode 100644
430
+ index 0000000..fa8833a
431
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab differ
432
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream
433
+ new file mode 100644
434
+ index 0000000..7b0f4cb
435
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream differ
436
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len
437
+ new file mode 100644
438
+ index 0000000..26579f8
439
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len differ
440
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len
441
+ new file mode 100644
442
+ index 0000000..ec8f944
443
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len differ
444
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at
445
+ new file mode 100644
446
+ index 0000000..03b459a
447
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at differ
448
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i
449
+ new file mode 100644
450
+ index 0000000..605d423
451
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i differ
452
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len
453
+ new file mode 100644
454
+ index 0000000..131e265
455
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len differ
456
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab
457
+ new file mode 100644
458
+ index 0000000..8abe57b
459
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab differ
460
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream
461
+ new file mode 100644
462
+ index 0000000..ea4e7d6
463
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream differ
464
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len
465
+ new file mode 100644
466
+ index 0000000..4aec0a1
467
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len differ
468
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len
469
+ new file mode 100644
470
+ index 0000000..93a595b
471
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len differ
472
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at
473
+ new file mode 100644
474
+ index 0000000..9f60a90
475
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at differ
476
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i
477
+ new file mode 100644
478
+ index 0000000..00adfb1
479
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i differ
480
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len
481
+ new file mode 100644
482
+ index 0000000..131e265
483
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len differ
484
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab
485
+ new file mode 100644
486
+ index 0000000..dd1f631
487
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab differ
488
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream
489
+ new file mode 100644
490
+ index 0000000..6ee346e
491
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream differ
492
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len
493
+ new file mode 100644
494
+ index 0000000..8bccc6c
495
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len differ
496
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len
497
+ new file mode 100644
498
+ index 0000000..93a595b
499
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len differ
500
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at
501
+ new file mode 100644
502
+ index 0000000..39c0f40
503
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at differ
504
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i
505
+ new file mode 100644
506
+ index 0000000..0b8e2fa
507
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i differ
508
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len
509
+ new file mode 100644
510
+ index 0000000..131e265
511
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len differ
512
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab
513
+ new file mode 100644
514
+ index 0000000..38c4cdc
515
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab differ
516
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream
517
+ new file mode 100644
518
+ index 0000000..3ac737b
519
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream differ
520
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len
521
+ new file mode 100644
522
+ index 0000000..2a17e6e
523
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len differ
524
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len
525
+ new file mode 100644
526
+ index 0000000..a9f80ae
527
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len differ
528
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at
529
+ new file mode 100644
530
+ index 0000000..0f26a7a
531
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at differ
532
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i
533
+ new file mode 100644
534
+ index 0000000..79944ea
535
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i differ
536
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len
537
+ new file mode 100644
538
+ index 0000000..131e265
539
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len differ
540
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab
541
+ new file mode 100644
542
+ index 0000000..26d3b09
543
+ --- /dev/null
544
+ +++ b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab
545
+ @@ -0,0 +1,2 @@
546
+ +4
547
+ +0
548
+
549
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab
550
+ new file mode 100644
551
+ index 0000000..9fa1348
552
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab differ
553
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream
554
+ new file mode 100644
555
+ index 0000000..ea4e7d6
556
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream differ
557
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len
558
+ new file mode 100644
559
+ index 0000000..4aec0a1
560
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len differ
561
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len
562
+ new file mode 100644
563
+ index 0000000..93a595b
564
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len differ
565
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at
566
+ new file mode 100644
567
+ index 0000000..3e23c2a
568
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at differ
569
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i
570
+ new file mode 100644
571
+ index 0000000..00adfb1
572
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i differ
573
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len
574
+ new file mode 100644
575
+ index 0000000..131e265
576
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len differ
577
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab
578
+ new file mode 100644
579
+ index 0000000..5825fd3
580
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab differ
581
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream
582
+ new file mode 100644
583
+ index 0000000..6e7a926
584
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream differ
585
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len
586
+ new file mode 100644
587
+ index 0000000..eb52963
588
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len differ
589
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len
590
+ new file mode 100644
591
+ index 0000000..93a595b
592
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len differ
593
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at
594
+ new file mode 100644
595
+ index 0000000..7e892ba
596
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at differ
597
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i
598
+ new file mode 100644
599
+ index 0000000..6936967
600
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i differ
601
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len
602
+ new file mode 100644
603
+ index 0000000..131e265
604
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len differ
605
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab
606
+ new file mode 100644
607
+ index 0000000..e3785e5
608
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab differ
609
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream
610
+ new file mode 100644
611
+ index 0000000..12a010f
612
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream differ
613
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len
614
+ new file mode 100644
615
+ index 0000000..5d505d8
616
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len differ
617
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len
618
+ new file mode 100644
619
+ index 0000000..911196d
620
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len differ
621
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at
622
+ new file mode 100644
623
+ index 0000000..2e6be82
624
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at differ
625
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i
626
+ new file mode 100644
627
+ index 0000000..cc5e715
628
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i differ
629
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len
630
+ new file mode 100644
631
+ index 0000000..131e265
632
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len differ
633
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin
634
+ new file mode 100644
635
+ index 0000000..55dd998
636
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin differ
637
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin
638
+ new file mode 100644
639
+ index 0000000..fc36082
640
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin differ
641
+ diff --git a/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/local-state/build-history.bin b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/local-state/build-history.bin
642
+ new file mode 100644
643
+ index 0000000..e60362e
644
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/kotlin/compileDebugKotlin/local-state/build-history.bin differ
645
+ diff --git a/node_modules/react-native-background-upload/android/build/outputs/logs/manifest-merger-debug-report.txt b/node_modules/react-native-background-upload/android/build/outputs/logs/manifest-merger-debug-report.txt
646
+ new file mode 100644
647
+ index 0000000..216b0d2
648
+ --- /dev/null
649
+ +++ b/node_modules/react-native-background-upload/android/build/outputs/logs/manifest-merger-debug-report.txt
650
+ @@ -0,0 +1,17 @@
651
+ +-- Merging decision tree log ---
652
+ +manifest
653
+ +ADDED from /Users/mohammedgufran/Desktop/Projects/RN_CLUB_YAKKA/node_modules/react-native-background-upload/android/src/main/AndroidManifest.xml:1:1-3:12
654
+ +INJECTED from /Users/mohammedgufran/Desktop/Projects/RN_CLUB_YAKKA/node_modules/react-native-background-upload/android/src/main/AndroidManifest.xml:1:1-3:12
655
+ + package
656
+ + ADDED from /Users/mohammedgufran/Desktop/Projects/RN_CLUB_YAKKA/node_modules/react-native-background-upload/android/src/main/AndroidManifest.xml:2:5-35
657
+ + INJECTED from /Users/mohammedgufran/Desktop/Projects/RN_CLUB_YAKKA/node_modules/react-native-background-upload/android/src/main/AndroidManifest.xml
658
+ + xmlns:android
659
+ + ADDED from /Users/mohammedgufran/Desktop/Projects/RN_CLUB_YAKKA/node_modules/react-native-background-upload/android/src/main/AndroidManifest.xml:1:11-69
660
+ +uses-sdk
661
+ +INJECTED from /Users/mohammedgufran/Desktop/Projects/RN_CLUB_YAKKA/node_modules/react-native-background-upload/android/src/main/AndroidManifest.xml reason: use-sdk injection requested
662
+ +INJECTED from /Users/mohammedgufran/Desktop/Projects/RN_CLUB_YAKKA/node_modules/react-native-background-upload/android/src/main/AndroidManifest.xml
663
+ +INJECTED from /Users/mohammedgufran/Desktop/Projects/RN_CLUB_YAKKA/node_modules/react-native-background-upload/android/src/main/AndroidManifest.xml
664
+ + android:targetSdkVersion
665
+ + INJECTED from /Users/mohammedgufran/Desktop/Projects/RN_CLUB_YAKKA/node_modules/react-native-background-upload/android/src/main/AndroidManifest.xml
666
+ + android:minSdkVersion
667
+ + INJECTED from /Users/mohammedgufran/Desktop/Projects/RN_CLUB_YAKKA/node_modules/react-native-background-upload/android/src/main/AndroidManifest.xml
668
+ diff --git a/node_modules/react-native-background-upload/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin b/node_modules/react-native-background-upload/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin
669
+ new file mode 100644
670
+ index 0000000..7245faf
671
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin differ
672
+ diff --git a/node_modules/react-native-background-upload/android/build/tmp/kotlin-classes/debug/META-INF/react-native-background-upload_debug.kotlin_module b/node_modules/react-native-background-upload/android/build/tmp/kotlin-classes/debug/META-INF/react-native-background-upload_debug.kotlin_module
673
+ new file mode 100644
674
+ index 0000000..9dbc290
675
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/tmp/kotlin-classes/debug/META-INF/react-native-background-upload_debug.kotlin_module differ
676
+ diff --git a/node_modules/react-native-background-upload/android/build/tmp/kotlin-classes/debug/com/vydia/RNUploader/GlobalRequestObserverDelegate.class b/node_modules/react-native-background-upload/android/build/tmp/kotlin-classes/debug/com/vydia/RNUploader/GlobalRequestObserverDelegate.class
677
+ new file mode 100644
678
+ index 0000000..750644d
679
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/tmp/kotlin-classes/debug/com/vydia/RNUploader/GlobalRequestObserverDelegate.class differ
680
+ diff --git a/node_modules/react-native-background-upload/android/build/tmp/kotlin-classes/debug/com/vydia/RNUploader/NotificationActions.class b/node_modules/react-native-background-upload/android/build/tmp/kotlin-classes/debug/com/vydia/RNUploader/NotificationActions.class
681
+ new file mode 100644
682
+ index 0000000..aaf84e5
683
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/tmp/kotlin-classes/debug/com/vydia/RNUploader/NotificationActions.class differ
684
+ diff --git a/node_modules/react-native-background-upload/android/build/tmp/kotlin-classes/debug/com/vydia/RNUploader/NotificationActionsReceiver.class b/node_modules/react-native-background-upload/android/build/tmp/kotlin-classes/debug/com/vydia/RNUploader/NotificationActionsReceiver.class
685
+ new file mode 100644
686
+ index 0000000..eca1972
687
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/tmp/kotlin-classes/debug/com/vydia/RNUploader/NotificationActionsReceiver.class differ
688
+ diff --git a/node_modules/react-native-background-upload/android/build/tmp/kotlin-classes/debug/com/vydia/RNUploader/UploaderModule.class b/node_modules/react-native-background-upload/android/build/tmp/kotlin-classes/debug/com/vydia/RNUploader/UploaderModule.class
689
+ new file mode 100644
690
+ index 0000000..43b642c
691
+ Binary files /dev/null and b/node_modules/react-native-background-upload/android/build/tmp/kotlin-classes/debug/com/vydia/RNUploader/UploaderModule.class differ
692
+ diff --git a/node_modules/react-native-background-upload/android/src/main/java/com/vydia/RNUploader/UploaderModule.kt b/node_modules/react-native-background-upload/android/src/main/java/com/vydia/RNUploader/UploaderModule.kt
693
+ index 0258e95..a119659 100644
694
+ --- a/node_modules/react-native-background-upload/android/src/main/java/com/vydia/RNUploader/UploaderModule.kt
695
+ +++ b/node_modules/react-native-background-upload/android/src/main/java/com/vydia/RNUploader/UploaderModule.kt
696
+ @@ -48,7 +48,7 @@ class UploaderModule(val reactContext: ReactApplicationContext) : ReactContextBa
697
+ params.putString("size", fileInfo.length().toString()) //use string form of long because there is no putLong and converting to int results in a max size of 17.2 gb, which could happen. Javascript will need to convert it to a number
698
+ val extension = MimeTypeMap.getFileExtensionFromUrl(path)
699
+ params.putString("extension", extension)
700
+ - val mimeType = MimeTypeMap.getSingleton().getMimeTypeFromExtension(extension.toLowerCase())
701
+ + val mimeType = MimeTypeMap.getSingleton().getMimeTypeFromExtension(extension?.lowercase())
702
+ params.putString("mimeType", mimeType)
703
+ }
704
+ promise.resolve(params)