46 lines
1.3 KiB
Groovy
46 lines
1.3 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion xversions.compileSdk
|
|
defaultConfig {
|
|
applicationId "com.slightech.mynteye.demo"
|
|
minSdkVersion xversions.minSdk
|
|
targetSdkVersion xversions.targetSdk
|
|
versionCode 1
|
|
versionName "1.0"
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
ndk {
|
|
abiFilters xabis
|
|
}
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.1.0-alpha01'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha3'
|
|
|
|
implementation 'com.jakewharton.timber:timber:4.7.1'
|
|
|
|
implementation 'com.jakewharton:butterknife:10.0.0'
|
|
annotationProcessor 'com.jakewharton:butterknife-compiler:10.0.0'
|
|
|
|
implementation project(':libmynteye')
|
|
implementation project(':libshell')
|
|
|
|
testImplementation 'junit:junit:4.12'
|
|
androidTestImplementation 'androidx.test:runner:1.1.1'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
|
|
}
|