Nagram/ssr-libev/build.gradle

32 lines
640 B
Groovy
Raw Normal View History

2020-06-25 04:14:31 +00:00
plugins {
id 'com.android.library'
}
android {
2020-07-27 04:49:42 +00:00
compileSdkVersion 30
2021-02-17 06:28:33 +00:00
buildToolsVersion '30.0.3'
ndkVersion "21.3.6528147"
2020-06-25 04:14:31 +00:00
defaultConfig {
minSdkVersion 16
targetSdkVersion 29
versionCode 1
versionName "1.0"
externalNativeBuild {
ndkBuild {
abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
arguments "NDK_APPLICATION_MK:=src/main/jni/Application.mk", "APP_PLATFORM:=android-21", "--jobs=8"
}
}
}
externalNativeBuild {
ndkBuild {
path 'src/main/jni/Android.mk'
}
}
}