apply plugin: 'com.android.application'
|
|
android {
|
compileSdkVersion 26
|
defaultConfig {
|
minSdkVersion 21
|
targetSdkVersion 26
|
versionCode 1
|
versionName "1.0"
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
ndk {
|
abiFilters 'armeabi'
|
}
|
}
|
buildTypes {
|
release {
|
minifyEnabled false
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
}
|
}
|
}
|
|
repositories {
|
flatDir {
|
dirs 'libs'
|
}
|
}
|
|
dependencies {
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
implementation 'com.android.support:appcompat-v7:26.1.0'
|
androidTestCompile('com.android.support:support-annotations:26.1.0') {
|
force = true
|
}
|
implementation 'com.android.support:design:26.1.0'
|
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
|
testImplementation 'junit:junit:4.12'
|
androidTestImplementation 'com.android.support.test:runner:1.0.2'
|
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
|
//rxjava
|
compile 'io.reactivex.rxjava2:rxjava:2.1.13'
|
compile 'io.reactivex.rxjava2:rxandroid:2.0.2'
|
// implementation 'com.alfeye:serialdevicelib:1.0.1-beta8'
|
//butterknife
|
compile 'com.jakewharton:butterknife:8.8.1'
|
compile(name: 'SerialDeviceLib-release', ext: 'aar')
|
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
|
implementation project(':iolibrary')
|
// implementation files('libs/com.alfeye.io.jar') com.alfeye.a1io
|
}
|