Skip to content

Commit

Permalink
build: update build runner
Browse files Browse the repository at this point in the history
(flutter packages pub run build_runner build after rm .dart_tool)
  • Loading branch information
PiTrem committed Jul 15, 2024
1 parent 0e00f73 commit aa7b54f
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 16 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/flutter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,15 @@ jobs:
# keyAlias="${{ secrets.KEY_ALIAS }}
# storeFile=keystore.jks
run: |
echo keyPassword="${{ secrets.KEY_PASSWORD }}" > ./android/key.properties
echo storePassword="${{ secrets.STORE_PASSWORD }}" >> ./android/key.properties
echo keyAlias="${{ secrets.KEY_ALIAS }}" >> ./android/key.properties
echo storeFile=keystore.jks >> ./android/key.properties
echo "keyPassword=${{ secrets.KEY_PASSWORD }}" > ./android/key.properties
echo "storePassword=${{ secrets.STORE_PASSWORD }}" >> ./android/key.properties
echo "keyAlias=${{ secrets.KEY_ALIAS }}" >> ./android/key.properties
echo "storeFile=keystore.jks" >> ./android/key.properties
echo "${{ secrets.KEY_JKS }}" | base64 --decode > ./android/app/keystore.jks
echo
# - run: flutter build apk
- run: flutter build apk

- run: flutter build appbundle

Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
/build/

# Web related
lib/generated_plugin_registrant.dart

# Symbolication related
app.*.symbols
Expand Down
4 changes: 2 additions & 2 deletions DEV.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ samples, guidance on mobile development, and a full API reference.

```
flutter.minSdkVersion=21
flutter.targetSdkVersion=30
flutter.compileSdkVersion=30
flutter.targetSdkVersion=33
flutter.compileSdkVersion=33
```

## Editor Config for Sublime Text
Expand Down
6 changes: 3 additions & 3 deletions lib/models/sample_task.g.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions lib/models/scan_result.g.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,10 @@ packages:
dependency: "direct dev"
description:
name: build_runner
sha256: "3ac61a79bfb6f6cc11f693591063a7f19a7af628dc52f141743edac5c16e8c22"
sha256: "644dc98a0f179b872f612d3eb627924b578897c629788e858157fa5e704ca0c7"
url: "https://pub.dev"
source: hosted
version: "2.4.9"
version: "2.4.11"
build_runner_core:
dependency: transitive
description:
Expand Down Expand Up @@ -981,5 +981,5 @@ packages:
source: hosted
version: "3.1.2"
sdks:
dart: ">=3.3.0 <4.0.0"
dart: ">=3.4.0 <4.0.0"
flutter: ">=3.18.0-18.0.pre.54"

0 comments on commit aa7b54f

Please sign in to comment.