Files
readest/fastlane/README.md
T
Huang Xin a23427ccc6 fix(widget): avoid recycling aliased source bitmap for 2:3 covers (#4850)
Bitmap.createBitmap returns the same immutable instance when the
center-crop covers the whole source, which happens for covers that
decode to exactly 2:3. writeThumbnail then recycled that instance
before createScaledBitmap used it, crashing with "cannot use a
recycled source in createBitmap". Guard the recycle the same way the
scaled vs cropped case is already guarded, and add an instrumented
regression test.

Also bundles a pending widget debugging note and a regenerated
fastlane README that were staged in the working tree.

Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-29 04:13:17 +02:00

68 lines
1.2 KiB
Markdown

fastlane documentation
----
# Installation
Make sure you have the latest version of the Xcode command line tools installed:
```sh
xcode-select --install
```
For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane)
# Available Actions
### release_ios
```sh
[bundle exec] fastlane release_ios
```
Submit the uploaded iOS build for App Store review and to TestFlight
### release_macos
```sh
[bundle exec] fastlane release_macos
```
Submit the uploaded macOS build for App Store review and to TestFlight
----
## Android
### android upload_production
```sh
[bundle exec] fastlane android upload_production
```
Upload AAB to Google Play Production
### android upload_internal
```sh
[bundle exec] fastlane android upload_internal
```
Upload AAB to Google Play Internal Testing
### android upload_beta
```sh
[bundle exec] fastlane android upload_beta
```
Upload AAB to Google Play Beta
----
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).