713947e432
Signed-off-by: SlipkHunter <abrito025@gmail.com> Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
62 lines
1.6 KiB
Groovy
62 lines
1.6 KiB
Groovy
plugins {
|
|
id 'com.android.library'
|
|
}
|
|
|
|
version wireguardVersionName
|
|
group groupName
|
|
|
|
android {
|
|
compileSdk 33
|
|
ndkVersion '21.4.7075529'
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
namespace 'com.wireguard.android.tunnel'
|
|
defaultConfig {
|
|
minSdkVersion 21
|
|
targetSdkVersion 31
|
|
versionCode wireguardVersionCode
|
|
versionName wireguardVersionName
|
|
}
|
|
externalNativeBuild {
|
|
cmake {
|
|
path 'tools/CMakeLists.txt'
|
|
}
|
|
}
|
|
testOptions.unitTests.all {
|
|
testLogging {
|
|
events 'passed', 'skipped', 'failed', 'standardOut', 'standardError'
|
|
}
|
|
}
|
|
buildTypes {
|
|
release {
|
|
externalNativeBuild {
|
|
cmake {
|
|
arguments "-DANDROID_PACKAGE_NAME=${groupName}", "-DGRADLE_USER_HOME=${project.gradle.gradleUserHomeDir}"
|
|
}
|
|
}
|
|
}
|
|
debug {
|
|
externalNativeBuild {
|
|
cmake {
|
|
arguments "-DANDROID_PACKAGE_NAME=${groupName}.debug", "-DGRADLE_USER_HOME=${project.gradle.gradleUserHomeDir}"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
lintOptions {
|
|
disable('LongLogTag')
|
|
disable('NewApi') // Desugaring!
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation "androidx.annotation:annotation:$annotationsVersion"
|
|
implementation "androidx.collection:collection:$collectionVersion"
|
|
compileOnly "com.google.code.findbugs:jsr305:$jsr305Version"
|
|
testImplementation "junit:junit:$junitVersion"
|
|
}
|
|
|
|
apply from: "publish.gradle"
|