-
Notifications
You must be signed in to change notification settings - Fork 31
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
Not able to use library on windows #9
Comments
Related to bitcoindevkit/bdk-ffi#76 and bitcoindevkit/bdk-ffi#240. |
I encountered a similar error today while trying to run my Flutter app on Android. The error message states:
The code triggering the error is as follows: Future<String?> _generateMnemonic() async {
print('[BDK API] Generating mnemonic...');
try {
final mnemonic = await Mnemonic.create(WordCount.Words12);
return mnemonic.asString();
} catch (e) {
print('[BDK API] Error generation mnemonic: $e');
}
return null;
} Environment:
Flutter Doctor Output
Would appreciate any guidance or assistance on resolving this issue. Thank you! |
Open
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Unable to use library on windows development environment.
Error: dlopen failed: library "librust.io" not found
The text was updated successfully, but these errors were encountered: