mirror of
https://github.com/aljazceru/Android-nRF-Toolbox.git
synced 2026-01-04 23:34:19 +01:00
28 lines
738 B
Groovy
28 lines
738 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 22
|
|
buildToolsVersion '22.0.0'
|
|
defaultConfig {
|
|
applicationId "no.nordicsemi.android.nrftoolbox"
|
|
minSdkVersion 18
|
|
targetSdkVersion 22
|
|
versionCode 31
|
|
versionName "1.13.0"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
compile 'com.android.support:appcompat-v7:22.0.0'
|
|
compile project(':..:DFULibrary:dfu')
|
|
compile files('libs/achartengine-1.1.0.jar')
|
|
compile files('libs/nrf-logger-v2.0.jar')
|
|
}
|