Import bloated FileProvider from androidx

pull/317/head
Georg Lukas 2021-09-27 17:03:37 +02:00
rodzic 52a8c56c12
commit 1ccaac45be
3 zmienionych plików z 15 dodań i 0 usunięć

Wyświetl plik

@ -164,5 +164,15 @@
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
</receiver>
<!-- file provider for exported logs and similar things -->
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="org.aprsdroid.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
</application>
</manifest>

Wyświetl plik

@ -163,6 +163,8 @@ dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.google.android.gms:play-services-maps:17.0.0'
implementation 'com.google.maps.android:android-maps-utils:0.5'
implementation 'androidx.core:core:1.6.0'
implementation 'com.squareup.okio:okio:2.1.0'
androidTestImplementation 'com.android.support.test:runner:1.0.2'

Wyświetl plik

@ -0,0 +1,3 @@
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-path name="APRSdroid" path="Documents/APRSdroid" />
</paths>