Skip to content

Commit 6a78171

Browse files
committed
JitPack: exclude module.
1 parent ae3d340 commit 6a78171

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The library is generally available on JitPack; either by version tag or `master-
88
The JitPack repository URL would be: `maven { url 'https://jitpack.io' }`
99

1010
dependencies {
11-
implementation "io.syslogic:androidx-colorpicker:1.1.9"
11+
implementation "io.syslogic:androidx-colorpicker:1.2.0"
1212
}
1313

1414
Alternatively, one can also check out the repository and depend on the local `:library` module:

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
buildscript {
33
ext {
44
build_tools_version = '34.0.0'
5-
version_name = '1.1.9'
6-
version_code = 18
5+
version_name = '1.2.0'
6+
version_code = 19
77
compile_sdk = 34
88
target_sdk = 34
99
min_sdk = 21

settings.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,8 @@ dependencyResolutionManagement {
2222
rootProject.name = "ColorPicker"
2323

2424
include ":library"
25-
include ":mobile"
25+
26+
/* JitPack: exclude module. */
27+
if (! System.env.JITPACK) {
28+
include ":mobile"
29+
}

0 commit comments

Comments
 (0)