Skip to content

Commit

Permalink
Version 4.5.1 (#45)
Browse files Browse the repository at this point in the history
* Bump Android and iOS SDKs

* Update bridge version for iOS
  • Loading branch information
chouaibMo authored Oct 21, 2024
1 parent 37bd527 commit 8c93683
Show file tree
Hide file tree
Showing 75 changed files with 29 additions and 1,617 deletions.
3 changes: 2 additions & 1 deletion VERSIONS.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,5 @@ This file provides the underlying native SDK versions that the React Native SDK
| 4.3.4 | 4.3.6 | 4.3.5 |
| 4.4.0 | 4.4.2 | 4.4.2 |
| 4.4.1 | 4.4.2 | 4.4.2 |
| 4.5.0 | 4.5.0 | 4.5.1 |
| 4.5.0 | 4.5.0 | 4.5.1 |
| 4.5.1 | 4.5.2 | 4.5.5 |
2 changes: 2 additions & 0 deletions purchasely/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## 4.5.1
- Improvements and bug fixes.
## 4.5.0
- Markdown: Enhanced text formatting capabilities by supporting markdown syntax for bold, italic, strikethrough, and links. Reach out to the Customer Success Team to activate it for your account.
- Amount Tag Pricing: Improved price display on AMOUNT tag by hiding decimals when the price is a whole number.
Expand Down
5 changes: 3 additions & 2 deletions purchasely/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:7.3.1'
classpath 'com.android.tools.build:gradle:8.7.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
Expand All @@ -25,6 +25,7 @@ apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'

android {
namespace 'io.purchasely.purchasely_flutter'
compileSdkVersion 31

compileOptions {
Expand All @@ -50,5 +51,5 @@ dependencies {

api 'androidx.lifecycle:lifecycle-runtime-ktx:2.4.0'

api 'io.purchasely:core:4.5.1'
api 'io.purchasely:core:4.5.5'
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
3 changes: 1 addition & 2 deletions purchasely/android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="io.purchasely.purchasely_flutter">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<uses-feature
android:name="android.software.leanback"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ class PurchaselyFlutterPlugin: FlutterPlugin, MethodCallHandler, ActivityAware,
.userId(userId)
.build()

Purchasely.sdkBridgeVersion = "4.5.0"
Purchasely.sdkBridgeVersion = "4.5.1"
Purchasely.appTechnology = PLYAppTechnology.FLUTTER

Purchasely.start { isConfigured, error ->
Expand Down
6 changes: 4 additions & 2 deletions purchasely/example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"

android {
namespace 'io.purchasely.sample'

compileSdkVersion 33

compileOptions {
Expand Down Expand Up @@ -66,6 +68,6 @@ flutter {
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"

implementation 'io.purchasely:google-play:4.5.1'
implementation 'io.purchasely:player:4.5.1'
implementation 'io.purchasely:google-play:4.5.5'
implementation 'io.purchasely:player:4.5.5'
}
3 changes: 1 addition & 2 deletions purchasely/example/android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="io.purchasely.sample">
xmlns:tools="http://schemas.android.com/tools">
<application
android:label="purchasely_flutter_example"
android:icon="@mipmap/ic_launcher">
Expand Down
2 changes: 1 addition & 1 deletion purchasely/example/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:7.3.1'
classpath 'com.android.tools.build:gradle:8.7.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
2 changes: 1 addition & 1 deletion purchasely/ios/Classes/SwiftPurchaselyFlutterPlugin.swift
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ public class SwiftPurchaselyFlutterPlugin: NSObject, FlutterPlugin {
return
}

Purchasely.setSdkBridgeVersion("4.5.0")
Purchasely.setSdkBridgeVersion("4.5.1")
Purchasely.setAppTechnology(PLYAppTechnology.flutter)

let logLevel = PLYLogger.LogLevel(rawValue: (arguments["logLevel"] as? Int) ?? PLYLogger.LogLevel.debug.rawValue) ?? PLYLogger.LogLevel.debug
Expand Down
2 changes: 1 addition & 1 deletion purchasely/ios/purchasely_flutter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Flutter Plugin for Purchasely SDK
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }
s.swift_version = '5.0'

s.dependency 'Purchasely', '4.5.0'
s.dependency 'Purchasely', '4.5.2'
s.static_framework = true

end
2 changes: 1 addition & 1 deletion purchasely/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: purchasely_flutter
description: Purchasely is a solution to ease the integration and boost your In-App Purchase & Subscriptions on the App Store, Google Play Store and Huawei App Gallery.
version: 4.5.0
version: 4.5.1
homepage: https://www.purchasely.com/

environment:
Expand Down
2 changes: 2 additions & 0 deletions purchasely_android_player/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## 4.5.1
- Improvements and bug fixes.
## 4.5.0
- Markdown: Enhanced text formatting capabilities by supporting markdown syntax for bold, italic, strikethrough, and links. Reach out to the Customer Success Team to activate it for your account.
- Amount Tag Pricing: Improved price display on AMOUNT tag by hiding decimals when the price is a whole number.
Expand Down
2 changes: 1 addition & 1 deletion purchasely_android_player/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,5 @@ android {
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"

api 'io.purchasely:player:4.5.1'
api 'io.purchasely:player:4.5.5'
}
47 changes: 0 additions & 47 deletions purchasely_android_player/example/.gitignore

This file was deleted.

16 changes: 0 additions & 16 deletions purchasely_android_player/example/README.md

This file was deleted.

29 changes: 0 additions & 29 deletions purchasely_android_player/example/analysis_options.yaml

This file was deleted.

13 changes: 0 additions & 13 deletions purchasely_android_player/example/android/.gitignore

This file was deleted.

71 changes: 0 additions & 71 deletions purchasely_android_player/example/android/app/build.gradle

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading

0 comments on commit 8c93683

Please sign in to comment.