| apply plugin: 'com.android.model.application' |
| |
| model { |
| android { |
| compileSdkVersion 23 |
| buildToolsVersion "23.0.2" |
| |
| defaultConfig { |
| applicationId "io.v.example.vbeam.vbeamexample" |
| minSdkVersion.apiLevel 21 |
| targetSdkVersion.apiLevel 23 |
| versionCode 1 |
| versionName "1.0" |
| } |
| buildTypes { |
| release { |
| minifyEnabled false |
| proguardFiles.add(file('proguard-rules.pro')) |
| ndk { |
| debuggable true |
| } |
| } |
| } |
| } |
| } |
| |
| dependencies { |
| compile fileTree(dir: 'libs', include: ['*.jar']) |
| testCompile 'junit:junit:4.12' |
| compile 'com.android.support:appcompat-v7:23.1.1' |
| compile 'com.android.support:design:23.1.1' |
| compile 'io.v:vanadium-android:9.9' |
| } |