mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2025-05-31 12:27:27 +02:00
fix fastlane
This commit is contained in:
parent
1be1d78979
commit
4919634a8f
1
.gitignore
vendored
1
.gitignore
vendored
@ -49,4 +49,5 @@ lib/generated_plugin_registrant.dart
|
|||||||
**/android/app/.cxx
|
**/android/app/.cxx
|
||||||
android/key.jks
|
android/key.jks
|
||||||
android/keys.json
|
android/keys.json
|
||||||
|
android/Gemfile.lock
|
||||||
lib/l10n_old
|
lib/l10n_old
|
39
android/fastlane/README.md
Normal file
39
android/fastlane/README.md
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
fastlane documentation
|
||||||
|
================
|
||||||
|
# Installation
|
||||||
|
|
||||||
|
Make sure you have the latest version of the Xcode command line tools installed:
|
||||||
|
|
||||||
|
```
|
||||||
|
xcode-select --install
|
||||||
|
```
|
||||||
|
|
||||||
|
Install _fastlane_ using
|
||||||
|
```
|
||||||
|
[sudo] gem install fastlane -NV
|
||||||
|
```
|
||||||
|
or alternatively using `brew install fastlane`
|
||||||
|
|
||||||
|
# Available Actions
|
||||||
|
## Android
|
||||||
|
### android set_build_code_beta
|
||||||
|
```
|
||||||
|
fastlane android set_build_code_beta
|
||||||
|
```
|
||||||
|
|
||||||
|
### android deploy_beta_test
|
||||||
|
```
|
||||||
|
fastlane android deploy_beta_test
|
||||||
|
```
|
||||||
|
|
||||||
|
### android deploy_release
|
||||||
|
```
|
||||||
|
fastlane android deploy_release
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
----
|
||||||
|
|
||||||
|
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).
|
23
android/fastlane/report.xml
Normal file
23
android/fastlane/report.xml
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<testsuites>
|
||||||
|
<testsuite name="fastlane.lanes">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<testcase classname="fastlane.lanes" name="0: update_fastlane" time="0.094148">
|
||||||
|
|
||||||
|
</testcase>
|
||||||
|
|
||||||
|
|
||||||
|
<testcase classname="fastlane.lanes" name="1: default_platform" time="0.000809">
|
||||||
|
|
||||||
|
</testcase>
|
||||||
|
|
||||||
|
|
||||||
|
<testcase classname="fastlane.lanes" name="2: google_play_track_version_codes" time="1.408525">
|
||||||
|
|
||||||
|
</testcase>
|
||||||
|
|
||||||
|
</testsuite>
|
||||||
|
</testsuites>
|
@ -1,7 +1,7 @@
|
|||||||
name: fluffychat
|
name: fluffychat
|
||||||
description: Chat with your friends.
|
description: Chat with your friends.
|
||||||
publish_to: none
|
publish_to: none
|
||||||
version: 0.22.1+50
|
version: 0.22.1+510
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=2.6.0 <3.0.0"
|
sdk: ">=2.6.0 <3.0.0"
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
cd android && echo $FDROID_KEY | base64 --decode --ignore-garbage > key.jks && cd ..
|
cd android
|
||||||
cd android && echo "storePassword=${FDROID_KEY_PASS}" >> key.properties && cd ..
|
echo $FDROID_KEY | base64 --decode --ignore-garbage > key.jks
|
||||||
cd android && echo "keyPassword=${FDROID_KEY_PASS}" >> key.properties && cd ..
|
echo "storePassword=${FDROID_KEY_PASS}" >> key.properties
|
||||||
cd android && echo "keyAlias=key" >> key.properties && cd ..
|
echo "keyPassword=${FDROID_KEY_PASS}" >> key.properties
|
||||||
cd android && echo "storeFile=../key.jks" >> key.properties && cd ..
|
echo "keyAlias=key" >> key.properties
|
||||||
#cd android/app && echo $GOOGLE_SERVICES >> google-services.json && cd ../..
|
echo "storeFile=../key.jks" >> key.properties
|
||||||
|
cd app && echo $GOOGLE_SERVICES >> google-services.json/..
|
||||||
|
cd ../..
|
@ -5,7 +5,7 @@ flutter pub get
|
|||||||
cd android
|
cd android
|
||||||
bundle install
|
bundle install
|
||||||
bundle update fastlane
|
bundle update fastlane
|
||||||
#echo $PLAYSTORE_DEPLOY_KEY >> keys.json
|
echo $PLAYSTORE_DEPLOY_KEY >> keys.json
|
||||||
bundle exec fastlane set_build_code_beta
|
bundle exec fastlane set_build_code_beta
|
||||||
cd ..
|
cd ..
|
||||||
flutter build appbundle --target-platform android-arm,android-arm64,android-x64
|
flutter build appbundle --target-platform android-arm,android-arm64,android-x64
|
||||||
|
Loading…
x
Reference in New Issue
Block a user