34 lines
679 B
Groovy
34 lines
679 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 19
|
|
buildToolsVersion "28.0.3"
|
|
|
|
externalNativeBuild {
|
|
ndkBuild {
|
|
path "src/main/jni/Android.mk"
|
|
}
|
|
|
|
cmake {
|
|
version "3.10.2"
|
|
}
|
|
}
|
|
|
|
defaultConfig {
|
|
applicationId "com.hardkernel.odroid.weatherboard"
|
|
minSdkVersion 19
|
|
targetSdkVersion 19
|
|
|
|
ndk {
|
|
moduleName "weather"
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
}
|
|
}
|
|
}
|