This repository was archived by the owner on Dec 21, 2024. It is now read-only.
File tree 8 files changed +173
-124
lines changed
8 files changed +173
-124
lines changed Original file line number Diff line number Diff line change 12
12
13
13
### 環境
14
14
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
19
19
- minSdk:23
20
20
- targetSdk:31
21
21
22
22
※ ライブラリの利用はオープンソースのものに限ります。
23
+ ※ 環境は適宜更新してください。
23
24
24
25
### 動作
25
26
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ plugins {
7
7
}
8
8
9
9
android {
10
+ namespace ' jp.co.yumemi.android.code_check'
10
11
compileSdk 31
11
12
12
13
defaultConfig {
@@ -45,14 +46,14 @@ dependencies {
45
46
implementation ' androidx.constraintlayout:constraintlayout:2.1.1'
46
47
implementation ' androidx.recyclerview:recyclerview:1.2.1'
47
48
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'
51
52
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 '
54
55
55
- implementation ' org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2 '
56
+ implementation ' org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.1 '
56
57
implementation ' io.ktor:ktor-client-android:1.6.4'
57
58
58
59
implementation ' io.coil-kt:coil:1.3.2'
Original file line number Diff line number Diff line change 1
1
<?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" >
4
3
5
4
<uses-permission android : name =" android.permission.INTERNET" />
6
5
Original file line number Diff line number Diff line change @@ -5,15 +5,15 @@ buildscript {
5
5
mavenCentral()
6
6
}
7
7
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 "
11
11
12
12
// NOTE: Do not place your application dependencies here; they belong
13
13
// in the individual module build.gradle files
14
14
}
15
15
}
16
16
17
- task clean ( type : Delete ) {
17
+ tasks . register( ' clean ' , Delete ) {
18
18
delete rootProject. buildDir
19
19
}
Original file line number Diff line number Diff line change 1
- # Mon Aug 23 19:11:29 JST 2021
2
1
distributionBase =GRADLE_USER_HOME
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
4
2
distributionPath =wrapper/dists
5
- zipStorePath = wrapper/dists
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.0-bin.zip
6
4
zipStoreBase =GRADLE_USER_HOME
5
+ zipStorePath =wrapper/dists
You can’t perform that action at this time.
0 commit comments