This repository was archived by the owner on Aug 30, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 30
init. ndk only if ndk opt on manifest is enabled #60
Merged
Merged
Changes from 1 commit
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
678f6cd
init ndk reading manifest
marandaneto 12aecd2
Merge branch 'master' into enha/init_ndk_by_manifest
ae6cef8
check API version to init NDK and also add example how to disable NDK…
a2c41ab
code review
1ccb641
Merge branch 'master' into enha/init_ndk_by_manifest
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
check API version to init NDK and also add example how to disable NDK…
… on sample manifest
- Loading branch information
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -22,6 +22,10 @@ | |
|
|
||
| <meta-data android:name="io.sentry.dsn" android:value="https://[email protected]/123" /> | ||
| <meta-data android:name="io.sentry.debug" android:value="true" /> | ||
|
|
||
| <!-- <meta-data android:name="io.sentry.auto-init" android:value="false" /> // how to disable the auto-init--> | ||
|
|
||
| <!-- <meta-data android:name="io.sentry.ndk" android:value="false" /> // how to disable the NDK--> | ||
| <!-- tools:node="remove" />--> | ||
marandaneto marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| </application> | ||
| </manifest> | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Are we settling on the fact that NDK support will not be available on API < 21?
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.
@ninniuz for the first release, probably yes, we have a system blocker and trying to find a workaround.
JFYI
dl_iterate_phdrmethod only available API >= 21https://android.googlesource.com/platform/bionic/+/master/docs/status.md
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.
Yeah, tried to build the NDK feature branch on API 14 and got an error on that method :(
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.
we might have a workaround, parsing
/proc/PID/mapsby hand and getting what we need.but still thinking if it's a good idea.