| apply plugin: 'com.android.application' |
| |
| android { |
| compileSdkVersion 23 |
| buildToolsVersion "23.0.3" |
| |
| defaultConfig { |
| applicationId "io.v.vango" |
| minSdkVersion 22 |
| targetSdkVersion 22 |
| versionCode 1 |
| versionName "1.0" |
| multiDexEnabled true |
| } |
| buildTypes { |
| release { |
| minifyEnabled false |
| proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' |
| } |
| } |
| } |
| |
| dependencies { |
| compile fileTree(dir: 'libs', include: ['*.jar']) |
| testCompile 'junit:junit:4.12' |
| compile 'com.android.support:appcompat-v7:23.3.0' |
| compile 'com.android.support:design:23.3.0' |
| compile 'io.v:vanadium-android:+' |
| compile 'com.android.support:multidex:1.0.0' |
| if (new File('../../../../../experimental/projects/android-ble/build/outputs/aar/android-ble-release.aar').exists()) { |
| compile(name:'android-ble-release', ext:'aar') |
| } |
| } |