Skip to content

Commit ea09e92

Browse files
Merge pull request #50 from osuleymanova/Preferences_datastore-Bump-versions-for-Bumblebee
Bump versions for Bumblebee
2 parents f0fbd5f + 5e3ae79 commit ea09e92

File tree

3 files changed

+14
-15
lines changed

3 files changed

+14
-15
lines changed

app/build.gradle

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ plugins {
2020
}
2121

2222
android {
23-
compileSdkVersion 30
23+
compileSdkVersion 32
2424

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

@@ -51,13 +51,11 @@ android {
5151

5252
dependencies {
5353

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

5958
// kotlin
60-
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
6159
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutinesVersion"
6260
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion"
6361

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: 10 additions & 10 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,16 +39,16 @@ 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-
lifecycleVersion = '2.3.1'
47+
materialVersion = '1.5.0'
48+
lifecycleVersion = '2.4.1'
4949

5050
runnerVersion = '1.4.0'
51-
rulesVersion = '1.0.1'
52-
junitVersion = '4.13.1'
51+
rulesVersion = '1.4.0'
52+
junitVersion = '4.13.2'
5353
espressoVersion = '3.4.0'
5454
}

0 commit comments

Comments
 (0)