Skip to content

Commit 7f2bba4

Browse files
committed
Gradle 9.0 deprecation fixes.
1 parent 08a2b1a commit 7f2bba4

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

gradlew

100644100755
File mode changed.

library/build.gradle

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,15 @@ plugins {
66
id 'maven-publish'
77
}
88

9+
base {
10+
archivesName = 'colorpicker_' + version_name
11+
}
12+
913
android {
1014
namespace 'io.syslogic.colorpicker'
1115
buildToolsVersion = build_tools_version
1216
compileSdk compile_sdk
1317
defaultConfig {
14-
setProperty('archivesBaseName', 'colorpicker')
1518
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
1619
consumerProguardFiles "${project.rootDir}/proguard/consumer.pro"
1720
targetSdk target_sdk

mobile/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ plugins {
66
id 'kotlin-kapt'
77
}
88

9+
base {
10+
archivesName = 'colorpicker_demo_' + version_name
11+
}
12+
913
android {
1014
namespace "io.syslogic.demo.colorpicker"
1115
buildToolsVersion = build_tools_version

0 commit comments

Comments
 (0)