diff options
author | cyBerta <cyberta@riseup.net> | 2020-12-28 00:47:19 +0100 |
---|---|---|
committer | cyBerta <cyberta@riseup.net> | 2020-12-28 00:47:19 +0100 |
commit | c008a935f92b79cb7b6f649fc876d398e20ebb22 (patch) | |
tree | 6aed01587d06016eaeaf023952580e37b6516e4f /app/src/fatweb/AndroidManifest.xml | |
parent | 8efd199a90e6d9388400b19e9fc6b68c81284f11 (diff) |
download apk, request permission and install app update
Diffstat (limited to 'app/src/fatweb/AndroidManifest.xml')
-rw-r--r-- | app/src/fatweb/AndroidManifest.xml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/app/src/fatweb/AndroidManifest.xml b/app/src/fatweb/AndroidManifest.xml index 5188b05b..28246e5f 100644 --- a/app/src/fatweb/AndroidManifest.xml +++ b/app/src/fatweb/AndroidManifest.xml @@ -39,10 +39,6 @@ <action android:name="android.intent.action.PACKAGE_INSTALL"/> <data android:scheme="package"/> </intent-filter> - <intent-filter> - <action android:name="android.intent.action.PACKAGE_INSTALL"/> - <data android:scheme="package"/> - </intent-filter> </receiver> <provider android:name="androidx.core.content.FileProvider" @@ -53,6 +49,9 @@ <meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/file_provider_paths" /> </provider> + <activity + android:name=".appUpdate.InstallActivity" + android:theme="@style/invisibleTheme" /> </application> |