René's URL Explorer Experiment


Title: Issue · GitHub

Open Graph Title: Issue · NexusDynamic/android_libcpp_shared

X Title: Issue · NexusDynamic/android_libcpp_shared

Description: Dart / flutter plugin for android to add libc++_shared.so - Issue · NexusDynamic/android_libcpp_shared

Open Graph Description: Dart / flutter plugin for android to add libc++_shared.so - Issue · NexusDynamic/android_libcpp_shared

X Description: Dart / flutter plugin for android to add libc++_shared.so - Issue · NexusDynamic/android_libcpp_shared

Opengraph URL: https://github.com/NexusDynamic/android_libcpp_shared

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"FormatException: Missing extension byte on non-English Windows","articleBody":"## Environment\nPackage: android_libcpp_shared v0.2.0\nOS: Windows 10/11 (Chinese / Japanese / Korean locale)\nDart SDK: ^3.12.0\n\n- Stack trace\n\n\n```code\nUnhandled exception:\nFormatException: Missing extension byte (at offset 1)\n#0      _Utf8Decoder.convertChunked (dart:convert-patch/convert_patch.dart:1964:7)\n#1      _Utf8ConversionSink.addSlice (dart:convert/string_conversion.dart:313:28)\n...\n#4      _SinkTransformerStreamSubscription._handleData (dart:async/stream_transformers.dart:115:24)\n```\n\n\n- Root cause\nlib/src/process.dart lines 29–32 — runProcess() hardcodes utf8.decoder:\n\n```dart\nfinal stdoutFuture = process.stdout\n    .transform(utf8.decoder)                    // ← the problem\n    .transform(const LineSplitter())\n    .forEach(stdout.writeln);\n```\nOn non-English Windows (e.g. Chinese/Japanese/Korean locale), where.exe outputs error messages in the system code page (e.g. CP936 for Chinese), not UTF-8:\n\n\n```code\nC:\\\u003e where ndk-build.cmd\n信息: 用提供的模式无法找到文件。    ← CP936 (GBK) encoded\n```\nFor example, the Chinese character 信 is encoded as 0xD0 0xC5 in GBK. utf8.decoder sees 0xD0 as a 2-byte UTF-8 lead byte and expects the next byte in range 0x80–0xBF. But 0xC5 is not in that range → FormatException is thrown.\n\nOn English Windows the output is pure ASCII (INFO: Could not find files...) so it never triggers.\n\nReproduction\n1.Use a non-English Windows system (Chinese / Japanese / Korean locale)\n2.Do NOT have ndk-build.cmd in PATH\n3.Build any Flutter project that depends on android_libcpp_shared\n\n```cmd\nwhere ndk-build.cmd\n# Outputs localized error → Dart process crashes with FormatException\n```\nSuggested fix\nUse platform-appropriate decoder in process.dart:\n\n\n```dart\nfinal encoding = Platform.isWindows ? systemEncoding : utf8;\nfinal stdoutFuture = process.stdout\n    .transform(encoding.decoder)\n    .transform(const LineSplitter())\n    .forEach(stdout.writeln);\n// same for stderr\n```\nOr wrap the which() call with a try-catch for non-zero exit codes.","author":{"url":"https://github.com/wyq0918dev","@type":"Person","name":"wyq0918dev"},"datePublished":"2026-06-12T17:01:40.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":0},"url":"https://github.com/4/android_libcpp_shared/issues/4"}

route-pattern/:user_id/:repository/issues/:id(.:format)
route-controllerissues
route-actionshow
fetch-noncev2:5ffebcbf-e2db-c082-7789-788f8a0dfefc
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idE4A6:7EDF5:156584:1F5843:6A4D05FF
html-safe-nonce715e4356783c0407a458cd077ab3511fa21770d39d8bfba18cb3cddded5449c1
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJFNEE2OjdFREY1OjE1NjU4NDoxRjU4NDM6NkE0RDA1RkYiLCJ2aXNpdG9yX2lkIjoiMjAzNDg3MzkxMDgzOTU0MzI5NSIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmacd719cf713afc34222c7613e845809ceb72dfac7bf718ea79de6a9c9abac5b241
hovercard-subject-tagrepository:1184665524
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///issues/show
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/NexusDynamic/android_libcpp_shared/issues/4
twitter:imagehttps://opengraph.githubassets.com/4a0a4030219ccc65448ae0201319252cbf7203b86c68262df87d69d67e6c573a/NexusDynamic/android_libcpp_shared
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/4a0a4030219ccc65448ae0201319252cbf7203b86c68262df87d69d67e6c573a/NexusDynamic/android_libcpp_shared
og:image:altDart / flutter plugin for android to add libc++_shared.so - Issue · NexusDynamic/android_libcpp_shared
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None31e4db13a9e20081f2fac78f441659a6576e582bbb15e153f9c7fb6473aa29f5
turbo-cache-controlno-cache
go-importgithub.com/NexusDynamic/android_libcpp_shared git https://github.com/NexusDynamic/android_libcpp_shared.git
octolytics-dimension-user_id215839682
octolytics-dimension-user_loginNexusDynamic
octolytics-dimension-repository_id1184665524
octolytics-dimension-repository_nwoNexusDynamic/android_libcpp_shared
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id1184665524
octolytics-dimension-repository_network_root_nwoNexusDynamic/android_libcpp_shared
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releasefb70bd3c4b2bec429781b65419e912c66e2d5581
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/NexusDynamic/android_libcpp_shared/issues/4#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FNexusDynamic%2Fandroid_libcpp_shared%2Fissues%2F4
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FNexusDynamic%2Fandroid_libcpp_shared%2Fissues%2F4
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fissues%2Fshow&source=header-repo&source_repo=NexusDynamic%2Fandroid_libcpp_shared
Reloadhttps://github.com/NexusDynamic/android_libcpp_shared/issues/4
Reloadhttps://github.com/NexusDynamic/android_libcpp_shared/issues/4
Reloadhttps://github.com/NexusDynamic/android_libcpp_shared/issues/4
Please reload this pagehttps://github.com/NexusDynamic/android_libcpp_shared/issues/4
NexusDynamic https://github.com/NexusDynamic
android_libcpp_sharedhttps://github.com/NexusDynamic/android_libcpp_shared
Notifications https://github.com/login?return_to=%2FNexusDynamic%2Fandroid_libcpp_shared
Fork 3 https://github.com/login?return_to=%2FNexusDynamic%2Fandroid_libcpp_shared
Star 2 https://github.com/login?return_to=%2FNexusDynamic%2Fandroid_libcpp_shared
Code https://github.com/NexusDynamic/android_libcpp_shared
Issues 3 https://github.com/NexusDynamic/android_libcpp_shared/issues
Pull requests 3 https://github.com/NexusDynamic/android_libcpp_shared/pulls
Actions https://github.com/NexusDynamic/android_libcpp_shared/actions
Projects https://github.com/NexusDynamic/android_libcpp_shared/projects
Security and quality 0 https://github.com/NexusDynamic/android_libcpp_shared/security
Insights https://github.com/NexusDynamic/android_libcpp_shared/pulse
Code https://github.com/NexusDynamic/android_libcpp_shared
Issues https://github.com/NexusDynamic/android_libcpp_shared/issues
Pull requests https://github.com/NexusDynamic/android_libcpp_shared/pulls
Actions https://github.com/NexusDynamic/android_libcpp_shared/actions
Projects https://github.com/NexusDynamic/android_libcpp_shared/projects
Security and quality https://github.com/NexusDynamic/android_libcpp_shared/security
Insights https://github.com/NexusDynamic/android_libcpp_shared/pulse
FormatException: Missing extension byte on non-English Windowshttps://github.com/NexusDynamic/android_libcpp_shared/issues/4#top
https://github.com/wyq0918dev
wyq0918devhttps://github.com/wyq0918dev
on Jun 12, 2026https://github.com/NexusDynamic/android_libcpp_shared/issues/4#issue-4651124323
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.