Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions packages/helium_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 3.3.3
- Updated helium-swift dependency to 4.4.4

## 3.3.2
- Updated Helium Android dependency to 4.4.1

Expand Down
2 changes: 1 addition & 1 deletion packages/helium_flutter/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ android {
}

dependencies {
implementation("com.tryhelium.paywall:core:4.4.1")
implementation("com.tryhelium.paywall:core:4.4.3")
implementation("com.google.code.gson:gson:2.10.1")
implementation("com.android.billingclient:billing:8.0.0")
testImplementation("org.jetbrains.kotlin:kotlin-test")
Expand Down
2 changes: 1 addition & 1 deletion packages/helium_flutter/ios/helium_flutter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ A Flutter plugin that integrates the Helium SDK for iOS.
s.dependency 'Flutter'

# note that the dependency in Package.swift is what's actually used... we might be able to remove this but safer to keep in for now
s.dependency 'Helium', '4.4.1'
s.dependency 'Helium', '4.4.4'

s.platform = :ios, '15.0'

Expand Down
2 changes: 1 addition & 1 deletion packages/helium_flutter/ios/helium_flutter/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ let package = Package(
.library(name: "helium-flutter", targets: ["helium_flutter"])
],
dependencies: [
.package(url: "https://github.com/cloudcaptainai/helium-swift.git", exact: "4.4.1")],
.package(url: "https://github.com/cloudcaptainai/helium-swift.git", exact: "4.4.4")],
targets: [
.target(
name: "helium_flutter",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ class FLNativeViewFactory: NSObject, FlutterPlatformViewFactory {

class FLNativeView: NSObject, FlutterPlatformView {
let arguments: Any?
private var hostingControllerRef: UIViewController?
private lazy var _view: UIView = {
let args = arguments as? [String: Any] ?? [:]
let trigger = args["trigger"] as? String ?? ""
Expand Down Expand Up @@ -66,6 +67,7 @@ class FLNativeView: NSObject, FlutterPlatformView {
}
let hostingController = UIHostingController(rootView: paywallView)
hostingController.view.backgroundColor = .clear
hostingControllerRef = hostingController
return hostingController.view
}
}
2 changes: 1 addition & 1 deletion packages/helium_flutter/lib/core/const/contants.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SDK version - keep in sync with pubspec.yaml
const String heliumFlutterSdkVersion = '3.3.2';
const String heliumFlutterSdkVersion = '3.3.3';

//Native view type
const String upsellViewForTrigger = 'upsellViewForTrigger';
Expand Down
2 changes: 1 addition & 1 deletion packages/helium_flutter/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: helium_flutter
description: "Flutter Paywall SDK for Helium. Remotely build and auto-optimize paywalls (tryhelium.com)"

# Remember to update CHANGELOG.md when releasing a new version!!! (see CONTRIBUTING.md)
version: 3.3.2
version: 3.3.3

homepage: https://tryhelium.com
license: MIT
Expand Down
3 changes: 3 additions & 0 deletions packages/helium_revenuecat/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 3.3.3
- Updated helium-swift dependency to 4.4.4

## 3.3.2
- Updated Helium Android dependency to 4.4.1

Expand Down
2 changes: 1 addition & 1 deletion packages/helium_revenuecat/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: helium_revenuecat
description: "Helium RevenueCat SDK. Remotely build and auto-optimize paywalls (tryhelium.com)"
version: 3.3.2
version: 3.3.3
homepage: https://tryhelium.com

environment:
Expand Down
Loading