Skip to content
This repository was archived by the owner on Dec 21, 2024. It is now read-only.

Commit 06e32c7

Browse files
authored
AGP を 8.0.1 にバージョンアップ (#25)
1 parent 32cc83a commit 06e32c7

File tree

8 files changed

+173
-124
lines changed

8 files changed

+173
-124
lines changed

.idea/compiler.xml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,15 @@
1212

1313
### 環境
1414

15-
- IDE:Android Studio Arctic Fox | 2020.3.1 Patch 1
16-
- Kotlin:1.5.31
17-
- Java:11
18-
- Gradle:7.0.1
15+
- IDE:Android Studio Flamingo | 2022.2.1 Patch 2
16+
- Kotlin:1.6.21
17+
- Java:17
18+
- Gradle:8.0
1919
- minSdk:23
2020
- targetSdk:31
2121

2222
※ ライブラリの利用はオープンソースのものに限ります。
23+
※ 環境は適宜更新してください。
2324

2425
### 動作
2526

app/build.gradle

+7-6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ plugins {
77
}
88

99
android {
10+
namespace 'jp.co.yumemi.android.code_check'
1011
compileSdk 31
1112

1213
defaultConfig {
@@ -45,14 +46,14 @@ dependencies {
4546
implementation 'androidx.constraintlayout:constraintlayout:2.1.1'
4647
implementation 'androidx.recyclerview:recyclerview:1.2.1'
4748

48-
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.1'
49-
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.3.1'
50-
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.3.1'
49+
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1'
50+
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.5.1'
51+
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.5.1'
5152

52-
implementation 'androidx.navigation:navigation-fragment-ktx:2.3.5'
53-
implementation 'androidx.navigation:navigation-ui-ktx:2.3.5'
53+
implementation 'androidx.navigation:navigation-fragment-ktx:2.5.3'
54+
implementation 'androidx.navigation:navigation-ui-ktx:2.5.3'
5455

55-
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2'
56+
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.1'
5657
implementation 'io.ktor:ktor-client-android:1.6.4'
5758

5859
implementation 'io.coil-kt:coil:1.3.2'

app/src/main/AndroidManifest.xml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="jp.co.yumemi.android.code_check">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
43

54
<uses-permission android:name="android.permission.INTERNET" />
65

build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ buildscript {
55
mavenCentral()
66
}
77
dependencies {
8-
classpath 'com.android.tools.build:gradle:7.0.3'
9-
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.31"
10-
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.3.5"
8+
classpath 'com.android.tools.build:gradle:8.0.2'
9+
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21"
10+
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.5.3"
1111

1212
// NOTE: Do not place your application dependencies here; they belong
1313
// in the individual module build.gradle files
1414
}
1515
}
1616

17-
task clean(type: Delete) {
17+
tasks.register('clean', Delete) {
1818
delete rootProject.buildDir
1919
}

gradle/wrapper/gradle-wrapper.jar

333 Bytes
Binary file not shown.
+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
#Mon Aug 23 19:11:29 JST 2021
21
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
42
distributionPath=wrapper/dists
5-
zipStorePath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
64
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)