Skip to content

Commit

Permalink
Update to Blueprint 2.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
jahirfiquitiva committed Jul 17, 2023
1 parent d743342 commit 9ba24c3
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 16 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Expand Up @@ -2,7 +2,7 @@ name: Build

on:
pull_request:
branches:
branches:
- sample
- master
push:
Expand All @@ -16,19 +16,19 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Set up JDK 11
uses: actions/setup-java@v2
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: adopt
java-version: 11
java-version: 17

- name: Delete some caches
run: rm -f ~/.gradle/caches/modules-2/modules-2.lock; rm -fr ~/.gradle/caches/*/plugin-resolution/

- name: Cache Gradle
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
~/.android/build-cache
Expand Down
13 changes: 9 additions & 4 deletions app/build.gradle
@@ -1,5 +1,5 @@
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'org.jetbrains.kotlin.android'
apply plugin: 'kotlin-parcelize'
apply plugin: 'com.google.devtools.ksp'

Expand All @@ -13,6 +13,7 @@ android {
compileSdkVersion Versions.targetSdk
buildToolsVersion Versions.buildTools

namespace MyApp.appId
defaultConfig {
buildConfigField("String", "ONESIGNAL_APP_ID", "\"$OneSignal.appId\"")
manifestPlaceholders = [
Expand Down Expand Up @@ -66,12 +67,16 @@ android {
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}

kotlinOptions {
jvmTarget = '11'
jvmTarget = '17'
}

buildFeatures {
buildConfig = true
}
}

Expand Down
4 changes: 2 additions & 2 deletions buildSrc/src/main/java/MyApp.kt
Expand Up @@ -2,6 +2,6 @@

object MyApp {
const val appId = "dev.jahir.blueprint.app"
const val version = 235
const val versionName = "2.3.5"
const val version = 236
const val versionName = "2.3.6"
}
6 changes: 3 additions & 3 deletions buildSrc/src/main/java/Versions.kt
Expand Up @@ -2,8 +2,8 @@

object Versions {
// Plugins
const val gradle = "7.4.2"
const val kotlin = "1.8.21"
const val gradle = "8.0.1"
const val kotlin = "1.9.0"
const val ksp = "$kotlin-1.0.11"

// OneSignal
Expand All @@ -15,5 +15,5 @@ object Versions {
const val buildTools = "33.0.2"

// Blueprint
const val blueprint = "2.3.5"
const val blueprint = "2.3.6"
}
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
@@ -1,6 +1,6 @@
#Sun Jul 24 22:47:34 CEST 2022
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME

0 comments on commit 9ba24c3

Please sign in to comment.