mirror of
https://github.com/aljazceru/Android-nRF-Toolbox.git
synced 2026-01-11 02:34:21 +01:00
30 lines
765 B
Groovy
30 lines
765 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
signingConfigs {
|
|
}
|
|
compileSdkVersion 21
|
|
buildToolsVersion "21.1.2"
|
|
defaultConfig {
|
|
applicationId "no.nordicsemi.android.nrftoolbox"
|
|
minSdkVersion 18
|
|
targetSdkVersion 21
|
|
versionCode 27
|
|
versionName "1.11.4"
|
|
}
|
|
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:21.0.3'
|
|
compile project(':..:DFULibrary:dfu')
|
|
compile files('libs/achartengine-1.1.0.jar')
|
|
compile files('libs/nrf-logger-v2.0.jar')
|
|
}
|