Skip to content

Commit

Permalink
Merge pull request #1737 from OneSignal/user-model/beta-2-release-prep
Browse files Browse the repository at this point in the history
Release 5.0.0-beta2
  • Loading branch information
brismithers committed Feb 16, 2023
2 parents 964ab9f + 937ac66 commit fde36dc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions MIGRATION_GUIDE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Android v5.0.0-beta1 Migration Guide
# Android v5.0.0-beta2 Migration Guide
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.

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


dependencies {
implementation 'com.onesignal:OneSignal:5.0.0-beta1'
implementation 'com.onesignal:OneSignal:5.0.0-beta2'
}

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:
Expand All @@ -44,10 +44,10 @@ The above statement will bring in the entire OneSignalSDK and is the desired sta


dependencies {
implementation 'com.onesignal:core:5.0.0-beta1'
implementation 'com.onesignal:in-app-messages:5.0.0-beta1'
implementation 'com.onesignal:notifications:5.0.0-beta1'
implementation 'com.onesignal:location:5.0.0-beta1'
implementation 'com.onesignal:core:5.0.0-beta2'
implementation 'com.onesignal:in-app-messages:5.0.0-beta2'
implementation 'com.onesignal:notifications:5.0.0-beta2'
implementation 'com.onesignal:location:5.0.0-beta2'
}


Expand Down
2 changes: 1 addition & 1 deletion OneSignalSDK/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
gradle.rootProject {
allprojects {
group = 'com.onesignal'
version = '5.0.0-beta1'
version = '5.0.0-beta2'
configurations.all {
resolutionStrategy.dependencySubstitution {
substitute(module('com.onesignal:OneSignal')).using(project(':OneSignal'))
Expand Down

0 comments on commit fde36dc

Please sign in to comment.