mirror of
https://github.com/Michatec/michas-droid.git
synced 2026-05-31 02:12:42 +02:00
- Migrate dependencies to Version Catalog (libs.versions.toml)
- Update Kotlin to 2.3.20 and Jackson Core to 2.21.2 - Update Gradle Wrapper to 9.4.1 - Bump version code to 17 and version name to 1.7 - Remove unused `percentTranslationY` property from `FragmentLinearLayout` - Clean up semicolons in `MainApplication.kt` - Update `.gitignore` to include `gradle-daemon-jvm.properties`
This commit is contained in:
+14
-14
@@ -6,8 +6,8 @@ buildscript {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:9.1.0'
|
||||
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:2.3.10'
|
||||
classpath libs.gradle
|
||||
classpath libs.kotlin.gradle.plugin
|
||||
}
|
||||
}
|
||||
|
||||
@@ -21,8 +21,8 @@ android {
|
||||
applicationId 'com.michatec.store'
|
||||
minSdk 30
|
||||
targetSdk 36
|
||||
versionCode 16
|
||||
versionName '1.6'
|
||||
versionCode 17
|
||||
versionName '1.7'
|
||||
|
||||
def languages = [ 'en' ]
|
||||
buildConfigField 'String[]', 'LANGUAGES', '{ "' + languages.join('", "') + '" }'
|
||||
@@ -100,14 +100,14 @@ repositories {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'org.jetbrains.kotlin:kotlin-stdlib:2.3.10'
|
||||
implementation 'androidx.fragment:fragment-ktx:1.8.9'
|
||||
implementation 'androidx.viewpager2:viewpager2:1.1.0'
|
||||
implementation 'androidx.vectordrawable:vectordrawable:1.2.0'
|
||||
implementation 'com.squareup.okhttp3:okhttp:5.3.2'
|
||||
implementation 'io.reactivex.rxjava3:rxjava:3.1.12'
|
||||
implementation 'io.reactivex.rxjava3:rxandroid:3.0.2'
|
||||
implementation 'com.fasterxml.jackson.core:jackson-core:2.21.1'
|
||||
implementation 'com.squareup.picasso:picasso:2.71828'
|
||||
implementation 'com.github.woheller69:FreeDroidWarn:V1.10'
|
||||
implementation libs.kotlin.stdlib
|
||||
implementation libs.fragment.ktx
|
||||
implementation libs.viewpager2
|
||||
implementation libs.vectordrawable
|
||||
implementation libs.okhttp
|
||||
implementation libs.rxjava
|
||||
implementation libs.rxandroid
|
||||
implementation libs.jackson.core
|
||||
implementation libs.picasso
|
||||
implementation libs.freedroidwarn
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user