mirror of
https://github.com/TonyJiangWJ/Auto.js.git
synced 2026-06-21 21:01:43 +08:00
71 lines
2.0 KiB
Groovy
71 lines
2.0 KiB
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion 25
|
|
buildToolsVersion '26.0.2'
|
|
|
|
defaultConfig {
|
|
minSdkVersion 17
|
|
targetSdkVersion 25
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
flatDir {
|
|
dirs 'libs'
|
|
}
|
|
google()
|
|
}
|
|
|
|
dependencies {
|
|
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 fileTree(dir: 'libs', include: ['*.jar'])
|
|
compile('com.github.hyb1996:DynamicLayoutInflator:0.26')
|
|
compile 'org.greenrobot:eventbus:3.0.0'
|
|
compile 'net.lingala.zip4j:zip4j:1.3.2'
|
|
compile('com.afollestad.material-dialogs:core:0.9.2.3', {
|
|
exclude group: 'com.android.support'
|
|
})
|
|
compile 'com.android.support:design:25.4.0'
|
|
compile 'com.android.support:appcompat-v7:25.4.0'
|
|
compile 'com.github.hyb1996:EnhancedFloaty:0.21'
|
|
compile 'com.github.hyb1996:OpenCvLib:2.4.13.4-imgproc'
|
|
compile 'com.makeramen:roundedimageview:2.3.0'
|
|
// OkHttp
|
|
compile 'com.squareup.okhttp3:okhttp:3.9.0'
|
|
//JDeferred
|
|
compile 'org.jdeferred:jdeferred-android-aar:1.2.6'
|
|
//RootShell
|
|
compile 'com.github.Stericson:RootShell:1.6'
|
|
// Gson
|
|
compile 'com.google.code.gson:gson:2.8.0'
|
|
// Terminal emulator
|
|
compile(name: 'libtermexec-release', ext: 'aar')
|
|
compile(name: 'emulatorview-release', ext: 'aar')
|
|
compile(name: 'term-debug', ext: 'aar')
|
|
compile files('libs/rhino-1.7.7.2.jar')
|
|
compile project(path: ':common')
|
|
compile project(path: ':automator')
|
|
}
|
|
|