6.0.2 - 新增images.bilateralFilter() 修复toast多次调用/客户端及服务端模式开关/安卓7无法使用UI模式 部分插件及工具版本更新
This commit is contained in:
149
app/build.gradle
149
app/build.gradle
@@ -1,16 +1,12 @@
|
||||
plugins {
|
||||
id "com.android.application"
|
||||
id "com.jakewharton.butterknife"
|
||||
id "kotlin-android"
|
||||
id "kotlin-kapt"
|
||||
id 'com.android.application'
|
||||
id 'com.jakewharton.butterknife'
|
||||
id 'kotlin-android'
|
||||
id 'kotlin-kapt'
|
||||
}
|
||||
|
||||
def annotationsVer = "4.8.0"
|
||||
def butterKnifeVer = "10.2.3"
|
||||
def leakcanaryVer = "2.7"
|
||||
|
||||
def properties = new Properties()
|
||||
def propFile = new File("sign.properties")
|
||||
def propFile = new File('sign.properties')
|
||||
def isPropFileExists = propFile.exists()
|
||||
|
||||
isPropFileExists && properties.load(new FileInputStream(propFile))
|
||||
@@ -22,32 +18,32 @@ tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
|
||||
}
|
||||
|
||||
// tasks.withType(JavaCompile) {
|
||||
// options.compilerArgs << "-Xlint:deprecation" << "-Xlint:unchecked"
|
||||
// options.compilerArgs << '-Xlint:deprecation' << '-Xlint:unchecked'
|
||||
// }
|
||||
|
||||
android {
|
||||
signingConfigs {
|
||||
isPropFileExists && release {
|
||||
storeFile file(properties["storeFile"])
|
||||
keyPassword properties["keyPassword"]
|
||||
keyAlias properties["keyAlias"]
|
||||
storePassword properties["storePassword"]
|
||||
storeFile file(properties['storeFile'])
|
||||
keyPassword properties['keyPassword']
|
||||
keyAlias properties['keyAlias']
|
||||
storePassword properties['storePassword']
|
||||
}
|
||||
}
|
||||
compileSdkVersion versions.compile
|
||||
compileSdkVersion versions.project.compile
|
||||
defaultConfig {
|
||||
applicationId "org.autojs.autojs"
|
||||
minSdkVersion versions.mini
|
||||
targetSdkVersion versions.target
|
||||
versionCode versions.appVersionCode
|
||||
versionName versions.appVersionName
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
applicationId 'org.autojs.autojs'
|
||||
minSdkVersion versions.project.mini
|
||||
targetSdkVersion versions.project.target
|
||||
versionCode versions.project.appVersionCode
|
||||
versionName versions.project.appVersionName
|
||||
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
|
||||
multiDexEnabled true
|
||||
javaCompileOptions {
|
||||
annotationProcessorOptions {
|
||||
arguments = [
|
||||
"resourcePackageName": applicationId,
|
||||
"androidManifestFile": "$projectDir/src/main/AndroidManifest.xml".toString()
|
||||
'resourcePackageName': applicationId,
|
||||
'androidManifestFile': "$projectDir/src/main/AndroidManifest.xml".toString()
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -56,7 +52,7 @@ android {
|
||||
debug {
|
||||
shrinkResources false
|
||||
minifyEnabled false
|
||||
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
|
||||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||||
if (isPropFileExists) {
|
||||
signingConfig signingConfigs.release
|
||||
}
|
||||
@@ -68,7 +64,7 @@ android {
|
||||
release {
|
||||
shrinkResources false
|
||||
minifyEnabled false
|
||||
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
|
||||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||||
if (isPropFileExists) {
|
||||
signingConfig signingConfigs.release
|
||||
}
|
||||
@@ -77,17 +73,17 @@ android {
|
||||
compileOptions {
|
||||
sourceCompatibility JavaVersion.VERSION_16
|
||||
targetCompatibility JavaVersion.VERSION_16
|
||||
encoding = "utf-8"
|
||||
encoding = 'utf-8'
|
||||
}
|
||||
lintOptions {
|
||||
abortOnError false
|
||||
disable "MissingTranslation"
|
||||
disable "ExtraTranslation"
|
||||
disable 'MissingTranslation'
|
||||
disable 'ExtraTranslation'
|
||||
}
|
||||
configurations.all {
|
||||
resolutionStrategy.force "com.google.code.findbugs:jsr305:3.0.1"
|
||||
resolutionStrategy.force 'com.google.code.findbugs:jsr305:3.0.1'
|
||||
}
|
||||
flavorDimensions "channel"
|
||||
flavorDimensions 'channel'
|
||||
splits {
|
||||
// Configures multiple APKs based on ABI.
|
||||
abi {
|
||||
@@ -101,7 +97,7 @@ android {
|
||||
reset()
|
||||
|
||||
// Specifies a list of ABIs that Gradle should create APKs for.
|
||||
include "armeabi-v7a"
|
||||
include 'x86', 'armeabi-v7a'
|
||||
|
||||
// Specifies that we do not want to also generate a universal APK that includes all ABIs.
|
||||
universalApk false
|
||||
@@ -109,14 +105,14 @@ android {
|
||||
}
|
||||
productFlavors {
|
||||
common {
|
||||
buildConfigField "String", "CHANNEL", "\"common\""
|
||||
buildConfigField "String", "APP_SINCE_DATE", "\"${versions.appSinceDate}\""
|
||||
buildConfigField 'String', 'CHANNEL', '"common"'
|
||||
buildConfigField 'String', 'APP_SINCE_DATE', "\"${versions.project.appSinceDate}\""
|
||||
}
|
||||
}
|
||||
applicationVariants.all { variant ->
|
||||
variant.mergeAssetsProvider.configure {
|
||||
doLast {
|
||||
delete(fileTree(dir: outputDir, includes: ["declarations/**"]))
|
||||
delete(fileTree(dir: outputDir, includes: ['declarations/**']))
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -128,103 +124,94 @@ repositories {
|
||||
|
||||
dependencies {
|
||||
// JUnit
|
||||
testImplementation "junit:junit:${junitVer}"
|
||||
testImplementation "junit:junit:${versions.junit}"
|
||||
|
||||
// LeakCanary
|
||||
debugImplementation "com.squareup.leakcanary:leakcanary-android:${leakcanaryVer}"
|
||||
debugImplementation "com.squareup.leakcanary:leakcanary-android:${versions.leakcanary}"
|
||||
|
||||
// Kotlin
|
||||
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.0-native-mt"
|
||||
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.0-native-mt'
|
||||
|
||||
// Android Annotations
|
||||
kapt "org.androidannotations:androidannotations:${annotationsVer}"
|
||||
implementation "org.androidannotations:androidannotations-api:${annotationsVer}"
|
||||
kapt "org.androidannotations:androidannotations:${versions.annotations}"
|
||||
implementation "org.androidannotations:androidannotations-api:${versions.annotations}"
|
||||
|
||||
// ButterKnife
|
||||
kapt "com.jakewharton:butterknife-compiler:${butterKnifeVer}"
|
||||
implementation "com.jakewharton:butterknife:${butterKnifeVer}"
|
||||
kapt "com.jakewharton:butterknife-compiler:${versions.butterKnife}"
|
||||
implementation "com.jakewharton:butterknife:${versions.butterKnife}"
|
||||
|
||||
// Android supports
|
||||
implementation "androidx.appcompat:appcompat:1.4.0"
|
||||
implementation "androidx.cardview:cardview:1.0.0"
|
||||
implementation "com.google.android.material:material:1.6.0-alpha01"
|
||||
implementation "androidx.multidex:multidex:2.0.1"
|
||||
|
||||
// Material Dialogs
|
||||
implementation "com.afollestad.material-dialogs:core:0.9.6.0"
|
||||
implementation 'androidx.cardview:cardview:1.0.0'
|
||||
implementation 'androidx.multidex:multidex:2.0.1'
|
||||
|
||||
// SwipeRefreshLayout
|
||||
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
|
||||
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
||||
|
||||
// Common Markdown
|
||||
implementation "com.github.atlassian:commonmark-java:commonmark-parent-0.9.0"
|
||||
implementation 'com.github.atlassian:commonmark-java:commonmark-parent-0.9.0'
|
||||
|
||||
// Android issue reporter (a github issue reporter)
|
||||
implementation "com.heinrichreimersoftware:android-issue-reporter:1.3.1"
|
||||
implementation 'com.heinrichreimersoftware:android-issue-reporter:1.3.1'
|
||||
|
||||
// MultiLevelListView
|
||||
implementation "com.github.hyb1996:android-multi-level-listview:1.1"
|
||||
implementation 'com.github.hyb1996:android-multi-level-listview:1.1'
|
||||
|
||||
// Licenses Dialog
|
||||
implementation "de.psdev.licensesdialog:licensesdialog:2.2.0"
|
||||
implementation 'de.psdev.licensesdialog:licensesdialog:2.2.0'
|
||||
|
||||
// Expandable RecyclerView
|
||||
implementation "com.bignerdranch.android:expandablerecyclerview:3.0.0-RC1"
|
||||
implementation 'com.bignerdranch.android:expandablerecyclerview:3.0.0-RC1'
|
||||
|
||||
// FlexibleDivider
|
||||
implementation "com.yqritc:recyclerview-flexibledivider:1.4.0"
|
||||
implementation 'com.yqritc:recyclerview-flexibledivider:1.4.0'
|
||||
|
||||
// AVLoadingView
|
||||
implementation "com.wang.avi:library:2.1.3"
|
||||
implementation 'com.wang.avi:library:2.1.3'
|
||||
|
||||
// Commons Lang
|
||||
implementation "org.apache.commons:commons-lang3:3.12.0"
|
||||
implementation 'org.apache.commons:commons-lang3:3.12.0'
|
||||
|
||||
// Expandable RecyclerView
|
||||
implementation "com.thoughtbot:expandablerecyclerview:1.3"
|
||||
implementation 'com.thoughtbot:expandablerecyclerview:1.3'
|
||||
|
||||
implementation "com.github.hyb1996:Auto.js-ApkBuilder:1.0.1"
|
||||
implementation 'com.github.hyb1996:Auto.js-ApkBuilder:1.0.1'
|
||||
|
||||
// RxJava
|
||||
implementation "io.reactivex.rxjava2:rxjava:2.2.21"
|
||||
implementation "io.reactivex.rxjava2:rxandroid:2.1.1"
|
||||
implementation 'io.reactivex.rxjava2:rxjava:2.2.21'
|
||||
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
|
||||
|
||||
// Retrofit
|
||||
implementation "com.squareup.retrofit2:retrofit:2.9.0"
|
||||
implementation "com.squareup.retrofit2:converter-gson:2.9.0"
|
||||
implementation "com.jakewharton.retrofit:retrofit2-rxjava2-adapter:1.0.0"
|
||||
implementation "com.jakewharton.retrofit:retrofit2-kotlin-coroutines-adapter:0.9.2"
|
||||
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
|
||||
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
|
||||
implementation 'com.jakewharton.retrofit:retrofit2-rxjava2-adapter:1.0.0'
|
||||
implementation 'com.jakewharton.retrofit:retrofit2-kotlin-coroutines-adapter:0.9.2'
|
||||
|
||||
// Glide
|
||||
kapt "com.github.bumptech.glide:compiler:4.12.0"
|
||||
implementation "com.github.bumptech.glide:glide:4.12.0"
|
||||
kapt "com.github.bumptech.glide:compiler:${versions.glide}"
|
||||
|
||||
// Joda Time
|
||||
implementation "joda-time:joda-time:2.10.13"
|
||||
implementation 'joda-time:joda-time:2.10.13'
|
||||
|
||||
// Tasker Plugin
|
||||
implementation "com.twofortyfouram:android-plugin-client-sdk-for-locale:4.0.3"
|
||||
implementation 'com.twofortyfouram:android-plugin-client-sdk-for-locale:4.0.3'
|
||||
|
||||
// Flurry
|
||||
implementation "com.flurry.android:analytics:13.1.0"
|
||||
|
||||
// Material Dialogs
|
||||
implementation "com.afollestad.material-dialogs:commons:0.9.6.0"
|
||||
implementation 'com.flurry.android:analytics:13.1.0'
|
||||
|
||||
// Android Job
|
||||
implementation "com.evernote:android-job:1.4.2"
|
||||
implementation 'com.evernote:android-job:1.4.2'
|
||||
|
||||
// Extracted from com.github.hyb1996:MutableTheme:1.0.0
|
||||
implementation "com.jrummyapps:colorpicker:2.1.7"
|
||||
implementation "androidx.recyclerview:recyclerview:1.2.1"
|
||||
implementation "com.github.ozodrukh:CircularReveal:2.0.1"
|
||||
implementation 'com.jrummyapps:colorpicker:2.1.7'
|
||||
implementation 'androidx.recyclerview:recyclerview:1.2.1'
|
||||
implementation 'com.github.ozodrukh:CircularReveal:2.0.1'
|
||||
|
||||
// Bugly
|
||||
implementation project(":libs:com.tencent.bugly.crashreport-2.6.6")
|
||||
implementation project(':libs:com.tencent.bugly.crashreport-2.6.6')
|
||||
|
||||
implementation project(":automator")
|
||||
implementation project(":common")
|
||||
implementation project(":autojs")
|
||||
implementation project(':automator')
|
||||
implementation project(':common')
|
||||
implementation project(':autojs')
|
||||
}
|
||||
|
||||
java {
|
||||
|
||||
Reference in New Issue
Block a user