56 lines
1.9 KiB
Groovy
56 lines
1.9 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
}
|
|
|
|
android {
|
|
namespace 'com.hh.holyolm'
|
|
compileSdk 33
|
|
|
|
defaultConfig {
|
|
applicationId "com.hh.holyolm"
|
|
minSdk 31
|
|
targetSdk 33
|
|
versionCode 31
|
|
versionName "3.1"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
buildFeatures {
|
|
viewBinding true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation(platform("org.jetbrains.kotlin:kotlin-bom:1.8.0"))
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
|
implementation 'com.google.android.material:material:1.8.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
|
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.6.1'
|
|
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1'
|
|
implementation 'androidx.navigation:navigation-fragment:2.5.3'
|
|
implementation 'androidx.navigation:navigation-ui:2.5.3'
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
implementation 'androidx.recyclerview:recyclerview:1.3.0'
|
|
implementation 'org.apache.commons:commons-io:1.3.2'
|
|
implementation 'androidx.preference:preference:1.2.0'
|
|
implementation 'com.squareup.okhttp:okhttp:2.7.5'
|
|
implementation 'com.google.code.gson:gson:2.8.0'
|
|
implementation 'org.apache.commons:commons-compress:1.17'
|
|
implementation 'cn.hutool:hutool-all:4.1.2'
|
|
testImplementation 'junit:junit:4.13.2'
|
|
implementation 'org.dom4j:dom4j:2.0.1'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
|
|
} |