Iurii Dorofeev
Committed by GitHub

Add mavenCentral to Gradle build (#130)

* Add mavenCentral to Gradle build

* Update CHANGELOG.md

* Update pubspec.yaml

* Update build.gradle

Co-authored-by: creativecreatorormaybenot <creativecreatorormaybenot@gmail.com>
## 0.5.3+1
* Addded mavenCentral to Gradle build.
## 0.5.3
* Removed Jcenter from Gradle build as has been sunset.
... ...
... ... @@ -5,6 +5,7 @@ buildscript {
ext.kotlin_version = '1.3.50'
repositories {
google()
mavenCentral()
}
dependencies {
... ... @@ -16,6 +17,7 @@ buildscript {
rootProject.allprojects {
repositories {
google()
mavenCentral()
}
}
... ...
... ... @@ -2,7 +2,7 @@ buildscript {
ext.kotlin_version = '1.3.50'
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
... ... @@ -14,6 +14,7 @@ buildscript {
allprojects {
repositories {
google()
mavenCentral()
}
}
... ...
... ... @@ -2,7 +2,7 @@ name: wakelock
description: >-2
Plugin that allows you to keep the device screen awake, i.e. prevent the screen from sleeping on
Android, iOS, macOS, Windows, and web.
version: 0.5.3
version: 0.5.3+1
homepage: https://github.com/creativecreatorormaybenot/wakelock/tree/master/wakelock
environment:
... ...