You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
874 B
39 lines
874 B
/**
|
|
* The default build is with CMake Plugin.
|
|
* If Android.mk build system is required, src/main/cpp/Android.mk is
|
|
* a workable, just add hooks to this file to replace cmake at the "cmake"
|
|
* location.
|
|
*/
|
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
|
|
defaultConfig {
|
|
applicationId 'org.drrickorang.loopback'
|
|
minSdkVersion 14
|
|
targetSdkVersion 26
|
|
externalNativeBuild.cmake {
|
|
arguments "-DANDROID_STL=c++_static"
|
|
}
|
|
}
|
|
|
|
externalNativeBuild {
|
|
cmake {
|
|
path 'src/main/cpp/CMakeLists.txt'
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles.add file('proguard.cfg')
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'androidx.appcompat:appcompat:1.0.0-rc02'
|
|
}
|