diff options
author | cyBerta <cyberta@riseup.net> | 2023-10-29 15:58:52 +0100 |
---|---|---|
committer | cyBerta <cyberta@riseup.net> | 2023-10-29 15:58:52 +0100 |
commit | 50defeaff2a8468ee44db7e09752e334e4d1ba2c (patch) | |
tree | cca77a33f5b3266b9b0462136057ae47f6b146d4 /remoteExample | |
parent | 45f67a08b481f2f727556a36e28d17a3f68d435a (diff) | |
parent | 87aac67b611f616aebfb722679b40e3f49576f01 (diff) |
Merge branch 'schwabe_master' into ssh_new_master
Diffstat (limited to 'remoteExample')
-rw-r--r-- | remoteExample/build.gradle | 13 | ||||
-rw-r--r-- | remoteExample/src/main/AndroidManifest.xml | 4 |
2 files changed, 11 insertions, 6 deletions
diff --git a/remoteExample/build.gradle b/remoteExample/build.gradle index 453dd529..179555bb 100644 --- a/remoteExample/build.gradle +++ b/remoteExample/build.gradle @@ -3,18 +3,23 @@ * Distributed under the GNU GPL v2 with additional terms. For full terms see the file doc/LICENSE.txt */ -apply plugin: 'com.android.application' - +plugins { + alias libs.plugins.android.application +} android { - compileSdkVersion 30 + compileSdkVersion 33 defaultConfig { minSdkVersion 15 - targetSdkVersion 30 + targetSdkVersion 33 versionCode 1 versionName "1.0" } + namespace 'de.blinkt.openvpn.remote' + buildFeatures { + aidl true + } } dependencies { diff --git a/remoteExample/src/main/AndroidManifest.xml b/remoteExample/src/main/AndroidManifest.xml index 8ba7ec79..311afc12 100644 --- a/remoteExample/src/main/AndroidManifest.xml +++ b/remoteExample/src/main/AndroidManifest.xml @@ -4,8 +4,7 @@ ~ Distributed under the GNU GPL v2 with additional terms. For full terms see the file doc/LICENSE.txt --> -<manifest xmlns:android="http://schemas.android.com/apk/res/android" - package="de.blinkt.openvpn.remote" > +<manifest xmlns:android="http://schemas.android.com/apk/res/android"> <uses-permission android:name="android.permission.INTERNET" /> @@ -17,6 +16,7 @@ android:label="@string/app_name" android:theme="@style/AppTheme" > <activity + android:exported="true" android:name="de.blinkt.openvpn.remote.MainActivity" android:label="@string/app_name" > <intent-filter> |