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

Commit 6d5a204

Browse files
authored
Merge pull request #156 from OneSignal/rel/0.13.0
Release 0.13.0
2 parents 5b953d6 + e8f55b4 commit 6d5a204

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ This Gradle plugin helps make the [OneSignal Android SDK](https://github.com/One
88
buildscript {
99
repositories {
1010
// ...
11-
maven { url 'https://plugins.gradle.org/m2/' } // Gradle Plugin Portal
11+
gradlePluginPortal()
1212
}
1313
dependencies {
1414
// ...
1515
// OneSignal-Gradle-Plugin
16-
classpath 'gradle.plugin.com.onesignal:onesignal-gradle-plugin:[0.12.10, 0.99.99]'
16+
classpath 'gradle.plugin.com.onesignal:onesignal-gradle-plugin:[0.13.0, 0.99.99]'
1717
}
1818
}
1919
```
@@ -40,7 +40,7 @@ Applies to the following libraries:
4040
## Compatibility
4141
* Recommend using AGP 3.0.0 or newer ([Android Gradle Plugin](https://developer.android.com/studio/releases/gradle-plugin)) and Gradle 4.1 or newer.
4242
- Compatible with Gradle 2.14.1+ and AGP 2.2.3+
43-
- Tested up to Gradle 6.7.1 and AGP 4.1.1
43+
- Tested up to Gradle 7.0.2 and AGP 4.2.1
4444

4545
## Change Log
4646
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
@@ -46,7 +46,7 @@ dependencies {
4646

4747

4848
group = 'com.onesignal'
49-
version = '0.12.10'
49+
version = '0.13.0'
5050
description 'OneSignal Gradle Plugin'
5151
// Run to upload a new version to the Gradle Plugin Portal
5252
// ./gradlew publishPlugins
@@ -103,6 +103,6 @@ publishing {
103103
// maven { url uri('../../repo') }
104104
// 3. Update '../../repo' from above to your correct relative path
105105
// 4. Add to buildscript -> dependencies
106-
// classpath 'com.onesignal:onesignal-gradle-plugin:[0.12.10, 0.99.99]'
106+
// classpath 'com.onesignal:onesignal-gradle-plugin:[0.13.0, 0.99.99]'
107107
// 5. To your app/build.gradle add
108108
// apply plugin: com.onesignal.androidsdk.GradleProjectPlugin

src/main/groovy/com/onesignal/androidsdk/GradleProjectPlugin.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ class GradleProjectPlugin implements Plugin<Project> {
277277
@Override
278278
void apply(Project inProject) {
279279
project = inProject
280-
project.logger.info('Initializing OneSignal-Gradle-Plugin 0.12.10')
280+
project.logger.info('Initializing OneSignal-Gradle-Plugin 0.13.0')
281281

282282
hasFullPlayServices = false
283283
gradleV2PostAGPApplyFallback = false

0 commit comments

Comments
 (0)