6de1c93e54
Added a macro that creates the IDE files for a named test. This is just a rough layout and will only work for the simpelest of test targets.
27 lines
548 B
Groovy
27 lines
548 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 25
|
|
|
|
defaultConfig {
|
|
applicationId 'org.fltk.@ANDROID_APP_NAME@'
|
|
minSdkVersion 14
|
|
targetSdkVersion 25
|
|
externalNativeBuild {
|
|
cmake {
|
|
arguments '-DANDROID_STL=c++_shared'
|
|
}
|
|
}
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
}
|
|
}
|
|
externalNativeBuild {
|
|
cmake {
|
|
path 'src/main/cpp/CMakeLists.txt'
|
|
}
|
|
}
|
|
}
|