Nenhuma descrição

AndroidManifest.xml 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2. package="com.RNFetchBlob">
  3. <!-- Required to access Google Play Licensing -->
  4. <uses-permission android:name="com.android.vending.CHECK_LICENSE" />
  5. <!-- Required to download files from Google Play -->
  6. <uses-permission android:name="android.permission.INTERNET" />
  7. <!-- Required to keep CPU alive while downloading files
  8. (NOT to keep screen awake) -->
  9. <uses-permission android:name="android.permission.WAKE_LOCK" />
  10. <!-- Required to poll the state of the network connection
  11. and respond to changes -->
  12. <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
  13. <!-- Required to check whether Wi-Fi is enabled -->
  14. <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
  15. <!-- Required to read and write the expansion files on shared storage -->
  16. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  17. <application android:label="@string/app_name">
  18. <provider
  19. android:name="com.RNFetchBlob.Utils.FileProvider"
  20. android:authorities="${applicationId}.provider"
  21. android:exported="false"
  22. android:grantUriPermissions="true">
  23. <meta-data
  24. android:name="android.support.FILE_PROVIDER_PATHS"
  25. android:resource="@xml/provider_paths" />
  26. </provider>
  27. </application>
  28. </manifest>