Skip to content

Commit

Permalink
Update to Blueprint 2.3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
jahirfiquitiva committed Jul 29, 2023
1 parent 9ba24c3 commit 0560a1e
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
9 changes: 9 additions & 0 deletions app/proguard-rules.pro
Expand Up @@ -57,5 +57,14 @@
-if interface * { @retrofit2.http.* <methods>; }
-keep,allowobfuscation interface <1>

# Keep generic signature of Call, Response (R8 full mode strips signatures from non-kept items).
-keep,allowobfuscation,allowshrinking interface retrofit2.Call
-keep,allowobfuscation,allowshrinking class retrofit2.Response

# With R8 full mode generic signatures are stripped for classes that are not
# kept. Suspend functions are wrapped in continuations where the type argument
# is used.
-keep,allowobfuscation,allowshrinking class kotlin.coroutines.Continuation

-dontwarn
-ignorewarnings
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 = 236
const val versionName = "2.3.6"
const val version = 237
const val versionName = "2.3.7"
}
6 changes: 3 additions & 3 deletions buildSrc/src/main/java/Versions.kt
Expand Up @@ -2,9 +2,9 @@

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

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

// Blueprint
const val blueprint = "2.3.6"
const val blueprint = "2.3.7"
}
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-8.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME

0 comments on commit 0560a1e

Please sign in to comment.