Replace jcenter with mavenCentral for build and publish 1.4.0+13
This commit is contained in:
parent
c16242d340
commit
c82c5f8dc5
3 changed files with 43 additions and 25 deletions
|
@ -1,6 +1,6 @@
|
||||||
# CHANGELOG
|
# CHANGELOG
|
||||||
|
|
||||||
## 1.4.0+13 - UNRELEASED
|
## 1.4.0+13
|
||||||
* Increased target SDK to `30`
|
* Increased target SDK to `30`
|
||||||
* Upgraded to Dart `2.15.1`
|
* Upgraded to Dart `2.15.1`
|
||||||
* Upgraded to use null-safety
|
* Upgraded to use null-safety
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
buildscript {
|
buildscript {
|
||||||
repositories {
|
repositories {
|
||||||
google()
|
google()
|
||||||
jcenter()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
@ -14,7 +14,7 @@ buildscript {
|
||||||
allprojects {
|
allprojects {
|
||||||
repositories {
|
repositories {
|
||||||
google()
|
google()
|
||||||
jcenter()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,54 +1,72 @@
|
||||||
fastlane documentation
|
fastlane documentation
|
||||||
================
|
----
|
||||||
|
|
||||||
# Installation
|
# Installation
|
||||||
|
|
||||||
Make sure you have the latest version of the Xcode command line tools installed:
|
Make sure you have the latest version of the Xcode command line tools installed:
|
||||||
|
|
||||||
```
|
```sh
|
||||||
xcode-select --install
|
xcode-select --install
|
||||||
```
|
```
|
||||||
|
|
||||||
Install _fastlane_ using
|
For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane)
|
||||||
```
|
|
||||||
[sudo] gem install fastlane -NV
|
|
||||||
```
|
|
||||||
or alternatively using `brew install fastlane`
|
|
||||||
|
|
||||||
# Available Actions
|
# Available Actions
|
||||||
|
|
||||||
## Android
|
## Android
|
||||||
|
|
||||||
### android build_debug
|
### android build_debug
|
||||||
|
|
||||||
|
```sh
|
||||||
|
[bundle exec] fastlane android build_debug
|
||||||
```
|
```
|
||||||
fastlane android build_debug
|
|
||||||
```
|
|
||||||
Build Debug
|
Build Debug
|
||||||
|
|
||||||
### android build_production
|
### android build_production
|
||||||
|
|
||||||
|
```sh
|
||||||
|
[bundle exec] fastlane android build_production
|
||||||
```
|
```
|
||||||
fastlane android build_production
|
|
||||||
```
|
|
||||||
Build Production
|
Build Production
|
||||||
|
|
||||||
### android build
|
### android build
|
||||||
|
|
||||||
|
```sh
|
||||||
|
[bundle exec] fastlane android build
|
||||||
```
|
```
|
||||||
fastlane android build
|
|
||||||
```
|
|
||||||
Build
|
Build
|
||||||
|
|
||||||
### android alpha
|
### android alpha
|
||||||
|
|
||||||
|
```sh
|
||||||
|
[bundle exec] fastlane android alpha
|
||||||
```
|
```
|
||||||
fastlane android alpha
|
|
||||||
```
|
|
||||||
Deploy a new version to the Google Play as Alpha
|
Deploy a new version to the Google Play as Alpha
|
||||||
|
|
||||||
### android beta
|
### android beta
|
||||||
|
|
||||||
|
```sh
|
||||||
|
[bundle exec] fastlane android beta
|
||||||
```
|
```
|
||||||
fastlane android beta
|
|
||||||
```
|
|
||||||
Deploy a new version to the Google Play as Beta
|
Deploy a new version to the Google Play as Beta
|
||||||
|
|
||||||
### android deploy
|
### android deploy
|
||||||
|
|
||||||
|
```sh
|
||||||
|
[bundle exec] fastlane android deploy
|
||||||
```
|
```
|
||||||
fastlane android deploy
|
|
||||||
```
|
|
||||||
Deploy a new version to the Google Play
|
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.
|
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).
|
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).
|
||||||
|
|
Loading…
Reference in a new issue