78 lines
2.5 KiB
Groovy
78 lines
2.5 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 25
|
|
buildToolsVersion "25.0.1"
|
|
defaultConfig {
|
|
applicationId "com.stardust.scriptdroid"
|
|
minSdkVersion 19
|
|
targetSdkVersion 23
|
|
versionCode 31
|
|
versionName "1.17.0221"
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
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"))
|
|
}
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
flatDir {
|
|
dirs 'libs'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
|
testCompile 'junit:junit:4.12'
|
|
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'
|
|
|
|
compile 'com.android.support:appcompat-v7:25.1.0'
|
|
compile 'com.android.support:design:25.1.0'
|
|
|
|
compile 'com.afollestad.material-dialogs:core:0.9.2.3'
|
|
compile 'com.google.code.gson:gson:2.8.0'
|
|
compile('de.psdev.licensesdialog:licensesdialog:1.8.1')
|
|
compile 'com.furture.react:DuktapeJava:1.1.0'
|
|
compile 'com.zzhoujay.markdown:markdown:1.0.2'
|
|
compile 'moe.feng:AlipayZeroSdk:1.1'
|
|
compile 'com.jraska:console:0.4.3'
|
|
compile 'com.jraska:console-timber-tree:0.4.3'
|
|
compile 'com.heinrichreimersoftware:android-issue-reporter:eae4c73cbeb91e98da83fe79a3dea088a8b97448'
|
|
|
|
compile files('libs/JSTransformer.jar')
|
|
|
|
compile 'com.afollestad.material-dialogs:commons:0.9.2.3'
|
|
compile 'com.makeramen:roundedimageview:2.2.1'
|
|
compile 'com.rengwuxian.materialedittext:library:2.0.3'
|
|
compile 'org.msgpack:msgpack-core:0.8.11'
|
|
compile(name: '920-common-release', ext: 'aar')
|
|
compile(name: '920-styles-release', ext: 'aar')
|
|
compile(name: '920-file_explorer-release', ext: 'aar')
|
|
compile(name: '920-app-debug', ext: 'aar')
|
|
|
|
}
|