From fedb5525d9b542e9079976ba5213d2ed007c3dac Mon Sep 17 00:00:00 2001 From: Osip Fatkullin Date: Mon, 29 Jul 2024 11:07:46 +0200 Subject: [PATCH] fix: Fix package of SigningConfig.fromProperties --- CHANGELOG.md | 5 ++++- infrastructure-android/src/main/kotlin/dsl/Signing.kt | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c68e432..cc55931 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ ## [Unreleased] -- *No changes* +### Fixes + +- Fixed package of the extension `SigningConfig.fromProperties`. \ + `dsl` → `com.redmadrobot.build.dsl` ## [0.19] (2024-07-26) diff --git a/infrastructure-android/src/main/kotlin/dsl/Signing.kt b/infrastructure-android/src/main/kotlin/dsl/Signing.kt index 6b79cf3..a4e0309 100644 --- a/infrastructure-android/src/main/kotlin/dsl/Signing.kt +++ b/infrastructure-android/src/main/kotlin/dsl/Signing.kt @@ -1,4 +1,4 @@ -package dsl +package com.redmadrobot.build.dsl import com.android.build.api.dsl.SigningConfig import org.gradle.api.Incubating