Skip to content

Commit 75c59a5

Browse files
committed
Update to latest SDK version
1 parent 29f5495 commit 75c59a5

5 files changed

Lines changed: 14 additions & 11 deletions

File tree

app/build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ plugins {
33
}
44

55
android {
6-
compileSdkVersion 32
6+
compileSdkVersion 34
77
buildFeatures.dataBinding = true
88

99
defaultConfig {
1010
applicationId 'com.arashpayan.prayerbook'
1111
minSdkVersion 23
12-
targetSdkVersion 32
12+
targetSdkVersion 34
1313
versionCode 22
1414
versionName '2.2.0'
1515
vectorDrawables.useSupportLibrary = true
@@ -32,13 +32,13 @@ android {
3232

3333
dependencies {
3434
implementation fileTree(dir: 'libs', include: ['*.jar'])
35-
implementation 'androidx.appcompat:appcompat:1.4.1'
36-
implementation 'androidx.recyclerview:recyclerview:1.2.1'
37-
implementation 'com.google.android.material:material:1.6.0'
35+
implementation 'androidx.appcompat:appcompat:1.6.1'
36+
implementation 'androidx.recyclerview:recyclerview:1.3.2'
37+
implementation 'com.google.android.material:material:1.10.0'
3838
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
3939
implementation 'com.samskivert:jmustache:1.14'
4040

4141
testImplementation 'junit:junit:4.13.2'
42-
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
43-
androidTestImplementation 'androidx.test:rules:1.4.0'
42+
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
43+
androidTestImplementation 'androidx.test:rules:1.5.0'
4444
}

app/src/main/java/com/arashpayan/prayerbook/RecentsFragment.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public boolean onMenuItemClick(MenuItem item) {
102102
//region Business logic
103103

104104
private void clearRecentsAction() {
105-
AlertDialog.Builder bldr = new AlertDialog.Builder(requireContext(), R.style.Theme_MaterialComponents_Light_Dialog_Alert);
105+
AlertDialog.Builder bldr = new AlertDialog.Builder(requireContext(), com.google.android.material.R.style.Theme_MaterialComponents_Light_Dialog_Alert);
106106
bldr.setMessage(getString(R.string.clear_recents_interrogative));
107107
bldr.setPositiveButton(R.string.clear, new DialogInterface.OnClickListener() {
108108
@Override

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
plugins {
3-
id 'com.android.application' version '7.2.1' apply false
4-
id 'com.android.library' version '7.2.1' apply false
3+
id 'com.android.application' version '8.2.0' apply false
4+
id 'com.android.library' version '8.2.0' apply false
55
}
66

77
task clean(type: Delete) {

gradle.properties

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
1515
# Android operating system, and which are packaged with your app"s APK
1616
# https://developer.android.com/topic/libraries/support-library/androidx-rn
1717
android.useAndroidX=true
18+
android.nonTransitiveRClass=true
19+
android.nonFinalResIds=false
20+
org.gradle.configuration-cache=true
1821
# Enables namespacing of each library's R class so that its R class includes only the
1922
# resources declared in the library itself and none from the library's dependencies,
2023
# thereby reducing the size of the R class for that library
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Mon Feb 07 10:09:14 PST 2022
22
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)