Skip to content

Commit

Permalink
Add live update manager proxy
Browse files Browse the repository at this point in the history
  • Loading branch information
rlepinski committed Oct 1, 2024
1 parent 25c0760 commit 7699182
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion AirshipFrameworkProxy.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

Pod::Spec.new do |s|
s.version = "9.1.0"
s.version = "9.1.1"
s.name = "AirshipFrameworkProxy"
s.summary = "Airship iOS mobile framework proxy"
s.documentation_url = "https://docs.airship.com/platform/mobile"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import com.urbanairship.android.framework.proxy.ProxyStore
import com.urbanairship.automation.InAppAutomation
import com.urbanairship.featureflag.FeatureFlagManager
import com.urbanairship.json.JsonValue
import com.urbanairship.liveupdate.LiveUpdateManager
import com.urbanairship.messagecenter.MessageCenter
import com.urbanairship.preferencecenter.PreferenceCenter

Expand Down Expand Up @@ -50,6 +51,11 @@ public class AirshipProxy(
UAirship.shared().localeManager
}

public val liveUpdateManager: LiveUpdatesManagerProxy = LiveUpdatesManagerProxy {
ensureTakeOff()
LiveUpdateManager.shared()
}

public val messageCenter: MessageCenterProxy = MessageCenterProxy(proxyStore) {
ensureTakeOff()
MessageCenter.shared()
Expand Down
2 changes: 1 addition & 1 deletion android/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[versions]

# Airship
airshipProxy = '9.1.0'
airshipProxy = '9.1.1'
airship = '18.3.1'

# Gradle plugins
Expand Down

0 comments on commit 7699182

Please sign in to comment.