2018-05-14 15:20:36 +00:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
|
|
|
|
android {
|
2018-05-29 01:49:20 +00:00
|
|
|
compileSdkVersion 27
|
2018-05-14 15:20:36 +00:00
|
|
|
defaultConfig {
|
2018-05-29 01:49:20 +00:00
|
|
|
minSdkVersion 16
|
|
|
|
targetSdkVersion 27
|
2018-05-14 15:20:36 +00:00
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
androidTest.assets.srcDirs += '../../../../fixtures'
|
|
|
|
}
|
2018-05-29 01:49:20 +00:00
|
|
|
|
|
|
|
// TODO silences:
|
|
|
|
// [InvalidPackage]: not included in Android: java.awt. Referenced from com.sun.jna.Native.AWT.
|
|
|
|
lintOptions {
|
|
|
|
abortOnError false
|
|
|
|
}
|
2018-05-14 15:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
|
|
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
|
|
})
|
2018-05-29 01:49:20 +00:00
|
|
|
androidTestImplementation 'com.android.support:support-annotations:27.1.1'
|
|
|
|
androidTestImplementation 'com.android.support.test:runner:1.0.2'
|
|
|
|
androidTestImplementation 'com.android.support.test:rules:1.0.2'
|
|
|
|
implementation 'com.android.support:appcompat-v7:27.1.1'
|
|
|
|
implementation 'com.android.support.constraint:constraint-layout:1.1.0'
|
|
|
|
implementation 'com.android.support:design:27.1.1'
|
2018-05-14 15:20:36 +00:00
|
|
|
testImplementation 'junit:junit:4.12'
|
2018-05-29 01:49:20 +00:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
2018-05-14 15:20:36 +00:00
|
|
|
implementation 'net.java.dev.jna:jna:4.5.1'
|
|
|
|
}
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|