Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore: Migrate to Android 14 (34) #80

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions XClipper.Android/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ dependencies {
implementation(LibraryDependency.RECYCLERVIEW)
implementation(LibraryDependency.CONSTRAINT_LAYOUT)
implementation(LibraryDependency.MATERIAL)
implementation(LibraryDependency.PLAY_CORE)
implementation(LibraryDependency.PLAY_CORE_KTX)
implementation(LibraryDependency.PLAY_INAPP_UPDATE_KTX)
implementation(LibraryDependency.PLAY_INAPP_REVIEW_KTX)
implementation(LibraryDependency.COROUTINES_CORE)
implementation(LibraryDependency.COROUTINES_ANDROID)
implementation(LibraryDependency.WORK_MANAGER)
Expand Down
4 changes: 2 additions & 2 deletions XClipper.Android/buildSrc/src/main/java/AndroidConfig.kt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
object AndroidConfig {
const val COMPILE_SDK_VERSION = 33
const val COMPILE_SDK_VERSION = 34
const val MIN_SDK_VERSION = 21
const val TARGET_SDK_VERSION = 33
const val TARGET_SDK_VERSION = 34
const val BUILD_TOOLS_VERSION = "30.0.3" // deprecated

const val VERSION_CODE = 43
Expand Down
4 changes: 4 additions & 0 deletions XClipper.Android/buildSrc/src/main/java/LibraryDependency.kt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ private object LibraryVersion {
const val MATERIAL = "1.7.0"
const val PLAY_CORE = "1.10.3"
const val PLAY_CORE_KTX = "1.10.3"
const val PLAY_INAPP_UPDATE_KTX = "2.1.0"
const val PLAY_INAPP_REVIEW_KTX = "2.0.1"
const val GSON = "2.8.6"
const val ROOM = "2.5.0"
const val PAGING = "2.1.2"
Expand Down Expand Up @@ -69,6 +71,8 @@ object LibraryDependency {
const val MATERIAL = "com.google.android.material:material:${LibraryVersion.MATERIAL}"
const val PLAY_CORE = "com.google.android.play:core:${LibraryVersion.PLAY_CORE}"
const val PLAY_CORE_KTX = "com.google.android.play:core:${LibraryVersion.PLAY_CORE_KTX}"
const val PLAY_INAPP_UPDATE_KTX = "com.google.android.play:app-update-ktx:${LibraryVersion.PLAY_INAPP_UPDATE_KTX}"
const val PLAY_INAPP_REVIEW_KTX = "com.google.android.play:review-ktx:${LibraryVersion.PLAY_INAPP_REVIEW_KTX}"
const val COROUTINES_CORE = "org.jetbrains.kotlinx:kotlinx-coroutines-core:${CoreVersion.ANDROID_COROUTINES}"
const val COROUTINES_TASKS = "org.jetbrains.kotlinx:kotlinx-coroutines-play-services:${CoreVersion.ANDROID_COROUTINES}"
const val COROUTINES_ANDROID = "org.jetbrains.kotlinx:kotlinx-coroutines-android:${CoreVersion.ANDROID_COROUTINES}"
Expand Down
Loading