Skip to content

Commit

Permalink
Merge pull request #124 from OneSignal/releaese_020002
Browse files Browse the repository at this point in the history
Release commit 2.0.2
  • Loading branch information
jkasten2 authored Aug 9, 2019
2 parents 0a32cdb + e530ae9 commit f154482
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ For account issues and support please contact OneSignal support from the [OneSig
To make things easier, we have published a demo project in the `/example` folder of this repository.

#### Supports:
* Tested from iOS 8 to iOS 12.3
* Tested from iOS 8 to iOS 13
* Tested from Android 4.0.3 (API level 15) to Android 9.0 (28)
13 changes: 7 additions & 6 deletions android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'com.onesignal.flutter'
version '2.0.0'
version '2.0.2'

buildscript {
repositories {
Expand Down Expand Up @@ -34,7 +34,7 @@ android {
}

dependencies {
compile('com.onesignal:OneSignal:3.11.1')
compile('com.onesignal:OneSignal:3.11.2')
}

// Adds required manifestPlaceholders keys to allow mainifest merge gradle step to complete
Expand All @@ -49,12 +49,13 @@ class DefaultManifestPlaceHolders {
static void addManifestToAppProject(Project proj) {
def androidApp = proj.android
MANIFEST_PLACEHOLDERS_DEFAULTS.each { defKey, defValue ->
if (!androidApp.defaultConfig.manifestPlaceholders.containsKey(defKey))
if (!androidApp.defaultConfig.manifestPlaceholders.containsKey(defKey)) {
androidApp.defaultConfig.manifestPlaceholders[defKey] = defValue

androidApp.buildTypes.each { buildType ->
if (!buildType.manifestPlaceholders.containsKey(defKey))
buildType.manifestPlaceholders[defKey] = defValue
androidApp.buildTypes.each { buildType ->
if (!buildType.manifestPlaceholders.containsKey(defKey))
buildType.manifestPlaceholders[defKey] = defValue
}
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions ios/onesignal_flutter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
Pod::Spec.new do |s|
s.name = 'onesignal_flutter'
s.version = '2.0.0'
s.version = '2.0.2'
s.summary = 'The OneSignal Flutter SDK'
s.description = 'Allows you to easily add OneSignal to your flutter projects, to make sending and handling push notifications easy'
s.homepage = 'https://www.onesignal.com'
Expand All @@ -13,7 +13,7 @@ Pod::Spec.new do |s|
s.source_files = 'Classes/**/*'
s.public_header_files = 'Classes/**/*.h'
s.dependency 'Flutter'
s.dependency 'OneSignal', '>= 2.9.5', '< 3.0'
s.dependency 'OneSignal', '2.10.1'
s.ios.deployment_target = '8.0'
s.static_framework = true
end
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: onesignal_flutter
description: OneSignal is a free push notification service for mobile apps. This plugin makes it easy to integrate your flutter app with OneSignal
version: 2.0.1
version: 2.0.2
author: Brad Hesse <brad@onesignal.com>, Josh Kasten <josh@onesignal.com>
homepage: https://github.com/OneSignal/OneSignal-Flutter-SDK

Expand Down

0 comments on commit f154482

Please sign in to comment.