1
0
mirror of https://github.com/PurpleI2P/i2pd-android.git synced 2025-01-10 06:48:02 +00:00
i2pd-android/app/build.gradle

89 lines
2.1 KiB
Groovy
Raw Normal View History

2020-06-06 00:51:41 +00:00
plugins {
id 'com.android.application'
}
dependencies {
implementation 'androidx.core:core:1.3.0'
2020-06-06 00:51:41 +00:00
}
android {
compileSdkVersion 29
buildToolsVersion "28.0.3"
2020-06-06 02:27:29 +00:00
2020-06-06 00:51:41 +00:00
defaultConfig {
applicationId "org.purplei2p.i2pd"
targetSdkVersion 29
minSdkVersion 14
versionCode 23300
versionName "2.33.0-63-g2648f1ba"
2020-06-06 00:51:41 +00:00
setProperty("archivesBaseName", archivesBaseName + "-" + versionName)
2020-06-06 02:27:29 +00:00
2020-06-06 00:51:41 +00:00
ndk {
abiFilters 'armeabi-v7a'
abiFilters 'x86'
2020-06-06 02:27:29 +00:00
abiFilters 'arm64-v8a'
abiFilters 'x86_64'
2020-06-06 00:51:41 +00:00
}
2020-06-06 02:27:29 +00:00
2020-06-06 00:51:41 +00:00
externalNativeBuild {
ndkBuild {
2020-06-06 02:27:29 +00:00
arguments "NDK_MODULE_PATH:=${rootProject.projectDir}/app/jni"
2020-06-06 00:51:41 +00:00
arguments "-j3"
}
}
}
2020-06-06 02:27:29 +00:00
2020-06-06 00:51:41 +00:00
splits {
abi {
// change that to true if you need splitted apk
enable true
reset()
2020-06-06 02:27:29 +00:00
include "armeabi-v7a", "arm64-v8a", "x86", "x86_64"
2020-06-06 00:51:41 +00:00
universalApk true
}
}
2020-06-06 02:27:29 +00:00
2020-06-06 00:51:41 +00:00
signingConfigs {
release {
storeFile file('i2pdapk.jks')
2020-06-06 00:51:41 +00:00
storePassword "android"
keyAlias "i2pdapk"
keyPassword "android"
}
}
2020-06-06 02:27:29 +00:00
2020-06-06 00:51:41 +00:00
buildTypes {
release {
signingConfig signingConfigs.release
2020-06-06 00:51:41 +00:00
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt'
}
debug {
jniDebuggable = true
}
2020-06-06 00:51:41 +00:00
}
2020-06-06 02:27:29 +00:00
2020-06-06 00:51:41 +00:00
externalNativeBuild {
ndkBuild {
path './jni/Android.mk'
}
}
2020-06-06 02:27:29 +00:00
2020-06-06 00:51:41 +00:00
compileOptions {
sourceCompatibility = "1.8"
targetCompatibility = "1.8"
2020-06-06 00:51:41 +00:00
}
}
ext.abiCodes = ['armeabi-v7a':1, 'x86':2, 'arm64-v8a':3, 'x86_64':4]
import com.android.build.OutputFile
android.applicationVariants.all { variant ->
variant.outputs.each { output ->
def baseAbiVersionCode = project.ext.abiCodes.get(output.getFilter(OutputFile.ABI))
if (baseAbiVersionCode != null) {
output.versionCodeOverride = baseAbiVersionCode + variant.versionCode
}
}
}