Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions BUILD.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ Enter the following command in the terminal to build the project:
- **Android APK**

```
flutter build apk --flavor main
flutter build apk --flavor base
```
or

```
flutter build apk --flavor main --target-platform [android-arm|android-arm64|android-x64]
flutter build apk --flavor base --target-platform [android-arm|android-arm64|android-x64]
```

The built APK will be located in the `build/app/outputs/flutter-apk/` directory.
Expand Down
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ android {

splits {
abi {
def isBuildingBundle = gradle.startParameter.taskNames.any { it.lowercase().contains("bundle") }
def isBuildingBundle = gradle.startParameter.taskNames.any { it.toLowerCase().contains("bundle") }
enable !isBuildingBundle
reset()
include "armeabi-v7a", "arm64-v8a", "x86_64"
Expand Down
Loading