File tree Expand file tree Collapse file tree 4 files changed +16
-18
lines changed Expand file tree Collapse file tree 4 files changed +16
-18
lines changed Original file line number Diff line number Diff line change @@ -21,13 +21,12 @@ plugins {
21
21
}
22
22
23
23
android {
24
- compileSdkVersion 30
25
- buildToolsVersion " 30.0.3"
24
+ compileSdkVersion 31
26
25
27
26
defaultConfig {
28
27
applicationId " com.example.sqlbasics"
29
28
minSdkVersion 19
30
- targetSdkVersion 30
29
+ targetSdkVersion 31
31
30
versionCode 1
32
31
versionName " 1.0"
33
32
@@ -58,14 +57,12 @@ dependencies {
58
57
// optional - Kotlin Extensions and Coroutines support for Room
59
58
implementation " androidx.room:room-ktx:$room_version "
60
59
61
- implementation ' org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.1'
62
-
63
- implementation " org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version "
64
- implementation ' androidx.core:core-ktx:1.5.0'
65
- implementation ' androidx.appcompat:appcompat:1.3.0'
66
- implementation ' com.google.android.material:material:1.3.0'
67
- implementation ' androidx.constraintlayout:constraintlayout:2.0.4'
60
+ implementation ' org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2'
61
+ implementation ' androidx.core:core-ktx:1.7.0'
62
+ implementation ' androidx.appcompat:appcompat:1.3.1'
63
+ implementation ' com.google.android.material:material:1.4.0'
64
+ implementation ' androidx.constraintlayout:constraintlayout:2.1.1'
68
65
testImplementation ' junit:junit:4.13.2'
69
- androidTestImplementation ' androidx.test.ext:junit:1.1.2 '
70
- androidTestImplementation ' androidx.test.espresso:espresso-core:3.3 .0'
66
+ androidTestImplementation ' androidx.test.ext:junit:1.1.3 '
67
+ androidTestImplementation ' androidx.test.espresso:espresso-core:3.4 .0'
71
68
}
Original file line number Diff line number Diff line change 23
23
android : roundIcon =" @mipmap/ic_launcher_round"
24
24
android : supportsRtl =" true"
25
25
android : theme =" @style/Theme.SQLBasics" >
26
- <activity android : name =" .MainActivity" >
26
+ <activity android : name =" .MainActivity"
27
+ android : exported =" true" >
27
28
<intent-filter >
28
29
<action android : name =" android.intent.action.MAIN" />
29
30
<category android : name =" android.intent.category.LAUNCHER" />
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.4 .31"
19
+ ext. kotlin_version = " 1.5 .31"
20
20
repositories {
21
21
google()
22
- jcenter ()
22
+ mavenCentral ()
23
23
}
24
24
dependencies {
25
- classpath " com.android.tools.build:gradle:4.1.3 "
25
+ classpath ' com.android.tools.build:gradle:7.0.3 '
26
26
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
27
27
28
28
// NOTE: Do not place your application dependencies here; they belong
@@ -33,7 +33,7 @@ buildscript {
33
33
allprojects {
34
34
repositories {
35
35
google()
36
- jcenter ()
36
+ mavenCentral ()
37
37
}
38
38
}
39
39
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
3
3
distributionPath =wrapper/dists
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
6
- distributionUrl =https\://services.gradle.org/distributions/gradle-6.5 -bin.zip
6
+ distributionUrl =https\://services.gradle.org/distributions/gradle-7.0.2 -bin.zip
You can’t perform that action at this time.
0 commit comments