mirror of
https://github.com/aljazceru/Android-nRF-Toolbox.git
synced 2026-01-07 00:34:33 +01:00
29 lines
763 B
Groovy
29 lines
763 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 24
|
|
buildToolsVersion "24.0.2"
|
|
|
|
defaultConfig {
|
|
applicationId "no.nordicsemi.android.nrftoolbox"
|
|
minSdkVersion 20
|
|
targetSdkVersion 24
|
|
versionCode 51
|
|
versionName "1.18.4"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
compile 'com.google.android.support:wearable:1.4.0'
|
|
compile 'com.google.android.gms:play-services-wearable:9.2.0'
|
|
compile 'no.nordicsemi.android.support.v18:scanner:0.2.0'
|
|
compile project(':common')
|
|
}
|