Add Flutter text to speech demo (#1087)

This commit is contained in:
Fangjun Kuang
2024-07-08 11:23:11 +08:00
committed by GitHub
parent 1fe12c5107
commit e832d356c7
133 changed files with 6686 additions and 143 deletions

View File

@@ -0,0 +1,21 @@
# Note about android
Useful commands
```bash
flutter build apk --split-per-abi --release
```
The above commands print the following:
```
✓ Built build/app/outputs/flutter-apk/app-armeabi-v7a-release.apk (94.8MB)
✓ Built build/app/outputs/flutter-apk/app-arm64-v8a-release.apk (96.1MB)
✓ Built build/app/outputs/flutter-apk/app-x86_64-release.apk (96.9MB)
```
Note that it does not generate APK for `x86`.
```
adb install build/app/outputs/flutter-apk/app-arm64-v8a-release.apk
```