Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 5.1.15 #2131

Merged
merged 1 commit into from
Jun 18, 2024
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
4 changes: 2 additions & 2 deletions Examples/OneSignalDemo/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -84,12 +84,12 @@ dependencies {
implementation 'com.github.bumptech.glide:glide:4.12.0'

/** START - Google Play Builds **/
gmsImplementation('com.onesignal:OneSignal:5.1.14')
gmsImplementation('com.onesignal:OneSignal:5.1.15')
/** END - Google Play Builds **/

/** START - Huawei Builds **/
// Omit Google / Firebase libraries for Huawei builds.
huaweiImplementation('com.onesignal:OneSignal:5.1.14') {
huaweiImplementation('com.onesignal:OneSignal:5.1.15') {
exclude group: 'com.google.android.gms', module: 'play-services-gcm'
exclude group: 'com.google.android.gms', module: 'play-services-analytics'
exclude group: 'com.google.android.gms', module: 'play-services-location'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ object OneSignalUtils {
/**
* The version of this SDK.
*/
const val SDK_VERSION: String = "050114"
const val SDK_VERSION: String = "050115"

fun isValidEmail(email: String): Boolean {
if (email.isEmpty()) {
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.1.14'
version = '5.1.15'
configurations.all {
resolutionStrategy.dependencySubstitution {
substitute(module('com.onesignal:OneSignal')).using(project(':OneSignal'))
Expand Down
Loading