Unit tests for android extension of resource contianer
[platform/upstream/iotivity.git] / service / resource-container / examples / android / AndroidBundle / app / build.gradle
1 apply plugin: 'com.android.application'
2
3 android {
4     compileSdkVersion 23
5     buildToolsVersion "22.0.1"
6
7     defaultConfig {
8         applicationId "org.iotivity.service.sample.androidbundle"
9         minSdkVersion 21
10         targetSdkVersion 23
11         versionCode 1
12         versionName "1.0"
13     }
14     buildTypes {
15         release {
16             minifyEnabled false
17             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
18         }
19     }
20 }
21
22 dependencies {
23     compile fileTree(dir: 'libs', include: ['*.jar'])
24     compile(name:'iotivity-armeabi-v7a-resource-container-release', ext:'aar')
25 }