Skip to content

Commit bdce7ca

Browse files
committed
chore: dependency updates
1 parent b06d87e commit bdce7ca

File tree

3 files changed

+19
-19
lines changed

3 files changed

+19
-19
lines changed

app/build.gradle

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
plugins {
2-
id 'com.gladed.androidgitversion' version '0.3.4'
2+
id 'com.gladed.androidgitversion' version '0.4.14'
33
id 'com.android.application'
44
id 'com.google.gms.google-services'
55
id 'com.google.firebase.crashlytics'
66
}
77

88
androidGitVersion {
9-
baseCode 1900000000
9+
baseCode = 1900000000
1010
codeFormat = 'MNNPPBBB'
1111
hideBranches = [ ]
1212
untrackedIsDirty = true
@@ -25,8 +25,8 @@ repositories {
2525
}
2626

2727
android {
28-
namespace "tech.akpmakes.android.taskkeeper"
29-
compileSdk 34
28+
namespace = "tech.akpmakes.android.taskkeeper"
29+
compileSdk 36
3030
signingConfigs {
3131
debugApp {
3232
if(project.hasProperty('ANDROID_SIGNING_KEY')) {
@@ -39,9 +39,9 @@ android {
3939
}
4040
defaultConfig {
4141
applicationId "tech.akpmakes.android.taskkeeper"
42-
minSdkVersion 19
43-
targetSdkVersion 34
44-
multiDexEnabled true
42+
minSdkVersion 23
43+
targetSdkVersion 36
44+
multiDexEnabled = true
4545
versionName "Debug"
4646
versionCode 1
4747
vectorDrawables.useSupportLibrary = true
@@ -52,10 +52,10 @@ android {
5252
buildTypes {
5353
release {
5454
minifyEnabled true
55-
shrinkResources true
55+
shrinkResources = true
5656
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
5757
ndk {
58-
debugSymbolLevel 'FULL'
58+
debugSymbolLevel = 'FULL'
5959
}
6060
}
6161
debug {
@@ -85,14 +85,14 @@ android {
8585
buildConfig = true
8686
}
8787
lint {
88-
abortOnError false
88+
abortOnError = false
8989
}
9090
}
9191

9292
dependencies {
9393
implementation fileTree(include: ['*.jar'], dir: 'libs')
9494

95-
implementation platform('com.google.firebase:firebase-bom:32.8.0')
95+
implementation platform('com.google.firebase:firebase-bom:34.2.0')
9696
implementation 'com.google.firebase:firebase-auth'
9797
implementation 'com.google.firebase:firebase-database'
9898
implementation 'com.google.firebase:firebase-config'
@@ -102,13 +102,13 @@ dependencies {
102102
// multidex support is needed until we're minSdk >= 21
103103
implementation 'androidx.multidex:multidex:2.0.1'
104104

105-
implementation 'androidx.appcompat:appcompat:1.6.1'
106-
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
107-
implementation 'com.firebaseui:firebase-ui-database:8.0.2'
108-
implementation 'com.google.android.gms:play-services-auth:21.0.0'
109-
implementation 'com.google.android.material:material:1.11.0'
105+
implementation 'androidx.appcompat:appcompat:1.7.1'
106+
implementation 'androidx.constraintlayout:constraintlayout:2.2.1'
107+
implementation 'com.firebaseui:firebase-ui-database:9.0.0'
108+
implementation 'com.google.android.gms:play-services-auth:21.4.0'
109+
implementation 'com.google.android.material:material:1.12.0'
110110
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
111-
implementation 'androidx.vectordrawable:vectordrawable:1.1.0'
111+
implementation 'androidx.vectordrawable:vectordrawable:1.2.0'
112112
implementation 'androidx.preference:preference:1.2.1'
113113
implementation 'androidx.legacy:legacy-preference-v14:1.0.0'
114114
}

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'com.android.application' version '8.7.2' apply false
2+
id 'com.android.application' version '8.12.2' apply false
33
id 'com.google.gms.google-services' version '4.4.1' apply false
44
id 'com.google.firebase.crashlytics' version '2.9.9' apply false
55
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Tue Feb 13 14:27:58 CET 2024
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)