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