Skip to content

Commit acc741f

Browse files
committed
Bump versions for Bumblebee
Updated versions of: Kotlin, AGP and gradle compileSDK and targetSDK dependencies removed lines: implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" set up: android:exported="true" in Manifest
1 parent 2100f11 commit acc741f

File tree

3 files changed

+16
-17
lines changed

3 files changed

+16
-17
lines changed

app/build.gradle

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ plugins {
2121
}
2222

2323
android {
24-
compileSdkVersion 30
24+
compileSdkVersion 32
2525

2626
defaultConfig {
2727
applicationId "com.codelab.android.datastore"
2828
minSdkVersion 16
29-
targetSdkVersion 30
29+
targetSdkVersion 32
3030
versionCode 1
3131
versionName "1.0"
3232

@@ -52,13 +52,11 @@ android {
5252

5353
dependencies {
5454

55-
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
5655
implementation "androidx.appcompat:appcompat:$supportLibVersion"
5756
implementation "androidx.constraintlayout:constraintlayout:$constraintLayoutVersion"
5857
implementation "com.google.android.material:material:$materialVersion"
5958

6059
// kotlin
61-
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
6260
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutinesVersion"
6361
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion"
6462

@@ -76,7 +74,7 @@ dependencies {
7674

7775
protobuf {
7876
protoc {
79-
artifact = "com.google.protobuf:protoc:3.14.0"
77+
artifact = "com.google.protobuf:protoc:3.19.4"
8078
}
8179

8280
// Generates the java Protobuf-lite code for the Protobufs in this project. See

app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@
2525
android:roundIcon="@mipmap/ic_launcher_round"
2626
android:supportsRtl="true"
2727
android:theme="@style/Theme.Datastore">
28-
<activity android:name=".ui.TasksActivity">
28+
<activity android:name=".ui.TasksActivity"
29+
android:exported="true">
2930
<intent-filter>
3031
<action android:name="android.intent.action.MAIN" />
3132

build.gradle

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616

1717
// Top-level build file where you can add configuration options common to all sub-projects/modules.
1818
buildscript {
19-
ext.kotlin_version = "1.5.30"
19+
ext.kotlin_version = "1.6.10"
2020
repositories {
2121
google()
2222
mavenCentral()
2323
}
2424
dependencies {
25-
classpath 'com.android.tools.build:gradle:7.0.2'
25+
classpath 'com.android.tools.build:gradle:7.1.1'
2626
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2727
}
2828
}
@@ -39,18 +39,18 @@ task clean(type: Delete) {
3939
}
4040

4141
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'
4646
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'
5050
lifecycleExtensionsVersion = '2.2.0'
5151

5252
runnerVersion = '1.4.0'
53-
rulesVersion = '1.0.1'
54-
junitVersion = '4.13.1'
53+
rulesVersion = '1.4.0'
54+
junitVersion = '4.13.2'
5555
espressoVersion = '3.4.0'
5656
}

0 commit comments

Comments
 (0)