1
0
mirror of https://github.com/fumiama/simple-dict-android.git synced 2026-06-10 04:50:27 +08:00
大幅优化,新增众多功能。
This commit is contained in:
源文雨
2023-12-07 23:33:27 +09:00
parent 804a940dd6
commit 6ee2fec108
27 changed files with 1047 additions and 465 deletions

View File

@@ -5,15 +5,13 @@ plugins {
}
android {
compileSdkVersion 31
buildToolsVersion "30.0.2"
defaultConfig {
compileSdk 34
applicationId "top.fumiama.simpledict"
minSdkVersion 26
targetSdkVersion 31
versionCode 19
versionName '4.0'
targetSdkVersion 34
versionCode 20
versionName '5.0.0'
resConfigs "zh", "zh-rCN"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
@@ -39,19 +37,21 @@ android {
kotlinOptions {
jvmTarget = '1.8'
}
namespace 'top.fumiama.simpledict'
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.appcompat:appcompat:1.4.0'
implementation 'com.google.android.material:material:1.4.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.2'
implementation 'androidx.navigation:navigation-fragment-ktx:2.3.5'
implementation 'androidx.navigation:navigation-ui-ktx:2.3.5'
implementation 'androidx.core:core-ktx:1.12.0'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.10.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.navigation:navigation-fragment-ktx:2.7.5'
implementation 'androidx.navigation:navigation-ui-ktx:2.7.5'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
implementation 'com.lapism:search:2.4.1@aar'
}