Skip to content

Commit

Permalink
Merge pull request #79 from shiguredo/feature/update-library
Browse files Browse the repository at this point in the history
依存ライブラリをバージョンアップする
  • Loading branch information
zztkm authored Aug 15, 2024
2 parents 59c3dad + 3bcab53 commit aacfa27
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 13 deletions.
18 changes: 18 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,24 @@
- AGP 8.5.0 対応で発生したビルドスクリプトのエラーを手動で修正した内容
- AGP 8.0 から buildConfig がデフォルト false になったため、true に設定する
- @zztkm
- [UPDATE] 依存ライブラリーのバージョンを上げる
- com.google.code.gson:gson を 2.11.0 に上げる
- androidx.appcompat:appcompat を 1.7.0 に上げる
- androidx.recyclerview:recyclerview を 1.3.2 に上げる
- com.google.android.material:material を 1.12.0 に上げる
- androidx.navigation:navigation-fragment-ktx を 2.7.7 に上げる
- androidx.navigation:navigation-ui-ktx を 2.7.7 に上げる
- androidx.compose.ui:ui を 1.6.8 に上げる
- androidx.compose.material:material を 1.6.8 に上げる
- androidx.compose.material:material-icons-extended を 1.6.8 に上げる
- androidx.activity:activity-compose を 1.9.1 に上げる
- @zztkm
- [UPDATE] compileSdkVersion を 34 に上げる
- Android API レベル 34 以降でコンパイルする必要がある依存ライブラリがあるため
- @zztkm
- [UPDATE] Kotlin のバージョンを 1.9.25 に上げる
- 合わせて、kotlinCompilerExtensionVersion を 1.5.15 に上げる
- @zztkm

## sora-andoroid-sdk-2024.2.0

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: "com.github.ben-manes.versions"

buildscript {
ext.kotlin_version = '1.8.10'
ext.kotlin_version = '1.9.25'
ext.sora_android_sdk_version = 'develop-SNAPSHOT'

repositories {
Expand Down
24 changes: 12 additions & 12 deletions samples/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'kotlin-kapt'
apply plugin: 'org.jlleitschuh.gradle.ktlint'

android {
compileSdkVersion 33
compileSdkVersion 34
defaultConfig {
applicationId "jp.shiguredo.sora.sample"
targetSdkVersion 33
Expand Down Expand Up @@ -55,7 +55,7 @@ android {
}

composeOptions {
kotlinCompilerExtensionVersion '1.4.3'
kotlinCompilerExtensionVersion '1.5.15'
}

buildTypes {
Expand Down Expand Up @@ -100,21 +100,21 @@ dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${kotlin_version}"
implementation "org.jetbrains.kotlin:kotlin-reflect:${kotlin_version}"

implementation 'com.google.code.gson:gson:2.10.1'
implementation 'com.google.code.gson:gson:2.11.0'

implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.appcompat:appcompat:1.7.0'
implementation "androidx.cardview:cardview:1.0.0"
implementation 'androidx.recyclerview:recyclerview:1.3.0'
implementation 'androidx.recyclerview:recyclerview:1.3.2'

implementation 'com.google.android.material:material:1.8.0'
implementation 'com.google.android.material:material:1.12.0'
implementation 'com.jaredrummler:material-spinner:1.3.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.navigation:navigation-fragment-ktx:2.5.3'
implementation 'androidx.navigation:navigation-ui-ktx:2.5.3'
implementation 'androidx.compose.ui:ui:1.4.0'
implementation 'androidx.compose.material:material:1.4.0'
implementation "androidx.compose.material:material-icons-extended:1.4.0"
implementation 'androidx.activity:activity-compose:1.7.0'
implementation 'androidx.navigation:navigation-fragment-ktx:2.7.7'
implementation 'androidx.navigation:navigation-ui-ktx:2.7.7'
implementation 'androidx.compose.ui:ui:1.6.8'
implementation 'androidx.compose.material:material:1.6.8'
implementation 'androidx.compose.material:material-icons-extended:1.6.8'
implementation 'androidx.activity:activity-compose:1.9.1'

ext.pd_version = '4.9.2'
implementation "com.github.permissions-dispatcher:permissionsdispatcher:${pd_version}"
Expand Down

0 comments on commit aacfa27

Please sign in to comment.