react-native-my-uploader-android 1.0.26 → 1.0.28
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
package com.
|
|
1
|
+
package com.myuploaderandroid
|
|
2
2
|
|
|
3
3
|
import android.app.DownloadManager
|
|
4
4
|
import android.content.BroadcastReceiver
|
|
@@ -12,7 +12,7 @@ import android.util.Log
|
|
|
12
12
|
import android.webkit.CookieManager
|
|
13
13
|
import android.webkit.URLUtil
|
|
14
14
|
import com.facebook.react.bridge.*
|
|
15
|
-
import com.
|
|
15
|
+
import com.myuploaderandroid.BuildConfig
|
|
16
16
|
import java.net.HttpURLConnection
|
|
17
17
|
import java.net.URL
|
|
18
18
|
|
|
@@ -8,7 +8,7 @@ import com.facebook.react.uimanager.ViewManager
|
|
|
8
8
|
class MyUploaderPackage : ReactPackage {
|
|
9
9
|
override fun createNativeModules(reactContext: ReactApplicationContext): List<NativeModule> {
|
|
10
10
|
return listOf(
|
|
11
|
-
MyUploaderModule(reactContext)
|
|
11
|
+
MyUploaderModule(reactContext),
|
|
12
12
|
DownloadFileModule(reactContext)
|
|
13
13
|
)
|
|
14
14
|
}
|