12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- apply plugin: 'com.android.application'
- android {
- compileSdkVersion 28
- buildToolsVersion = '28.0.3'
- defaultConfig {
- applicationId "org.iotivity.onboardingtool"
- minSdkVersion 21
- targetSdkVersion 26
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- jniDebuggable true
- debuggable true
- }
- }
- sourceSets {
- main {
- jniLibs.srcDirs = ["src/main/jniLibs", "$buildDir/native-libs"]
- }
- }
- splits {
- abi {
- enable true
- reset()
- include 'x86', 'x86_64', 'armeabi-v7a', 'arm64-v8a'
- universalApk false
- }
- }
- }
- dependencies {
- implementation 'com.android.support:appcompat-v7:28.0.0'
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
- exclude group: 'com.android.support', module: 'support-annotations'
- })
- //testCompile 'junit:junit:4.12'
- compile files('libs/iotivity-lite.jar')
- }
|