File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ // Module :compose
12import com.android.build.api.dsl.LibraryExtension
23import com.android.build.gradle.internal.tasks.factory.dependsOn
34import org.jetbrains.kotlin.gradle.dsl.JvmTarget
45
5- // Module :library
66plugins {
77 alias(libs.plugins.android.library)
88 alias(libs.plugins.kotlin.compose.compiler)
@@ -13,6 +13,10 @@ plugins {
1313 id(" maven-publish" )
1414}
1515
16+ @Suppress(" PropertyName" ) val GITHUB_DEV : String by project
17+ @Suppress(" PropertyName" ) val GITHUB_EMAIL : String by project
18+ @Suppress(" PropertyName" ) val GITHUB_HANDLE : String by project
19+
1620base {
1721 archivesName = " colorpicker_compose_${libs.versions.app.version.name.get()} "
1822}
@@ -231,9 +235,9 @@ afterEvaluate {
231235 }
232236 developers {
233237 developer {
234- // name = githubDev
235- // email = githubEmail
236- // id = githubHandle
238+ name = GITHUB_DEV
239+ email = GITHUB_EMAIL
240+ id = GITHUB_HANDLE
237241 }
238242 }
239243 licenses {
Original file line number Diff line number Diff line change @@ -13,3 +13,7 @@ kapt.incremental.apt=false
1313android.enableJetifier =false
1414android.useAndroidX =true
1515android.newDsl =false
16+
17+ GITHUB_HANDLE = "syslogic"
18+ GITHUB_EMAIL = "syslogic@users.noreply.github.com"
19+ GITHUB_DEV = "Martin Zeitler"
Original file line number Diff line number Diff line change 11[versions ]
22# noinspection UnusedVersionCatalogEntry
3- app_version_code = " 32 "
3+ app_version_code = " 34 "
44# noinspection UnusedVersionCatalogEntry
5- app_version_name = " 1.3.2 "
5+ app_version_name = " 1.3.4 "
66# noinspection UnusedVersionCatalogEntry
77android_compile_sdk = " 36"
88# noinspection UnusedVersionCatalogEntry
Original file line number Diff line number Diff line change 1- import com.android.build.api.dsl.AndroidSourceSet
1+ // Module :legacy
22import com.android.build.api.dsl.LibraryExtension
33import org.jetbrains.kotlin.gradle.dsl.JvmTarget
44
5- // Module :library
65plugins {
76 alias(libs.plugins.android.library)
87 alias(libs.plugins.builtin.kotlin)
98 alias(libs.plugins.legacy.kapt)
109 id(" maven-publish" )
1110}
1211
12+ @Suppress(" PropertyName" ) val GITHUB_DEV : String by project
13+ @Suppress(" PropertyName" ) val GITHUB_EMAIL : String by project
14+ @Suppress(" PropertyName" ) val GITHUB_HANDLE : String by project
15+
1316base {
1417 archivesName = " colorpicker_legacy_${libs.versions.app.version.name.get()} "
1518}
@@ -217,9 +220,9 @@ afterEvaluate {
217220 }
218221 developers {
219222 developer {
220- // name = githubDev
221- // email = githubEmail
222- // id = githubHandle
223+ name = GITHUB_DEV
224+ email = GITHUB_EMAIL
225+ id = GITHUB_HANDLE
223226 }
224227 }
225228 licenses {
You can’t perform that action at this time.
0 commit comments