61 lines
1.6 KiB
Groovy
61 lines
1.6 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 25
|
|
buildToolsVersion '26.0.2'
|
|
|
|
defaultConfig {
|
|
applicationId "com.stardust.auojs.inrt"
|
|
minSdkVersion 17
|
|
targetSdkVersion 23
|
|
versionCode 203
|
|
versionName "4.0.0 Beta"
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
ndk {
|
|
abiFilters 'armeabi-v7a'
|
|
}
|
|
|
|
}
|
|
lintOptions {
|
|
disable 'MissingTranslation'
|
|
disable 'ExtraTranslation'
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
buildTypes {
|
|
debug {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
flatDir {
|
|
dirs 'libs'
|
|
}
|
|
google()
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
})
|
|
compile 'com.android.support:appcompat-v7:25.4.0'
|
|
//Glide
|
|
compile('com.github.bumptech.glide:glide:4.2.0', {
|
|
exclude group: 'com.android.support'
|
|
})
|
|
testCompile 'junit:junit:4.12'
|
|
compile project(':automator')
|
|
compile project(':common')
|
|
compile project(':autojs')
|
|
}
|