Skip to content

Commit

Permalink
version 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
alexstyl committed Sep 27, 2021
1 parent 5db8a28 commit b53f375
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions scripts/publish-module.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apply plugin: 'signing'

task androidSourcesJar(type: Jar) {
archiveClassifier.set('sources')
if (project.plugins.findPlugin("com.android.library")) {
if (project.plugins.findPlugin('com.android.library')) {
// For Android libraries
from android.sourceSets.main.java.srcDirs
from android.sourceSets.main.kotlin.srcDirs
Expand All @@ -29,7 +29,7 @@ afterEvaluate {
artifactId PUBLISH_ARTIFACT_ID
version PUBLISH_VERSION

if (project.plugins.findPlugin("com.android.library")) {
if (project.plugins.findPlugin('com.android.library')) {
from components.release
} else {
from components.java
Expand Down
2 changes: 1 addition & 1 deletion versions.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ext {
majorVersion = 0
minVersion = 1
patchVersion = 0
patchVersion = 2
libraryVersionName = "${majorVersion}.${minVersion}.${patchVersion}"
libraryVersionCode = majorVersion * 1000 + minVersion * 100 + patchVersion

Expand Down

0 comments on commit b53f375

Please sign in to comment.