-
-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Build system updates (#94) #135
Conversation
ef435b9
to
17024c6
Compare
501499e
to
7cbf675
Compare
8ac22db
to
8a481bc
Compare
docs/development/automation.md
Outdated
|
||
All commands are called from the root directory (using terminal). | ||
- During development, you can run `doit check:android` or `doit test:android` frequently. These commands are fast and do the most basic checks. They don't do a full build and don't require a connected device. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Slight improvement (not critical) => "During development, you may frequently run doit check:android
or doit test:android
. These commands are quick and perform the most basic checks. They do not perform a full build and do not require a device to be connected."
docs/development/automation.md
Outdated
|
||
## Run linters | ||
- From time to time, run `doit build:android` to do a full build, and `doit integration:android` to run integration tests on the connected device. These commands are heavy. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Slight improvement (not critical) => "Run doit build:android
from time to time to perform a full build and doit integration:android
to run integration tests on the connected device. These commands are heavy."
docs/development/automation.md
Outdated
``` | ||
|
||
## Generate code | ||
|
||
Code generation is based on `build_runner` package. | ||
|
||
Run all code generators: | ||
Run all code generation (but not resource generation described in next section): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Slight improvement (not critical) => "Run all code generation (but not resource generation, described in the next section):"
d6caddf
to
07c4b54
Compare
Thanks, applied! |
Fixes a warning described here: https://docs.flutter.dev/release/breaking-changes/flutter-generate-i10n-source
Current version produces AndroidManifest which triggers a warning. New version works fine.
New flutter sdk supports only kotlin >=1.8.10
#94