PrivacyBreacher/app/src/main/AndroidManifest.xml

44 lines
1.5 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="io.nandandesai.privacybreacher">
<!-- Tell the system this app requires OpenGL ES 2.0. -->
<uses-feature
android:glEsVersion="0x00020000"
android:required="true" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".AboutActivity"></activity>
<activity android:name=".PhoneInfoActivity" />
<activity android:name=".PhoneMonitorActivity" />
<activity android:name=".PhysicalMonitorActivity" />
<service
android:name=".PrivacyBreacherService"
android:enabled="true"
android:exported="true" />
<receiver
android:name=".EventReceiver"
android:enabled="true"
android:exported="true" />
<activity
android:name=".MainActivity"
android:launchMode="singleTop">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>