Skip to content

Commit 6ca2e51

Browse files
authored
chore: updated versions (#145)
* chore: updated versions * chore: added plugins * chore: added permission * chore: added dependencies * chore: changed plugin * chore: changed plugin
1 parent 33c293c commit 6ca2e51

File tree

10 files changed

+265
-162
lines changed

10 files changed

+265
-162
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
uses: actions/checkout@v3
3535

3636
- name: Gradle Wrapper Validation
37-
uses: gradle/wrapper-validation[email protected]
37+
uses: gradle/actions/wrapper-validation@v3
3838

3939
- name: Set up JDK 17
4040
uses: actions/setup-java@v3

app/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ dependencies {
6060
implementation(libs.rxLifecycle)
6161
implementation(libs.mapsKtx)
6262
implementation(libs.kotlinStdlib)
63+
6364
}
6465

6566
secrets {

app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
1919
package="com.google.maps.android.rx.demo">
20-
20+
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
2121
<application
2222
android:allowBackup="true"
2323
android:icon="@mipmap/ic_launcher"
@@ -26,6 +26,7 @@
2626
android:supportsRtl="true"
2727
android:theme="@style/Theme.MapsRxDemo">
2828

29+
2930
<activity
3031
android:name=".MainActivity"
3132
android:label="@string/app_name"

build.gradle.kts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,18 @@ buildscript {
2323
maven(url = "https://plugins.gradle.org/m2/")
2424
}
2525
dependencies {
26-
classpath("com.android.tools.build:gradle:8.7.2")
27-
classpath("com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin:2.0.1")
28-
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:2.0.21")
29-
classpath("org.jetbrains.dokka:dokka-gradle-plugin:1.9.20")
30-
classpath("com.mxalbert.gradle:jacoco-android:0.2.1")
26+
classpath(libs.gradle)
27+
classpath(libs.secrets.gradle.plugin)
28+
classpath(libs.kotlin.gradle.plugin)
29+
classpath(libs.dokka.gradle.plugin)
30+
classpath(libs.jacoco.android)
3131
}
3232
}
3333

3434
plugins {
3535
`maven-publish`
3636
signing
37-
id("org.jetbrains.dokka") version "1.5.0"
37+
id("org.jetbrains.dokka") version "2.0.0"
3838
}
3939

4040
// Shared configs across subprojects

gradle/libs.versions.toml

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
[versions]
2-
kotlin = "2.0.21"
2+
kotlin = "2.2.0"
33
rxandroid = "3.0.2"
44
rxjava = "3.1.8"
5-
playServicesMaps = "19.0.0"
6-
places = "4.1.0"
7-
appCompat = "1.7.0"
8-
lifecycleRuntimeKtx = "2.8.7"
5+
gradle = "8.10.1"
6+
jacoco-android = "0.2.1"
7+
dokka-gradle-plugin = "2.0.0"
8+
secrets-gradle-plugin = "2.0.1"
9+
playServicesMaps = "19.2.0"
10+
places = "4.3.1"
11+
appCompat = "1.7.1"
12+
lifecycleRuntimeKtx = "2.9.1"
913
material = "1.12.0"
1014
rxLifecycle = "4.0.2"
11-
mapsKtx = "5.1.1"
15+
mapsKtx = "5.2.0"
1216
volley = "1.2.1"
1317
mapsRx = "1.0.0"
1418
placesRx = "1.0.0"
@@ -28,3 +32,8 @@ material = { module = "com.google.android.material:material", version.ref = "mat
2832
rxLifecycle = { module = "com.trello.rxlifecycle4:rxlifecycle-android-lifecycle-kotlin", version.ref = "rxLifecycle" }
2933
mapsKtx = { module = "com.google.maps.android:maps-ktx", version.ref = "mapsKtx" }
3034
volley = { module = "com.android.volley:volley", version.ref = "volley" }
35+
kotlin-gradle-plugin = { module = "org.jetbrains.kotlin:kotlin-gradle-plugin", version.ref = "kotlin" }
36+
dokka-gradle-plugin = { module = "org.jetbrains.dokka:dokka-gradle-plugin", version.ref = "dokka-gradle-plugin" }
37+
jacoco-android = { module = "com.mxalbert.gradle:jacoco-android", version.ref = "jacoco-android" }
38+
secrets-gradle-plugin = { module = "com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin", version.ref = "secrets-gradle-plugin" }
39+
gradle = { module = "com.android.tools.build:gradle", version.ref = "gradle" }

gradle/wrapper/gradle-wrapper.jar

-10.5 KB
Binary file not shown.
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
#Wed Oct 16 17:13:36 CEST 2024
21
distributionBase=GRADLE_USER_HOME
32
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
56
zipStoreBase=GRADLE_USER_HOME
67
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)