You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added new notification settings, setSubscription, and postNotification
* Calling enableInAppAlertNotification with true will enable notifications to be displayed as alerts when one is received when the user is in your app.
- On Android you can call enableNotificationsWhenActive with true to place notifications in the notification area instead.
* Calling setSubscription with false will unsubscribe the user from receiving push notifications.
* postNotification lets you create user to user notifications and schedule future notifications without have to make calls to the REST API yourself.
* Added more logging to help debug issues.
* Android devices now retry to subscribe to GCM for push notifications if it fails due to a connection issue.
* Fixed Android bug where the notification opened callback would stop firing after the user exited your app by pressing the back button.
Copy file name to clipboardexpand all lines: LICENSE
+10
Original file line number
Diff line number
Diff line change
@@ -111,3 +111,13 @@ Includes portions from DTTJailbreakDetection:
111
111
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
112
112
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
113
113
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
114
+
115
+
Includes portions from BSMobileProvision:
116
+
Copyright (c) 2013, The Blindsight Corporation
117
+
All rights reserved.
118
+
119
+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
120
+
121
+
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
122
+
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
123
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
0 commit comments