Skip to content

Commit

Permalink
increase version to 3.0.0 // fix BuildConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
kroegerama committed Mar 1, 2020
1 parent bf21e8a commit 15d032c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
7 changes: 2 additions & 5 deletions buildSrc/src/main/kotlin/BuildConfig.kt
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,8 @@ object BuildConfig {
}

configure<BintrayExtension> {
val bintrayUser: String by project
val bintrayApiKey: String by project

user = bintrayUser
key = bintrayApiKey
user = project.findProperty("bintrayUser") as? String
key = project.findProperty("bintrayApiKey") as? String

setPublications("maven")

Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/ProjectInfo.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
object P {
const val projectVersion = "1.0.1"
const val projectVersion = "3.0.0"

const val projectGroupId = "com.kroegerama.android-kaiteki"

Expand Down

0 comments on commit 15d032c

Please sign in to comment.