-
Notifications
You must be signed in to change notification settings - Fork 68
Fix getID bug #1029
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
Fix getID bug #1029
Conversation
jniEnv could be null before calling attachThread, even for getting the function pointer.
PR HealthChangelog Entry ✔️Details
Changes to files need to be accounted for in their respective changelogs. Coverage ✔️Details
This check for test coverage is informational (issues shown here will not fail the PR). License Headers ✔️Details
All source files should start with a license header. Unrelated files missing license headers
Package publish validation ✔️Details
Documentation at https://github.com/dart-lang/ecosystem/wiki/Publishing-automation. |
@@ -44,6 +44,11 @@ | |||
- **Breaking Change**: `JArray.filled` now uses the generated type class of the | |||
`fill` object and not its Java runtime type. | |||
|
|||
## 0.7.3 |
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.
How will you release a version 0.7.3? We don't currently have a jnigen-stable
branch where you can make this PR on.
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.
I already did, I made a 0.7.3 branch. I can rename it to jnigen-stable as well: https://github.com/dart-lang/native/tree/jni-0.7.3
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.
Okay.
It's probably fine to just add a tag and delete the branch.
(We need a branch if we need to do multiple fixes on old stable releases.)
jniEnv could be null before calling attachThread, even for getting the function pointer.
jniEnv
could be null before callingattachThread
, even for getting the function pointer.Might fix dart-lang/http#1152.