Skip to content
This repository was archived by the owner on Oct 31, 2022. It is now read-only.

Commit 2f65a9c

Browse files
committed
0.9.2 Release commit
1 parent 7262fdd commit 2f65a9c

File tree

3 files changed

+26
-7
lines changed

3 files changed

+26
-7
lines changed

LICENSE

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Modified MIT License
22

3-
Copyright 2017 OneSignal
3+
Copyright 2018 OneSignal
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -21,4 +21,20 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2121
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2222
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2323
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24-
THE SOFTWARE.
24+
THE SOFTWARE.
25+
26+
27+
Includes portions from the Gradle project:
28+
Copyright 2013 the original author or authors.
29+
30+
Licensed under the Apache License, Version 2.0 (the "License");
31+
you may not use this file except in compliance with the License.
32+
You may obtain a copy of the License at
33+
34+
http://www.apache.org/licenses/LICENSE-2.0
35+
36+
Unless required by applicable law or agreed to in writing, software
37+
distributed under the License is distributed on an "AS IS" BASIS,
38+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
39+
See the License for the specific language governing permissions and
40+
limitations under the License.

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ buildscript {
1313
dependencies {
1414
// ...
1515
// OneSignal-Gradle-Plugin
16-
classpath 'gradle.plugin.com.onesignal:onesignal-gradle-plugin:[0.8.2, 0.99.99]'
16+
classpath 'gradle.plugin.com.onesignal:onesignal-gradle-plugin:[0.9.0, 0.99.99]'
1717
}
1818
}
1919
```
@@ -25,18 +25,21 @@ apply plugin: 'com.onesignal.androidsdk.onesignal-gradle-plugin'
2525
4. Clean and rebuild
2626

2727
## Features
28-
- Automatically aligns versions of module dependencies under the same group. This fixes compile and runtime errors due to mismatched interdependencies. Applies to the following libraries;
28+
- Automatically aligns versions of module dependencies under the same group. This fixes compile and runtime errors due to mismatched interdependencies.
29+
Applies to the following libraries:
2930
- `com.google.android.gms`
3031
- `com.google.firebase`
3132
- `com.android.support`
3233
- Ensures `com.android.support` is never higher than `compileSdkVersion`
3334
- Ensures a compatible OneSignal SDK version for the `targetSdkVersion` you're using
3435
- Ensures new enought OneSignal SDK is included when `com.android.support` is upgraded
36+
- Calculates intersecting range of 2 version ranges
37+
- Including backwards capability with Gradle 2.14.1
3538
- Future: Other warnings and checks specific to OneSignal such as app_id and notification icons
3639

3740
## Compatibility
3841
Compatible with Gradle 2.14.1+ and AGP (Android Gradle Plugin) 2.2.3+
39-
* Tested up to Gradle 4.6 and AGP 3.1.0
42+
* Tested up to Gradle 4.7 and AGP 3.1.2
4043

4144
## Change Log
4245
See this repository's [release tags](https://github.com/OneSignal/OneSignal-Gradle-Plugin/releases) for a complete change log.

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ dependencies {
2828

2929

3030
group = 'com.onesignal'
31-
version = '0.8.2'
31+
version = '0.9.0'
3232
description 'OneSignal Gradle Plugin'
3333
// Run to upload a new version to the Gradle Plugin Portal
3434
// ./gradlew publishPlugins
@@ -80,6 +80,6 @@ uploadArchives {
8080
// maven { url uri('../../repo') }
8181
// 3. Update '../../repo' from above to your correct relative path
8282
// 4. Add to buildscript -> dependencies
83-
// classpath 'com.onesignal:onesignal-gradle-plugin:[0.8.2, 0.99.99]'
83+
// classpath 'com.onesignal:onesignal-gradle-plugin:[0.9.0, 0.99.99]'
8484
// 5. To your app/build.gradle add
8585
// apply plugin: com.onesignal.androidsdk.GradleProjectPlugin

0 commit comments

Comments
 (0)