diff options
author | pacien | 2023-01-02 01:18:36 +0100 |
---|---|---|
committer | pacien | 2023-01-02 01:18:40 +0100 |
commit | 26cce68d6a3441154555228192308d519aa4c644 (patch) | |
tree | 08525a97cccb6eb144143f1f6988b8ab04eb2d0d /app | |
parent | ad6b9f97570a21b00852631797fb3857bc6ecb23 (diff) | |
download | tincapp-26cce68d6a3441154555228192308d519aa4c644.tar.gz |
deps: target sdk 30 -> 32
The Google Play Store requires targetting >=API 31.
Diffstat (limited to 'app')
-rw-r--r-- | app/build.gradle | 6 | ||||
-rw-r--r-- | app/src/main/AndroidManifest.xml | 11 |
2 files changed, 10 insertions, 7 deletions
diff --git a/app/build.gradle b/app/build.gradle index 7530fa3..89a3299 100644 --- a/app/build.gradle +++ b/app/build.gradle | |||
@@ -1,6 +1,6 @@ | |||
1 | /* | 1 | /* |
2 | * Tinc App, an Android binding and user interface for the tinc mesh VPN daemon | 2 | * Tinc App, an Android binding and user interface for the tinc mesh VPN daemon |
3 | * Copyright (C) 2017-2021 Pacien TRAN-GIRARD | 3 | * Copyright (C) 2017-2023 Pacien TRAN-GIRARD |
4 | * | 4 | * |
5 | * This program is free software: you can redistribute it and/or modify | 5 | * This program is free software: you can redistribute it and/or modify |
6 | * it under the terms of the GNU General Public License as published by | 6 | * it under the terms of the GNU General Public License as published by |
@@ -30,12 +30,12 @@ def keystoreProperties = new Properties() | |||
30 | if (keystoreAvailable) keystoreProperties.load(new FileInputStream(keystorePropertiesFile)) | 30 | if (keystoreAvailable) keystoreProperties.load(new FileInputStream(keystorePropertiesFile)) |
31 | 31 | ||
32 | android { | 32 | android { |
33 | compileSdkVersion 30 | 33 | compileSdkVersion 32 |
34 | 34 | ||
35 | defaultConfig { | 35 | defaultConfig { |
36 | applicationId 'org.pacien.tincapp' | 36 | applicationId 'org.pacien.tincapp' |
37 | minSdkVersion 21 | 37 | minSdkVersion 21 |
38 | targetSdkVersion 30 | 38 | targetSdkVersion 32 |
39 | multiDexEnabled true | 39 | multiDexEnabled true |
40 | versionCode 33 | 40 | versionCode 33 |
41 | versionName '0.33' | 41 | versionName '0.33' |
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index c98555f..662af62 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml | |||
@@ -2,7 +2,7 @@ | |||
2 | 2 | ||
3 | <!-- | 3 | <!-- |
4 | * Tinc App, an Android binding and user interface for the tinc mesh VPN daemon | 4 | * Tinc App, an Android binding and user interface for the tinc mesh VPN daemon |
5 | * Copyright (C) 2017-2020 Pacien TRAN-GIRARD | 5 | * Copyright (C) 2017-2023 Pacien TRAN-GIRARD |
6 | * | 6 | * |
7 | * This program is free software: you can redistribute it and/or modify | 7 | * This program is free software: you can redistribute it and/or modify |
8 | * it under the terms of the GNU General Public License as published by | 8 | * it under the terms of the GNU General Public License as published by |
@@ -46,7 +46,8 @@ | |||
46 | <activity | 46 | <activity |
47 | android:name=".activities.start.StartActivity" | 47 | android:name=".activities.start.StartActivity" |
48 | android:configChanges="orientation|screenSize" | 48 | android:configChanges="orientation|screenSize" |
49 | android:label="@string/app_name"> | 49 | android:label="@string/app_name" |
50 | android:exported="true"> | ||
50 | <intent-filter> | 51 | <intent-filter> |
51 | <action android:name="android.intent.action.MAIN" /> | 52 | <action android:name="android.intent.action.MAIN" /> |
52 | <category android:name="android.intent.category.LAUNCHER" /> | 53 | <category android:name="android.intent.category.LAUNCHER" /> |
@@ -65,7 +66,8 @@ | |||
65 | 66 | ||
66 | <activity | 67 | <activity |
67 | android:name=".activities.status.StatusActivity" | 68 | android:name=".activities.status.StatusActivity" |
68 | android:configChanges="orientation|screenSize"> | 69 | android:configChanges="orientation|screenSize" |
70 | android:exported="true"> | ||
69 | <intent-filter> | 71 | <intent-filter> |
70 | <action android:name="org.pacien.tincapp.intent.action.DISCONNECT" /> | 72 | <action android:name="org.pacien.tincapp.intent.action.DISCONNECT" /> |
71 | <category android:name="android.intent.category.DEFAULT" /> | 73 | <category android:name="android.intent.category.DEFAULT" /> |
@@ -78,7 +80,8 @@ | |||
78 | 80 | ||
79 | <service | 81 | <service |
80 | android:name="org.pacien.tincapp.service.TincVpnService" | 82 | android:name="org.pacien.tincapp.service.TincVpnService" |
81 | android:permission="android.permission.BIND_VPN_SERVICE"> | 83 | android:permission="android.permission.BIND_VPN_SERVICE" |
84 | android:exported="true"> | ||
82 | <intent-filter> | 85 | <intent-filter> |
83 | <action android:name="android.net.VpnService" /> | 86 | <action android:name="android.net.VpnService" /> |
84 | </intent-filter> | 87 | </intent-filter> |