Our new user-centric APIs and v5.x.x SDKs offer an improved user and data management experience. However, they may not be at 1:1 feature parity with our previous versions yet.
If you are migrating an existing app, we suggest using iOS and Android’s Phased Rollout capabilities to ensure that there are no unexpected issues or edge cases. Here is the documentation for each:
If you run into any challenges or have concerns, please contact our support team at support@onesignal.com
OneSignal is a free email, sms, push notification, and in-app message service for mobile apps. This SDK makes it easy to integrate your Flutter iOS and/or Android apps with OneSignal.
See the Setup Guide for setup instructions.
If your app does not use OneSignal.Location, you can exclude the native OneSignal location module from iOS and Android builds.
For Swift Package Manager, CocoaPods, and Android Gradle builds, set
ONESIGNAL_DISABLE_LOCATION=true in the environment before resolving or
building. The value is case-insensitive, and 1 is also accepted.
In GitHub Actions, you can set it once at the job or step level so Swift Package Manager, CocoaPods, and Gradle builds inherit it:
env:
ONESIGNAL_DISABLE_LOCATION: trueWith the location module disabled, calls to OneSignal.Location are ignored on Android and OneSignal.Location.isShared() returns false.
The environment variable is only read when dependencies are resolved, and each platform caches the resolved set. If you change the variable on an existing project, you must clear the relevant cache and re-resolve in a shell where the variable is exported. Otherwise a stale build can keep (or drop) the location module regardless of the new value.
Important
When using Xcode or Android Studio, launch the IDE from a terminal that has
ONESIGNAL_DISABLE_LOCATION exported. An IDE launched from the Dock/Finder
does not inherit variables set only in your shell profile.
Swift Package Manager:
flutter clean
rm -rf ios/.build
rm -rf ~/Library/Caches/org.swift.swiftpm ~/Library/Developer/Xcode/DerivedData/*
ONESIGNAL_DISABLE_LOCATION=true flutter build iosIn Xcode, you can instead use File → Packages → Reset Package Caches (with the variable exported), then build.
CocoaPods:
cd ios
pod deintegrate
rm -rf Pods Podfile.lock
ONESIGNAL_DISABLE_LOCATION=true pod installAndroid Gradle (Gradle re-reads the variable on each configuration, so a clean build is usually enough):
ONESIGNAL_DISABLE_LOCATION=true flutter build apkOn CI, key any DerivedData / SwiftPM / CocoaPods / Gradle caches on the value of
ONESIGNAL_DISABLE_LOCATION (or skip restoring them for no-location builds) so a
restored cache does not resurrect the location module.
See this repository's release tags for a complete change log of every released version.
Please visit this repository's Github issue tracker for feature requests and bug reports related specificly to the SDK. For account issues and support please contact OneSignal support from the OneSignal.com dashboard.
To make things easier, we have published a demo project in the /example folder of this repository.
- Tested from iOS 8 to iOS 15
- Tested from Android 4.0.3 (API level 15) to Android 12.0 (31)
