Skip to content

Commit 3615e19

Browse files
Fix Android SDK bump workflow (#3090)
* Ensure Gradle wrapper exists before generating JNI bindings Co-authored-by: giancarlo.buenaflor <[email protected]> * Update * Fix * For testing * Update update-deps.yml --------- Co-authored-by: Cursor Agent <[email protected]>
1 parent 896ada3 commit 3615e19

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/update-deps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Update Dependencies
33
on:
44
# Run every day.
55
schedule:
6-
- cron: '0 3 * * *'
6+
- cron: "0 3 * * *"
77
# And on on every PR merge so we get the updated dependencies ASAP, and to make sure the changelog doesn't conflict.
88
push:
99
branches:

flutter/scripts/generate-jni-bindings.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ cd "$(dirname "$0")/../"
1616

1717
binding_path="lib/src/native/java/binding.dart"
1818

19+
cd example
20+
flutter build apk
21+
cd -
22+
1923
# Regenerate the bindings.
2024
dart run jnigen --config ffi-jni.yaml
2125

0 commit comments

Comments
 (0)