AndroidManifest.xml 805 B

1234567891011121314151617
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" package="com.lemonjk.uni_modules.lemon_filepicker">
  3. <application android:requestLegacyExternalStorage="true">
  4. <meta-data android:name="ScopedStorage" android:value="true" />
  5. <activity android:name="uts.sdk.modules.lemonFilePicker.FileActivity" android:exported="true" tools:ignore="AppLinkUrlError" >
  6. <intent-filter>
  7. <action android:name="android.intent.action.VIEW" />
  8. <category android:name="android.intent.category.DEFAULT" />
  9. <data android:mimeType="*/*" />
  10. <data android:host="*" />
  11. <data android:scheme="file" />
  12. <data android:scheme="content" />
  13. </intent-filter>
  14. </activity>
  15. </application>
  16. </manifest>