Skip to content

Commit 84a5a82

Browse files
committed
migrated to Kotlin
1 parent c17cc3f commit 84a5a82

File tree

4 files changed

+8
-28
lines changed

4 files changed

+8
-28
lines changed

.space.kts

Lines changed: 0 additions & 20 deletions
This file was deleted.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,17 @@ buildscript {
3535
maven { url 'https://jitpack.io' }
3636
}
3737
dependencies {
38-
classpath "com.android.tools.build:gradle:8.7.3"
39-
classpath "com.huawei.agconnect:agcp:1.9.1.304"
40-
classpath "io.syslogic:agconnect-publishing-gradle-plugin:1.3.7"
38+
classpath "com.android.tools.build:gradle:8.10.1"
39+
classpath "com.huawei.agconnect:agcp:1.9.3.300"
40+
classpath "io.syslogic:agconnect-publishing-gradle-plugin:1.3.9"
4141
}
4242
}
4343
````
4444

4545
Or in the version-catalog `gradle/libs.versions.toml`:
4646
````toml
4747
[versions]
48-
agconnect_publishing_plugin = "1.3.7"
48+
agconnect_publishing_plugin = "1.3.9"
4949

5050
[plugins]
5151
agconnect_publishing = { id = "io.syslogic.agconnect.publishing", version.ref = "agconnect_publishing_plugin" }

jitpack.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
jdk:
33
- openjdk17
44
before_install:
5-
- sdk install java 17.0.9-oracle
6-
- sdk use java 17.0.9-oracle
5+
- sdk install java 17.0.14-amzn
6+
- sdk use java 17.0.14-amzn

src/main/java/io/syslogic/agconnect/PublishingPlugin.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public void apply(@NotNull Project project) {
7474
/* 0 or N product flavors. */
7575
if (productFlavors.length == 0) {
7676

77-
/* Product flavors not configured. */
77+
/* Product flavors were not configured. */
7878
if (verbose) {
7979
System.out.println("\nProduct flavors not configured.");
8080
}
@@ -142,7 +142,7 @@ public void apply(@NotNull Project project) {
142142

143143
} else {
144144

145-
/* Multiple product flavors configured */
145+
/* Multiple product-flavors were configured. */
146146
if (verbose) {
147147
System.out.println("\n> " + productFlavors.length + " product flavors configured: " + stringArrayToCsv(productFlavors) + ".");
148148
}

0 commit comments

Comments
 (0)