mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2024-11-07 19:27:36 +01:00
29 lines
1.1 KiB
XML
29 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="org.sdrpp.sdrpp">
|
|
|
|
<application
|
|
android:label="SDR++"
|
|
android:allowBackup="false"
|
|
android:fullBackupContent="false"
|
|
android:hasCode="true">
|
|
|
|
<activity
|
|
android:name="org.sdrpp.sdrpp.MainActivity"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
|
|
android:configChanges="orientation|keyboardHidden|screenSize">
|
|
<meta-data android:name="android.app.lib_name" android:value="sdrpp_core" />
|
|
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
</manifest>
|