Skip to content
This repository has been archived by the owner on Aug 1, 2024. It is now read-only.

Commit

Permalink
Release v1.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
lgarbo committed Sep 21, 2023
1 parent 25c62b3 commit 27141e0
Show file tree
Hide file tree
Showing 17 changed files with 375 additions and 365 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the dependency to your module-level `build.gradle`:
```
dependencies {
[...]
implementation 'io.glassfy:androidsdk:1.5.1'
implementation 'io.glassfy:androidsdk:1.5.2'
}
```

Expand All @@ -33,7 +33,7 @@ Add the dependency to your module-level `build.gradle.kts`:
```
dependencies {
[...]
implementation("io.glassfy:androidsdk:1.5.1")
implementation("io.glassfy:androidsdk:1.5.2")
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ object Configuration {
const val minSdk = 21
private const val majorVersion = 1
private const val minorVersion = 5
private const val patchVersion = 1
private const val patchVersion = 2
const val versionName = "$majorVersion.$minorVersion.$patchVersion"
const val snapshotVersionName = "${versionName}-SNAPSHOT"
const val artifactGroup = "io.glassfy"
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/java/io/glassfy/paywall/Configuration.kt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ object Configuration {
const val minSdk = 24
private const val majorVersion = 1
private const val minorVersion = 5
private const val patchVersion = 1
private const val patchVersion = 2
const val versionName = "$majorVersion.$minorVersion.$patchVersion"
const val snapshotVersionName = "${versionName}-SNAPSHOT"
const val artifactGroup = "io.glassfy"
Expand Down
1 change: 1 addition & 0 deletions glassfy/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ dependencies {
implementation("com.android.billingclient:billing-ktx:5.2.1")

// Retrofit + OKHttp + Moshi
// implementation("com.squareup.okhttp3:logging-interceptor:4.11.0")
implementation("com.squareup.retrofit2:retrofit:2.9.0")
implementation("com.squareup.okhttp3:okhttp:4.11.0")
implementation("com.squareup.moshi:moshi:1.15.0")
Expand Down
Loading

0 comments on commit 27141e0

Please sign in to comment.