103 lines
4.2 KiB
Groovy
103 lines
4.2 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: "androidx.navigation.safeargs"
|
|
apply plugin: 'org.greenrobot.greendao'
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
|
|
|
|
defaultConfig {
|
|
applicationId "com.zane.smapiinstaller"
|
|
minSdkVersion 19
|
|
targetSdkVersion 28
|
|
versionCode 25
|
|
versionName "1.3.8"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
multiDexEnabled true
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
shrinkResources true
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
// debug {
|
|
// minifyEnabled true
|
|
// shrinkResources true
|
|
// proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
// }
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
bundle {
|
|
language {
|
|
// Specifies that the app bundle should not support
|
|
// configuration APKs for language resources. These
|
|
// resources are instead packaged with each base and
|
|
// dynamic feature APK.
|
|
enableSplit = false
|
|
}
|
|
}
|
|
}
|
|
|
|
greendao {
|
|
schemaVersion 1 //版本号,升级时可配置
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.1.0'
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
implementation 'com.google.android.material:material:1.1.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
|
implementation 'androidx.navigation:navigation-fragment:2.3.0-alpha04'
|
|
implementation 'androidx.navigation:navigation-ui:2.3.0-alpha04'
|
|
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
|
|
implementation 'com.madgag.spongycastle:core:1.54.0.0'
|
|
implementation 'com.madgag.spongycastle:prov:1.54.0.0'
|
|
implementation 'com.madgag.spongycastle:pkix:1.54.0.0'
|
|
implementation 'com.madgag.spongycastle:pg:1.54.0.0'
|
|
implementation 'com.afollestad.material-dialogs:core:0.9.6.0'
|
|
// https://mvnrepository.com/artifact/com.jakewharton/butterknife
|
|
implementation 'com.jakewharton:butterknife:10.2.1'
|
|
implementation 'androidx.recyclerview:recyclerview:1.1.0'
|
|
annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.1'
|
|
// https://mvnrepository.com/artifact/com.google.guava/guava
|
|
implementation group: 'com.google.guava', name: 'guava', version: '28.2-android'
|
|
// https://mvnrepository.com/artifact/org.zeroturnaround/zt-zip
|
|
implementation group: 'org.zeroturnaround', name: 'zt-zip', version: '1.14'
|
|
// https://mvnrepository.com/artifact/org.apache.commons/commons-lang3
|
|
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.9'
|
|
// https://mvnrepository.com/artifact/commons-io/commons-io
|
|
implementation group: 'commons-io', name: 'commons-io', version: '2.6'
|
|
implementation 'com.lzy.net:okgo:3.0.4'
|
|
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core
|
|
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.10.3'
|
|
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.10.3'
|
|
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.10.3'
|
|
|
|
implementation 'com.github.didikee:AndroidDonate:0.1.0'
|
|
implementation 'com.hjq:language:3.0'
|
|
implementation 'org.greenrobot:greendao:3.2.2'
|
|
implementation 'net.sourceforge.streamsupport:android-retrostreams:1.7.1'
|
|
|
|
testImplementation 'junit:junit:4.12'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
|
|
implementation 'com.android.support:multidex:1.0.3'
|
|
|
|
def appCenterSdkVersion = '3.0.0'
|
|
implementation "com.microsoft.appcenter:appcenter-analytics:${appCenterSdkVersion}"
|
|
implementation "com.microsoft.appcenter:appcenter-crashes:${appCenterSdkVersion}"
|
|
|
|
compileOnly 'org.projectlombok:lombok:1.18.12'
|
|
annotationProcessor 'org.projectlombok:lombok:1.18.12'
|
|
}
|