109 lines
3.7 KiB
Groovy
109 lines
3.7 KiB
Groovy
def localProperties = new Properties()
|
|
def localPropertiesFile = rootProject.file('local.properties')
|
|
if (localPropertiesFile.exists()) {
|
|
localPropertiesFile.withReader('UTF-8') { reader ->
|
|
localProperties.load(reader)
|
|
}
|
|
}
|
|
|
|
def flutterRoot = localProperties.getProperty('flutter.sdk')
|
|
if (flutterRoot == null) {
|
|
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
|
|
}
|
|
|
|
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
|
|
if (flutterVersionCode == null) {
|
|
flutterVersionCode = '1'
|
|
}
|
|
|
|
def flutterVersionName = localProperties.getProperty('flutter.versionName')
|
|
if (flutterVersionName == null) {
|
|
flutterVersionName = '1.0'
|
|
}
|
|
|
|
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-parcelize'
|
|
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
|
|
|
|
android {
|
|
compileSdk 34
|
|
ndkVersion flutter.ndkVersion
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = '1.8'
|
|
}
|
|
|
|
sourceSets {
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
main.jniLibs.srcDirs = ['libs', 'src/main/jniLibs']
|
|
}
|
|
|
|
defaultConfig {
|
|
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
|
|
applicationId "com.vpntunnel.vpnzeus"
|
|
// You can update the following values to match your application needs.
|
|
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-build-configuration.
|
|
minSdkVersion 28
|
|
//noinspection ExpiredTargetSdkVersion
|
|
// targetSdkVersion 34
|
|
compileSdk 34
|
|
versionCode flutterVersionCode.toInteger()
|
|
versionName flutterVersionName
|
|
// ndk {
|
|
// abiFilters 'armeabi', 'armeabi-v7a', 'arm64-v8a', 'x86', "x86_64"
|
|
// }
|
|
// dexOptions {
|
|
// incremental true
|
|
// javaMaxHeapSize "4g"
|
|
// preDexLibraries true
|
|
// dexInProcess = true
|
|
// }
|
|
ndk {
|
|
if (!project.hasProperty('target-platform')) {
|
|
abiFilters 'arm64-v8a', 'armeabi-v7a', 'x86_64'
|
|
} else {
|
|
def platforms = project.property('target-platform').split(',')
|
|
def platformMap = [
|
|
'android-arm' : 'armeabi-v7a',
|
|
'android-arm64': 'arm64-v8a',
|
|
'android-x86' : 'x86',
|
|
'android-x64' : 'x86_64',
|
|
]
|
|
abiFilters = platforms.stream().map({ e ->
|
|
platformMap.containsKey(e) ? platformMap[e] : e
|
|
}).toArray()
|
|
}
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
// TODO: Add your own signing config for the release build.
|
|
// Signing with the debug keys for now, so `flutter run --release` works.
|
|
signingConfig signingConfigs.debug
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
flutter {
|
|
source '../..'
|
|
}
|
|
|
|
dependencies {
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
implementation "com.jakewharton.timber:timber:5.0.1"
|
|
implementation 'androidx.work:work-runtime-ktx:2.7.1'
|
|
implementation 'androidx.preference:preference-ktx:1.2.0'
|
|
implementation "dnsjava:dnsjava:3.5.1"
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.6.4"
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4"
|
|
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1"
|
|
}
|