Skip to content

Commit 937ac66

Browse files
committed
Release 5.0.0-beta2
1 parent 8499e90 commit 937ac66

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

MIGRATION_GUIDE.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Android v5.0.0-beta1 Migration Guide
1+
# Android v5.0.0-beta2 Migration Guide
22
In this release, we are making a significant shift from a device-centered model to a user-centered model. A user-centered model allows for more powerful omni-channel integrations within the OneSignal platform.
33

44
This migration guide will walk you through the Android SDK v5.0.0 changes as a result of this shift.
@@ -32,7 +32,7 @@ Open your App’s `build.gradle (Module: app)` file, add (or update) the followi
3232

3333

3434
dependencies {
35-
implementation 'com.onesignal:OneSignal:5.0.0-beta1'
35+
implementation 'com.onesignal:OneSignal:5.0.0-beta2'
3636
}
3737

3838
The above statement will bring in the entire OneSignalSDK and is the desired state for most integrations. For greater flexibility you can alternatively specify individual modules that make up the full SDK. The possible modules are:
@@ -44,10 +44,10 @@ The above statement will bring in the entire OneSignalSDK and is the desired sta
4444

4545

4646
dependencies {
47-
implementation 'com.onesignal:core:5.0.0-beta1'
48-
implementation 'com.onesignal:in-app-messages:5.0.0-beta1'
49-
implementation 'com.onesignal:notifications:5.0.0-beta1'
50-
implementation 'com.onesignal:location:5.0.0-beta1'
47+
implementation 'com.onesignal:core:5.0.0-beta2'
48+
implementation 'com.onesignal:in-app-messages:5.0.0-beta2'
49+
implementation 'com.onesignal:notifications:5.0.0-beta2'
50+
implementation 'com.onesignal:location:5.0.0-beta2'
5151
}
5252

5353

OneSignalSDK/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
gradle.rootProject {
44
allprojects {
55
group = 'com.onesignal'
6-
version = '5.0.0-beta1'
6+
version = '5.0.0-beta2'
77
configurations.all {
88
resolutionStrategy.dependencySubstitution {
99
substitute(module('com.onesignal:OneSignal')).using(project(':OneSignal'))

0 commit comments

Comments
 (0)