155 lines
5.5 KiB
Groovy
155 lines
5.5 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'com.getkeepsafe.dexcount'
|
|
def AAVersion = '4.2.0'
|
|
|
|
android {
|
|
compileSdkVersion 25
|
|
buildToolsVersion "25.0.2"
|
|
defaultConfig {
|
|
applicationId "com.stardust.scriptdroid"
|
|
minSdkVersion 17
|
|
targetSdkVersion 23
|
|
versionCode 203
|
|
versionName "3.0.0 Alpha4"
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
multiDexEnabled true
|
|
ndk {
|
|
abiFilters 'armeabi-v7a'
|
|
}
|
|
}
|
|
buildTypes {
|
|
debug {
|
|
shrinkResources false
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
release {
|
|
shrinkResources false
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
|
encoding = 'utf-8'
|
|
}
|
|
dataBinding {
|
|
enabled = true
|
|
}
|
|
lintOptions {
|
|
disable 'MissingTranslation'
|
|
disable 'ExtraTranslation'
|
|
}
|
|
android.applicationVariants.all { variant ->
|
|
variant.outputs.each { output ->
|
|
def file = output.outputFile
|
|
output.outputFile = new File(file.parent, file.name.replace(".apk", "-" + defaultConfig.versionName + ".apk"))
|
|
}
|
|
}
|
|
|
|
dexcount {
|
|
format = "list"
|
|
includeClasses = true
|
|
includeFieldCount = true
|
|
includeTotalMethodCount = true
|
|
orderByMethodCount = true
|
|
verbose = true
|
|
maxTreeDepth = Integer.MAX_VALUE
|
|
teamCityIntegration = false
|
|
enableForInstantRun = false
|
|
teamCitySlug = null
|
|
runOnEachAssemble = true
|
|
maxMethodCount = 128000
|
|
}
|
|
configurations.all {
|
|
resolutionStrategy.force 'com.google.code.findbugs:jsr305:3.0.1'
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
flatDir {
|
|
dirs 'libs'
|
|
}
|
|
}
|
|
|
|
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'
|
|
// LeakCanary (a memory leak tracer)
|
|
debugCompile 'com.squareup.leakcanary:leakcanary-android:1.5'
|
|
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5'
|
|
testCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5'
|
|
// Storio (Sqlite api library)
|
|
annotationProcessor 'com.pushtorefresh.storio:sqlite-annotations-processor:1.12.3'
|
|
compile 'com.pushtorefresh.storio:sqlite-annotations:1.12.3'
|
|
// Android Annotations
|
|
annotationProcessor "org.androidannotations:androidannotations:$AAVersion"
|
|
compile "org.androidannotations:androidannotations-api:$AAVersion"
|
|
// ButterKnife
|
|
compile('com.jakewharton:butterknife:8.6.0', {
|
|
exclude group: 'com.android.support'
|
|
})
|
|
annotationProcessor 'com.jakewharton:butterknife-compiler:8.6.0'
|
|
// Android supports
|
|
compile 'com.android.support:appcompat-v7:25.3.1'
|
|
compile 'com.android.support:cardview-v7:25.3.1'
|
|
compile 'com.android.support:design:25.3.1'
|
|
compile 'com.android.support:multidex:1.0.1'
|
|
// Personal libraries
|
|
compile 'com.github.hyb1996:MutableTheme:0.2.2'
|
|
// Material Dialogs
|
|
compile('com.afollestad.material-dialogs:core:0.9.2.3', {
|
|
exclude group: 'com.android.support'
|
|
})
|
|
// Gson
|
|
compile 'com.google.code.gson:gson:2.8.0'
|
|
// Common Markdown
|
|
compile 'com.github.atlassian:commonmark-java:commonmark-parent-0.9.0'
|
|
// AlipayZeroSdk
|
|
compile 'moe.feng:AlipayZeroSdk:1.1'
|
|
// Console
|
|
compile 'com.jraska:console:0.4.3'
|
|
// Android issue reporter (a github issue reporter)
|
|
compile('com.heinrichreimersoftware:android-issue-reporter:1.3.1', {
|
|
exclude group: 'com.afollestad.material-dialogs'
|
|
exclude group: 'com.android.support'
|
|
})
|
|
//
|
|
compile 'com.github.hyb1996:android-multi-level-listview:1.1'
|
|
compile 'de.psdev.licensesdialog:licensesdialog:1.8.1'
|
|
compile 'io.mattcarroll.hover:hover:0.9.7'
|
|
compile 'com.bignerdranch.android:expandablerecyclerview:3.0.0-RC1'
|
|
compile 'com.yqritc:recyclerview-flexibledivider:1.4.0'
|
|
compile 'com.wang.avi:library:2.1.3'
|
|
compile 'org.apache.commons:commons-lang3:3.5'
|
|
// RxJava
|
|
compile "io.reactivex.rxjava2:rxjava:2.1.0"
|
|
compile 'io.reactivex.rxjava2:rxandroid:2.0.1'
|
|
// Retrofit
|
|
compile 'com.squareup.retrofit2:retrofit:2.3.0'
|
|
compile 'com.squareup.retrofit2:converter-gson:2.3.0'
|
|
compile 'com.squareup.retrofit2:converter-gson:2.3.0'
|
|
compile 'com.jakewharton.retrofit:retrofit2-rxjava2-adapter:1.0.0'
|
|
//JDeferred
|
|
compile 'org.jdeferred:jdeferred-android-aar:1.2.6'
|
|
//Picasso
|
|
compile 'com.squareup.picasso:picasso:2.5.2'
|
|
// Tasker Plugin
|
|
compile 'com.twofortyfouram:android-plugin-client-sdk-for-locale:[4.0.2, 5.0['
|
|
compile 'com.flurry.android:analytics:7.0.0@aar'
|
|
compile 'com.pushtorefresh.storio:sqlite:1.12.3'
|
|
// 920 Text Editors
|
|
compile('com.afollestad.material-dialogs:commons:0.9.2.3', {
|
|
exclude group: 'com.android.support'
|
|
})
|
|
compile 'com.makeramen:roundedimageview:2.2.1'
|
|
compile 'com.rengwuxian.materialedittext:library:2.0.3'
|
|
compile 'org.msgpack:msgpack-core:0.8.11'
|
|
compile project(':automator')
|
|
compile project(':common')
|
|
compile project(':autojs')
|
|
compile files('libs/GDTUnionSDK.4.9.545.min.jar')
|
|
} |