Skip to content

Commit

Permalink
deps: update target API version to 34 (Android UDC)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyujin-cho committed Feb 18, 2024
1 parent 95eae88 commit 0a8a666
Show file tree
Hide file tree
Showing 9 changed files with 540 additions and 280 deletions.
9 changes: 9 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 14 additions & 14 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ plugins {

android {
namespace 'dev.bluehouse.enablevolte'
compileSdk 33
compileSdk 34

defaultConfig {
applicationId "dev.bluehouse.enablevolte"
minSdk 29
targetSdk 33
targetSdk 34
versionCode 13
versionName "1.2.8"

Expand All @@ -36,6 +36,7 @@ android {
buildFeatures {
compose true
aidl true
buildConfig true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.4.0"
Expand All @@ -48,18 +49,17 @@ android {
}

dependencies {
def nav_version = "2.5.3"
def material3_version = "1.1.0-beta01"
debugImplementation 'androidx.compose.ui:ui-tooling:1.6.1'
def compose_runtime_version = "1.4.0-beta01"

implementation 'androidx.core:core-ktx:1.9.0'
implementation 'androidx.appcompat:appcompat:1.6.0'
implementation 'com.google.android.material:material:1.8.0'
implementation 'androidx.core:core-ktx:1.12.0'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.11.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'

implementation 'androidx.activity:activity-compose:1.6.1'
implementation 'androidx.activity:activity-compose:1.8.2'

implementation "androidx.navigation:navigation-compose:$nav_version"
implementation "androidx.navigation:navigation-compose:2.7.7"

implementation "androidx.compose.runtime:runtime:$compose_runtime_version"
implementation "androidx.compose.runtime:runtime-livedata:$compose_runtime_version"
Expand All @@ -68,15 +68,15 @@ dependencies {
implementation "androidx.compose.ui:ui:$compose_version"
implementation "androidx.compose.ui:ui-tooling-preview:$compose_version"

implementation "androidx.compose.material:material:1.3.1"
implementation "androidx.compose.material3:material3:$material3_version"
implementation "androidx.compose.material:material:1.6.1"
implementation "androidx.compose.material3:material3:1.2.0"

implementation("io.arrow-kt:arrow-core:1.2.0-RC")
implementation("io.arrow-kt:arrow-fx-coroutines:1.2.0-RC")
implementation "io.arrow-kt:arrow-core:1.2.0-RC"
implementation "io.arrow-kt:arrow-fx-coroutines:1.2.0-RC"

implementation "com.google.accompanist:accompanist-systemuicontroller:0.28.0"

def shizuku_version = "13.1.0"
def shizuku_version = "13.1.5"
implementation "dev.rikka.shizuku:api:$shizuku_version"
implementation "dev.rikka.shizuku:provider:$shizuku_version"
implementation 'com.anggrayudi:android-hidden-api:30.0'
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/Theme.EnableVoLTE"
tools:targetApi="33"
tools:targetApi="34"
android:localeConfig="@xml/locales_config">
<activity
android:name=".HomeActivity"
Expand Down
Loading

0 comments on commit 0a8a666

Please sign in to comment.