This repository was archived by the owner on Oct 31, 2022. It is now read-only.
File tree 3 files changed +6
-6
lines changed
src/main/groovy/com/onesignal/androidsdk
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -8,12 +8,12 @@ This Gradle plugin helps make the [OneSignal Android SDK](https://github.com/One
8
8
buildscript {
9
9
repositories {
10
10
// ...
11
- maven { url 'https://plugins.gradle.org/m2/' } // Gradle Plugin Portal
11
+ gradlePluginPortal()
12
12
}
13
13
dependencies {
14
14
// ...
15
15
// 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]'
17
17
}
18
18
}
19
19
```
@@ -40,7 +40,7 @@ Applies to the following libraries:
40
40
## Compatibility
41
41
* 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.
42
42
- 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
44
44
45
45
## Change Log
46
46
See this repository's [ release tags] ( https://github.com/OneSignal/OneSignal-Gradle-Plugin/releases ) for a complete change log.
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ dependencies {
46
46
47
47
48
48
group = ' com.onesignal'
49
- version = ' 0.12.10 '
49
+ version = ' 0.13.0 '
50
50
description ' OneSignal Gradle Plugin'
51
51
// Run to upload a new version to the Gradle Plugin Portal
52
52
// ./gradlew publishPlugins
@@ -103,6 +103,6 @@ publishing {
103
103
// maven { url uri('../../repo') }
104
104
// 3. Update '../../repo' from above to your correct relative path
105
105
// 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]'
107
107
// 5. To your app/build.gradle add
108
108
// apply plugin: com.onesignal.androidsdk.GradleProjectPlugin
Original file line number Diff line number Diff line change @@ -277,7 +277,7 @@ class GradleProjectPlugin implements Plugin<Project> {
277
277
@Override
278
278
void apply (Project inProject ) {
279
279
project = inProject
280
- project. logger. info(' Initializing OneSignal-Gradle-Plugin 0.12.10 ' )
280
+ project. logger. info(' Initializing OneSignal-Gradle-Plugin 0.13.0 ' )
281
281
282
282
hasFullPlayServices = false
283
283
gradleV2PostAGPApplyFallback = false
You can’t perform that action at this time.
0 commit comments