Skip to content

Commit

Permalink
Update to Blueprint 2.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jahirfiquitiva committed Jun 30, 2024
1 parent 9f4d667 commit 48cf7f3
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: adopt
java-version: 17
Expand All @@ -28,7 +28,7 @@ jobs:
run: rm -f ~/.gradle/caches/modules-2/modules-2.lock; rm -fr ~/.gradle/caches/*/plugin-resolution/

- name: Cache Gradle
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.android/build-cache
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 = 241
const val versionName = "2.4.1"
const val version = 242
const val versionName = "2.4.2"
}
10 changes: 5 additions & 5 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.3.0"
const val kotlin = "1.9.23"
const val ksp = "$kotlin-1.0.20"
const val gradle = "8.5.0"
const val kotlin = "2.0.0"
const val ksp = "$kotlin-1.0.22"

// OneSignal
const val oneSignal = "4.8.8"
const val oneSignal = "4.8.10"

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

// Blueprint
const val blueprint = "2.4.1"
const val blueprint = "2.4.2"
}
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Sun Jul 24 22:47:34 CEST 2022
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME

0 comments on commit 48cf7f3

Please sign in to comment.