From aa158ab5159ffb10552935dc2ce483cd2b2fc1b1 Mon Sep 17 00:00:00 2001 From: evlist Date: Sat, 4 Feb 2023 21:17:05 +0100 Subject: [PATCH] Adding an intent filter so that GPX can be imported from outdooractive --- AndroidManifest.xml | 94 +++++++++++++++++++++++++++++---------------- 1 file changed, 60 insertions(+), 34 deletions(-) diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 593289f..13cd677 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -1,25 +1,29 @@ - - + + + android:allowBackup="true" + android:icon="@mipmap/ic_launcher" + android:label="@string/app_name" + android:roundIcon="@mipmap/ic_launcher_round" + android:supportsRtl="true" + android:isGame="false" + android:appCategory="maps" + android:theme="@style/AppTheme" + android:usesCleartextTraffic="true" + > + android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode" + android:name="com.dyomedea.dyomedea.MainActivity" + android:label="@string/title_activity_main" + android:theme="@style/AppTheme.NoActionBarLaunch" + android:launchMode="singleTask" + android:exported="true" + > @@ -29,41 +33,63 @@ - + - + + + + + + + - - + + + android:name="androidx.core.content.FileProvider" + android:authorities="${applicationId}.fileprovider" + android:exported="false" + android:grantUriPermissions="true" + > + android:name="android.support.FILE_PROVIDER_PATHS" + android:resource="@xml/file_paths" + /> - - - - - - + + + + + +