summaryrefslogtreecommitdiff
path: root/remoteExample/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'remoteExample/build.gradle')
-rw-r--r--remoteExample/build.gradle13
1 files changed, 9 insertions, 4 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 {