From 2a583e6d8fbbc1eaa4889888540f7815cbae7f21 Mon Sep 17 00:00:00 2001 From: James Rich <2199651+jamesarich@users.noreply.github.com> Date: Tue, 23 Sep 2025 17:24:47 -0500 Subject: [PATCH] fix: release fixes (#3179) --- Gemfile.lock | 10 +++++----- .../src/main/kotlin/AndroidLibraryConventionPlugin.kt | 7 ------- gradle.properties | 2 +- 3 files changed, 6 insertions(+), 13 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 8a8905f02..86eaa1c38 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -10,8 +10,8 @@ GEM artifactory (3.0.17) atomos (0.1.3) aws-eventstream (1.4.0) - aws-partitions (1.1157.0) - aws-sdk-core (3.232.0) + aws-partitions (1.1164.0) + aws-sdk-core (3.233.0) aws-eventstream (~> 1, >= 1.3.0) aws-partitions (~> 1, >= 1.992.0) aws-sigv4 (~> 1.9) @@ -159,7 +159,7 @@ GEM httpclient (2.9.0) mutex_m jmespath (1.6.2) - json (2.13.2) + json (2.15.0) jwt (2.10.2) base64 logger (1.7.0) @@ -181,7 +181,7 @@ GEM trailblazer-option (>= 0.1.1, < 0.2.0) uber (< 0.2.0) retriable (3.1.2) - rexml (3.4.3) + rexml (3.4.4) rouge (3.28.0) ruby2_keywords (0.0.5) rubyzip (2.4.1) @@ -226,4 +226,4 @@ DEPENDENCIES fastlane BUNDLED WITH - 2.6.9 + 2.7.2 diff --git a/build-logic/convention/src/main/kotlin/AndroidLibraryConventionPlugin.kt b/build-logic/convention/src/main/kotlin/AndroidLibraryConventionPlugin.kt index bddb25481..e5c43e9e7 100644 --- a/build-logic/convention/src/main/kotlin/AndroidLibraryConventionPlugin.kt +++ b/build-logic/convention/src/main/kotlin/AndroidLibraryConventionPlugin.kt @@ -17,10 +17,8 @@ import com.android.build.api.dsl.LibraryExtension import com.android.build.api.variant.LibraryAndroidComponentsExtension -import com.diffplug.gradle.spotless.SpotlessExtension import com.geeksville.mesh.buildlogic.configureFlavors import com.geeksville.mesh.buildlogic.configureKotlinAndroid -import com.geeksville.mesh.buildlogic.configureSpotless import com.geeksville.mesh.buildlogic.disableUnnecessaryAndroidTests import com.geeksville.mesh.buildlogic.libs import org.gradle.api.Plugin @@ -46,11 +44,6 @@ class AndroidLibraryConventionPlugin : Plugin { defaultConfig.testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" testOptions.animationsDisabled = true configureFlavors(this) - // The resource prefix is derived from the module name, - // so resources inside ":core:module1" must be prefixed with "core_module1_" - resourcePrefix = - path.split("""\W""".toRegex()).drop(1).distinct().joinToString(separator = "_") - .lowercase() + "_" } extensions.configure { disableUnnecessaryAndroidTests(target) diff --git a/gradle.properties b/gradle.properties index a86ebf600..59a14bff1 100644 --- a/gradle.properties +++ b/gradle.properties @@ -25,7 +25,7 @@ # Specifies the JVM arguments used for the daemon process. # The setting is particularly useful for tweaking memory settings. # Ensure important default jvmargs aren't overwritten. See https://github.com/gradle/gradle/issues/19750 -org.gradle.jvmargs=-Xmx4g -XX:+UseG1GC -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 +org.gradle.jvmargs=-Xmx6g -XX:MaxMetaspaceSize=1g -XX:+UseG1GC -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 # When configured, Gradle will run in incubating parallel mode. # This option should only be used with decoupled projects. More details, visit