Skip to content

Commit

Permalink
Revert "Allow installing downloaded APKs by tapping on notification"
Browse files Browse the repository at this point in the history
It seems like Google Play rejects app updates that use the
REQUEST_INSTALL_PACKAGES permission now.

This reverts commit 81e24c6.
  • Loading branch information
maniac103 committed Oct 30, 2022
1 parent 4acb91a commit f6f325e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
<!-- see http://stackoverflow.com/questions/32070670/preferencefragmentcompat-requires-preferencetheme-to-be-set -->
<uses-sdk tools:overrideLibrary="android.support.v14.preference" />

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission
android:name="android.permission.INTERNET" />
<uses-permission
android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />

<queries>
<intent>
<action android:name="android.intent.action.VIEW" />
Expand Down

0 comments on commit f6f325e

Please sign in to comment.