NekoX/ssr-libev/build.gradle

32 lines
652 B
Groovy
Raw Normal View History

2020-06-25 06:14:31 +02:00
plugins {
id 'com.android.library'
}
android {
2020-07-27 06:49:42 +02:00
compileSdkVersion 30
2021-02-17 07:28:33 +01:00
buildToolsVersion '30.0.3'
2021-02-18 03:32:07 +01:00
ndkVersion rootProject.ext.ndkVersion
2020-06-25 06:14:31 +02: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'
}
}
}