Skip to content

Instantly share code, notes, and snippets.

View SaintPatrck's full-sized avatar
🤘

Patrick Honkonen SaintPatrck

🤘
  • pH Apps; iMobile3
  • Jacksonville, FL
View GitHub Profile
@SaintPatrck
SaintPatrck / gpr.publish.gradle.kts
Created December 16, 2019 05:03
Publish Android Library to GitHub Packages
plugins {
id("maven-publish")
id("org.jetbrains.dokka")
}
val versionMajor = 0
val versionMinor = 0
val versionPatch = 1
val artifactVersionCode = versionMajor * 10000 + versionMinor * 1000 + versionPatch * 100