Replace jcenter with mavenCentral for build and publish 1.4.0+13

This commit is contained in:
Varakh 2022-01-20 17:40:13 +01:00
parent c16242d340
commit c82c5f8dc5
3 changed files with 43 additions and 25 deletions

View file

@ -1,6 +1,6 @@
# CHANGELOG
## 1.4.0+13 - UNRELEASED
## 1.4.0+13
* Increased target SDK to `30`
* Upgraded to Dart `2.15.1`
* Upgraded to use null-safety

View file

@ -1,7 +1,7 @@
buildscript {
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
@ -14,7 +14,7 @@ buildscript {
allprojects {
repositories {
google()
jcenter()
mavenCentral()
}
}

View file

@ -1,54 +1,72 @@
fastlane documentation
================
----
# Installation
Make sure you have the latest version of the Xcode command line tools installed:
```
```sh
xcode-select --install
```
Install _fastlane_ using
```
[sudo] gem install fastlane -NV
```
or alternatively using `brew install fastlane`
For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane)
# Available Actions
## Android
### android build_debug
```sh
[bundle exec] fastlane android build_debug
```
fastlane android build_debug
```
Build Debug
### android build_production
```sh
[bundle exec] fastlane android build_production
```
fastlane android build_production
```
Build Production
### android build
```sh
[bundle exec] fastlane android build
```
fastlane android build
```
Build
### android alpha
```sh
[bundle exec] fastlane android alpha
```
fastlane android alpha
```
Deploy a new version to the Google Play as Alpha
### android beta
```sh
[bundle exec] fastlane android beta
```
fastlane android beta
```
Deploy a new version to the Google Play as Beta
### android deploy
```sh
[bundle exec] fastlane android deploy
```
fastlane android deploy
```
Deploy a new version to the Google Play
----
This README.md is auto-generated and will be re-generated every time [fastlane](https://fastlane.tools) is run.
More information about fastlane can be found on [fastlane.tools](https://fastlane.tools).
The documentation of fastlane can be found on [docs.fastlane.tools](https://docs.fastlane.tools).
This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run.
More information about _fastlane_ can be found on [fastlane.tools](https://fastlane.tools).
The documentation of _fastlane_ can be found on [docs.fastlane.tools](https://docs.fastlane.tools).