File tree Expand file tree Collapse file tree 3 files changed +16
-17
lines changed Expand file tree Collapse file tree 3 files changed +16
-17
lines changed Original file line number Diff line number Diff line change @@ -21,12 +21,12 @@ plugins {
21
21
}
22
22
23
23
android {
24
- compileSdkVersion 30
24
+ compileSdkVersion 32
25
25
26
26
defaultConfig {
27
27
applicationId " com.codelab.android.datastore"
28
28
minSdkVersion 16
29
- targetSdkVersion 30
29
+ targetSdkVersion 32
30
30
versionCode 1
31
31
versionName " 1.0"
32
32
@@ -52,13 +52,11 @@ android {
52
52
53
53
dependencies {
54
54
55
- implementation " org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version "
56
55
implementation " androidx.appcompat:appcompat:$supportLibVersion "
57
56
implementation " androidx.constraintlayout:constraintlayout:$constraintLayoutVersion "
58
57
implementation " com.google.android.material:material:$materialVersion "
59
58
60
59
// kotlin
61
- implementation " org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version "
62
60
implementation " org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutinesVersion "
63
61
implementation " org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion "
64
62
@@ -76,7 +74,7 @@ dependencies {
76
74
77
75
protobuf {
78
76
protoc {
79
- artifact = " com.google.protobuf:protoc:3.14.0 "
77
+ artifact = " com.google.protobuf:protoc:3.19.4 "
80
78
}
81
79
82
80
// Generates the java Protobuf-lite code for the Protobufs in this project. See
Original file line number Diff line number Diff line change 25
25
android : roundIcon =" @mipmap/ic_launcher_round"
26
26
android : supportsRtl =" true"
27
27
android : theme =" @style/Theme.Datastore" >
28
- <activity android : name =" .ui.TasksActivity" >
28
+ <activity android : name =" .ui.TasksActivity"
29
+ android : exported =" true" >
29
30
<intent-filter >
30
31
<action android : name =" android.intent.action.MAIN" />
31
32
Original file line number Diff line number Diff line change 16
16
17
17
// Top-level build file where you can add configuration options common to all sub-projects/modules.
18
18
buildscript {
19
- ext. kotlin_version = " 1.5.30 "
19
+ ext. kotlin_version = " 1.6.10 "
20
20
repositories {
21
21
google()
22
22
mavenCentral()
23
23
}
24
24
dependencies {
25
- classpath ' com.android.tools.build:gradle:7.0.2 '
25
+ classpath ' com.android.tools.build:gradle:7.1.1 '
26
26
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
27
27
}
28
28
}
@@ -39,18 +39,18 @@ task clean(type: Delete) {
39
39
}
40
40
41
41
ext {
42
- supportLibVersion = ' 1.3 .1'
43
- constraintLayoutVersion = ' 2.1.0 '
44
- coreVersion = ' 1.6 .0'
45
- coroutinesVersion = ' 1.5.2 '
42
+ supportLibVersion = ' 1.4 .1'
43
+ constraintLayoutVersion = ' 2.1.3 '
44
+ coreVersion = ' 1.7 .0'
45
+ coroutinesVersion = ' 1.6.0 '
46
46
dataStoreVersion = ' 1.0.0'
47
- materialVersion = ' 1.4 .0'
48
- protobufVersion = ' 3.18.0 '
49
- lifecycleVersion = ' 2.3 .1'
47
+ materialVersion = ' 1.5 .0'
48
+ protobufVersion = ' 3.19.4 '
49
+ lifecycleVersion = ' 2.4 .1'
50
50
lifecycleExtensionsVersion = ' 2.2.0'
51
51
52
52
runnerVersion = ' 1.4.0'
53
- rulesVersion = ' 1.0.1 '
54
- junitVersion = ' 4.13.1 '
53
+ rulesVersion = ' 1.4.0 '
54
+ junitVersion = ' 4.13.2 '
55
55
espressoVersion = ' 3.4.0'
56
56
}
You can’t perform that action at this time.
0 commit comments