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 4.8.10 #2130

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 @@ -65,12 +65,12 @@ dependencies {
implementation 'com.github.bumptech.glide:glide:4.12.0'

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

/** START - Huawei Builds **/
// Omit Google / Firebase libraries for Huawei builds.
huaweiImplementation('com.onesignal:OneSignal:4.8.9') {
huaweiImplementation('com.onesignal:OneSignal:4.8.10') {
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
2 changes: 1 addition & 1 deletion OneSignalSDK/onesignal/maven-push.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class Global {
static def POM_NAME = 'OneSignal'
static def POM_ARTIFACT_ID = 'OneSignal'
static def POM_PACKAGING = 'aar'
static def VERSION_NAME = '4.8.9'
static def VERSION_NAME = '4.8.10'

static def GROUP_ID = 'com.onesignal'
static def POM_DESCRIPTION = 'OneSignal Android SDK'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ static void setInForeground(boolean inForeground) {
private static TrackAmazonPurchase trackAmazonPurchase;
private static TrackFirebaseAnalytics trackFirebaseAnalytics;

private static final String VERSION = "040809";
private static final String VERSION = "040810";
public static String getSdkVersionRaw() {
return VERSION;
}
Expand Down
Loading