Update AndroidManifest.xml
Explicit permission to fetch API from Radioid Signed-off-by: rohithzmoi <166651631+rohithzmoi@users.noreply.github.com>
This commit is contained in:
parent
db0babe508
commit
a7161d8b79
|
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
<supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:smallScreens="true"/>
|
<supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:smallScreens="true"/>
|
||||||
|
|
||||||
<application android:name="org.qtproject.qt.android.bindings.QtApplication" android:hardwareAccelerated="true" android:label="-- %%INSERT_APP_NAME%% --" android:requestLegacyExternalStorage="true" android:allowBackup="true" android:fullBackupOnly="false" android:icon="@drawable/icon">
|
<application android:name="org.qtproject.qt.android.bindings.QtApplication" android:hardwareAccelerated="true" android:label="-- %%INSERT_APP_NAME%% --" android:requestLegacyExternalStorage="true" android:allowBackup="true" android:fullBackupOnly="false" android:icon="@drawable/icon" android:networkSecurityConfig="@xml/network_security_config" android:usesCleartextTraffic="false" >
|
||||||
|
|
||||||
<activity android:name="org.qtproject.qt.android.bindings.QtActivity" android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|layoutDirection|locale|fontScale|keyboard|keyboardHidden|navigation|mcc|mnc|density" android:launchMode="singleTop" android:screenOrientation="unspecified" android:exported="true" android:label="Droidstar DMR" android:theme="@style/splashScreenTheme" android:alwaysRetainTaskState="true">
|
<activity android:name="org.qtproject.qt.android.bindings.QtActivity" android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|layoutDirection|locale|fontScale|keyboard|keyboardHidden|navigation|mcc|mnc|density" android:launchMode="singleTop" android:screenOrientation="unspecified" android:exported="true" android:label="Droidstar DMR" android:theme="@style/splashScreenTheme" android:alwaysRetainTaskState="true">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
|
|
@ -30,19 +30,16 @@
|
||||||
<meta-data android:name="android.app.splash_screen_drawable" android:resource="@drawable/splashscreen"/>
|
<meta-data android:name="android.app.splash_screen_drawable" android:resource="@drawable/splashscreen"/>
|
||||||
<meta-data android:name="android.app.splash_screen_drawable_portrait" android:resource="@drawable/splashscreen_port"/>
|
<meta-data android:name="android.app.splash_screen_drawable_portrait" android:resource="@drawable/splashscreen_port"/>
|
||||||
<meta-data android:name="android.app.splash_screen_drawable_landscape" android:resource="@drawable/splashscreen_land"/>
|
<meta-data android:name="android.app.splash_screen_drawable_landscape" android:resource="@drawable/splashscreen_land"/>
|
||||||
|
<meta-data android:name="android.app.splash_screen_drawable" android:resource="@drawable/splashscreen"/>
|
||||||
|
<meta-data android:name="android.app.splash_screen_drawable_portrait" android:resource="@drawable/splashscreen_port"/>
|
||||||
|
<meta-data android:name="android.app.splash_screen_drawable_landscape" android:resource="@drawable/splashscreen_land"/>
|
||||||
</activity>
|
</activity>
|
||||||
|
|
||||||
<!-- Ensure the service is not stopped when the app is backgrounded -->
|
<!-- Ensure the service is not stopped when the app is backgrounded -->
|
||||||
<service android:name=".YourForegroundService" android:exported="false" android:stopWithTask="false"/>
|
<service android:name=".YourForegroundService" android:exported="false" android:stopWithTask="false"/>
|
||||||
|
|
||||||
<provider
|
<provider android:name="androidx.core.content.FileProvider" android:authorities="${applicationId}.qtprovider;com.dmr.droidstardmr.fileprovider" android:exported="false" android:grantUriPermissions="true">
|
||||||
android:name="androidx.core.content.FileProvider"
|
<meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/qtprovider_paths"/>
|
||||||
android:authorities="${applicationId}.qtprovider;com.dmr.droidstardmr.fileprovider"
|
|
||||||
android:exported="false"
|
|
||||||
android:grantUriPermissions="true">
|
|
||||||
<meta-data
|
|
||||||
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
||||||
android:resource="@xml/qtprovider_paths"/>
|
|
||||||
|
|
||||||
</provider>
|
</provider>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue