Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pluginManagement {
// build.gradle.kts
plugins {
id("com.android.library")
id("io.deepmedia.tools.grease") version "0.3.4"
id("io.deepmedia.tools.grease") version "0.3.6"
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
agp = "8.1.4"
agp = "8.11.2"
apache-ant = "1.10.14"
asm-commons = "9.6"
android-tools = "31.1.4"
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
3 changes: 1 addition & 2 deletions grease/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,12 @@ plugins {
}

group = "io.deepmedia.tools"
version = "0.3.5"
version = "0.3.6"

testing {
suites {
register<JvmTestSuite>("functionalTest") {
useJUnit()
testType.set(TestSuiteType.FUNCTIONAL_TEST)

dependencies {
implementation(gradleTestKit())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ open class GreasePlugin : Plugin<Project> {
/* Extra outputs that can probably be null. */
outAaptSafeManifestLocation = null,
/* Either LIBRARY or APPLICATION. When using LIBRARY we can't add lib dependencies */
mergeType = ManifestMerger2.MergeType.FUSED_LIBRARY,
mergeType = ManifestMerger2.MergeType.LIBRARY,
/* Manifest placeholders. Doing this the way the library manifest does. */
placeHolders = mergedFlavor?.manifestPlaceholders.orEmpty() + variant.manifestPlaceholders.get(),
/* Optional features to be enabled. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ internal fun Project.createProductFlavorConfigurations(
// Create one configuration per build type.
// Make it extend the root configuration so that artifacts are inherited.
internal fun Project.createBuildTypeConfigurations(
buildTypes: NamedDomainObjectContainer<BuildType>,
buildTypes: NamedDomainObjectContainer<out BuildType>,
isTransitive: Boolean,
log: Logger
) {
Expand Down
Binary file added tests/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
7 changes: 7 additions & 0 deletions tests/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0-milestone-1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
251 changes: 251 additions & 0 deletions tests/gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading