Skip to content

Commit ebf4e38

Browse files
committed
05. Delete Data on SQLite Database - Android Development Course Basic To Advanced
1 parent 104696b commit ebf4e38

File tree

4 files changed

+17
-14
lines changed

4 files changed

+17
-14
lines changed

Diff for: .idea/gradle.xml

+1-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: .idea/jarRepositories.xml

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: app/build.gradle

+8-8
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ plugins {
33
}
44

55
android {
6-
compileSdkVersion 30
6+
compileSdkVersion 33
77
buildToolsVersion "30.0.0"
88

99
defaultConfig {
1010
applicationId "com.alaminkarno.sqlitedatbase"
1111
minSdkVersion 21
12-
targetSdkVersion 30
12+
targetSdkVersion 33
1313
versionCode 1
1414
versionName "1.0"
1515

@@ -30,10 +30,10 @@ android {
3030

3131
dependencies {
3232

33-
implementation 'androidx.appcompat:appcompat:1.2.0'
34-
implementation 'com.google.android.material:material:1.2.1'
35-
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
36-
testImplementation 'junit:junit:4.+'
37-
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
38-
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
33+
implementation 'androidx.appcompat:appcompat:1.6.1'
34+
implementation 'com.google.android.material:material:1.8.0'
35+
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
36+
testImplementation 'junit:junit:'
37+
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
38+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
3939
}

Diff for: build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
buildscript {
33
repositories {
44
google()
5-
jcenter()
5+
mavenCentral()
66
}
77
dependencies {
8-
classpath "com.android.tools.build:gradle:4.1.1"
8+
classpath "com.android.tools.build:gradle:4.1.3"
99

1010
// NOTE: Do not place your application dependencies here; they belong
1111
// in the individual module build.gradle files
@@ -15,7 +15,7 @@ buildscript {
1515
allprojects {
1616
repositories {
1717
google()
18-
jcenter()
18+
mavenCentral()
1919
}
2020
}
2121

0 commit comments

Comments
 (0)