Skip to content

Commit 479afca

Browse files
committed
Update to Android v30
This is required to publish updates on the Play store. Unfortunately, v30 includes a restriction on querying installed apps, which may cause us problems - we use these queries to detect the play store and other installed browsers, since this affects the behaviour of the 'test connection' button, Play store detection, and the 'pick target app' setting for the VPN.
1 parent 6ba9b09 commit 479afca

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ android {
99
defaultConfig {
1010
applicationId "tech.httptoolkit.android.v1"
1111
minSdkVersion 21
12-
targetSdkVersion 29
12+
targetSdkVersion 30
1313
versionCode 22
1414
versionName "1.3.2"
1515

app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
99
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
1010
<uses-permission android:name="android.permission.CAMERA" />
11+
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
1112

1213
<uses-permission
1314
android:name="android.permission.READ_PHONE_STATE"

0 commit comments

Comments
 (0)