exodus-privacy-android-app/app/src/main/AndroidManifest.xml

29 lines
1.1 KiB
XML
Raw Normal View History

2018-02-20 13:54:18 +01:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2018-12-06 18:11:08 +01:00
xmlns:tools="http://schemas.android.com/tools"
2018-02-20 13:54:18 +01:00
package="org.eu.exodus_privacy.exodusprivacy">
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<application
2018-04-14 07:57:48 +02:00
android:allowBackup="false"
2018-02-20 13:54:18 +01:00
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme"
tools:ignore="GoogleAppIndexingWarning"
android:largeHeap="true"
>
2018-02-20 13:54:18 +01:00
<activity android:name=".MainActivity"
2018-04-13 18:09:36 +02:00
android:configChanges="keyboardHidden|orientation|screenSize"
2018-02-20 13:54:18 +01:00
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>