mirror of
https://github.com/TonyJiangWJ/Auto.js.git
synced 2026-06-21 21:01:43 +08:00
69 lines
1.9 KiB
Groovy
69 lines
1.9 KiB
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion versions.compile
|
|
buildToolsVersion versions.buildTool
|
|
|
|
defaultConfig {
|
|
minSdkVersion versions.mini
|
|
targetSdkVersion versions.target
|
|
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 {
|
|
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
})
|
|
testImplementation 'junit:junit:4.12'
|
|
api fileTree(dir: 'libs', include: ['*.jar'])
|
|
api 'org.greenrobot:eventbus:3.0.0'
|
|
api 'net.lingala.zip4j:zip4j:1.3.2'
|
|
api('com.afollestad.material-dialogs:core:0.9.2.3', {
|
|
exclude group: 'com.android.support'
|
|
})
|
|
api 'com.android.support:design:28.0.0'
|
|
api 'com.github.hyb1996:EnhancedFloaty:0.21'
|
|
api 'com.github.hyb1996:OpenCvLib:2.4.13.4-imgproc'
|
|
api 'com.makeramen:roundedimageview:2.3.0'
|
|
// OkHttp
|
|
api 'com.squareup.okhttp3:okhttp:3.10.0'
|
|
//JDeferred
|
|
api 'org.jdeferred:jdeferred-android-aar:1.2.6'
|
|
//RootShell
|
|
api 'com.github.Stericson:RootShell:1.6'
|
|
// Gson
|
|
api 'com.google.code.gson:gson:2.8.2'
|
|
// Terminal emulator
|
|
api(name: 'libtermexec-release', ext: 'aar')
|
|
api(name: 'emulatorview-release', ext: 'aar')
|
|
api(name: 'term-debug', ext: 'aar')
|
|
api files('libs/rhino-1.7.7.2.jar')
|
|
api project(path: ':common')
|
|
api project(path: ':automator')
|
|
}
|
|
|