summaryrefslogtreecommitdiff
path: root/app/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorJavier <dev.git@javispedro.com>2020-02-16 22:18:38 +0100
committerJavier <dev.git@javispedro.com>2020-02-16 22:18:38 +0100
commit0a72437088b3e8387aa6ab77e20293bc2385788a (patch)
treed9add727dee224eda5d4d4823a08ce14e37f107f /app/src/main/AndroidManifest.xml
parente88fb30dd01e64a0b2bfd1baec949b1836772fc0 (diff)
downloadvndroid-0a72437088b3e8387aa6ab77e20293bc2385788a.tar.gz
vndroid-0a72437088b3e8387aa6ab77e20293bc2385788a.zip
update to sdk 29, migrate to androidx, new GUI
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r--app/src/main/AndroidManifest.xml10
1 files changed, 6 insertions, 4 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index 5786f0f..2ad6c82 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -12,7 +12,10 @@
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
- <activity android:name=".SetupActivity">
+
+ <activity
+ android:name=".SettingsActivity"
+ android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
@@ -22,8 +25,8 @@
<service
android:name=".ServerService"
android:enabled="true"
- android:exported="true" />
-
+ android:exported="true"
+ android:foregroundServiceType="mediaProjection" />
<service
android:name=".ControlService"
android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE">
@@ -35,7 +38,6 @@
android:name="android.accessibilityservice"
android:resource="@xml/controlservice" />
</service>
-
</application>
</manifest> \ No newline at end of file