AndroidManifest.xml 647 B

12345678910111213141516
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools">
  4. <!-- android:theme="@style/SplashTeme"-->
  5. <application>
  6. <provider
  7. android:name="androidx.core.content.FileProvider"
  8. android:authorities="${applicationId}.fileprovider"
  9. android:exported="false"
  10. android:grantUriPermissions="true">
  11. <meta-data
  12. android:name="android.support.FILE_PROVIDER_PATHS"
  13. android:resource="@xml/file_paths" />
  14. </provider>
  15. </application>
  16. </manifest>