Skip to content

Commit

Permalink
Update to Blueprint 2.3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
jahirfiquitiva committed Oct 9, 2023
1 parent 0560a1e commit 9e7b4b7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 11 deletions.
4 changes: 1 addition & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ android {
disable 'MissingTranslation', 'GoogleAppIndexingWarning'
}

compileSdkVersion Versions.targetSdk
buildToolsVersion Versions.buildTools

namespace MyApp.appId
defaultConfig {
buildConfigField("String", "ONESIGNAL_APP_ID", "\"$OneSignal.appId\"")
Expand All @@ -22,6 +19,7 @@ android {
]
applicationId MyApp.appId
minSdkVersion Versions.minSdk
compileSdk Versions.targetSdk
targetSdkVersion Versions.targetSdk
versionCode MyApp.version
versionName MyApp.versionName
Expand Down
4 changes: 2 additions & 2 deletions buildSrc/src/main/java/MyApp.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

object MyApp {
const val appId = "dev.jahir.blueprint.app"
const val version = 237
const val versionName = "2.3.7"
const val version = 239
const val versionName = "2.3.9"
}
12 changes: 6 additions & 6 deletions buildSrc/src/main/java/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@

object Versions {
// Plugins
const val gradle = "8.1.0"
const val kotlin = "1.9.0"
const val ksp = "$kotlin-1.0.12"
const val gradle = "8.1.1"
const val kotlin = "1.9.10"
const val ksp = "$kotlin-1.0.13"

// OneSignal
const val oneSignal = "4.8.6"

// App
const val minSdk = 21
const val targetSdk = 33
const val buildTools = "33.0.2"
const val targetSdk = 34
const val buildTools = "34.0.0"

// Blueprint
const val blueprint = "2.3.7"
const val blueprint = "2.3.9"
}

0 comments on commit 9e7b4b7

Please sign in to comment.