-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
183 additions
and
80 deletions.
There are no files selected for viewing
This file contains 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 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 |
---|---|---|
@@ -1,7 +1,2 @@ | ||
## 4.1.0 | ||
|
||
* Sync wallet-core [4.1.0](https://github.com/trustwallet/wallet-core/releases/tag/4.1.0). | ||
|
||
## 4.0.49 | ||
|
||
* Sync wallet-core [4.0.49](https://github.com/trustwallet/wallet-core/releases/tag/4.0.49). | ||
## 4.1.21 | ||
* Sync wallet-core [4.1.21](https://github.com/trustwallet/wallet-core/releases/tag/4.1.21). |
This file contains 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 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 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 |
---|---|---|
@@ -1,3 +1,2 @@ | ||
## 0.0.1 | ||
|
||
* TODO: Describe initial release. | ||
## 4.1.21 | ||
* Sync wallet-core [4.1.21](https://github.com/trustwallet/wallet-core/releases/tag/4.1.21). |
This file contains 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 |
---|---|---|
@@ -1 +1 @@ | ||
TODO: Add your license here. | ||
Link to <https://github.com/trustwallet/wallet-core/blob/master/LICENSE>. |
This file contains 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 |
---|---|---|
@@ -1,15 +1,33 @@ | ||
# wallet_core_bindings_libs | ||
[![Pub](https://img.shields.io/pub/v/wallet_core_bindings_libs)](https://github.com/xuelongqy/wallet_core_bindings/tree/main/wallet_core_bindings_libs) | ||
|
||
A new Flutter project. | ||
Dynamic library built by wallet core, used with [wallet_core_bindings_native](https://github.com/xuelongqy/wallet_core_bindings/tree/main/wallet_core_bindings_native). | ||
|
||
## Getting Started | ||
## Supported platforms | ||
Currently supported platforms, other platforms will be added if suitable methods are found in the future. | ||
- Android | ||
- iOS | ||
|
||
This project is a starting point for a Flutter | ||
[plug-in package](https://flutter.dev/to/develop-plugins), | ||
a specialized package that includes platform-specific implementation code for | ||
Android and/or iOS. | ||
## Building | ||
By default, wallet core does not expose interface methods. You need to make a small change and compile it before using it. | ||
|
||
For help getting started with Flutter development, view the | ||
[online documentation](https://docs.flutter.dev), which offers tutorials, | ||
samples, guidance on mobile development, and a full API reference. | ||
* Repository [wallet core](https://github.com/trustwallet/wallet-core). | ||
* Build documentation, see [building](https://developer.trustwallet.com/developer/wallet-core/developing-the-library/building). | ||
|
||
Required modifications | ||
```cmake | ||
# File: /cmake/StandardSettings.cmake | ||
set(CMAKE_CXX_VISIBILITY_PRESET hidden) -> set(CMAKE_CXX_VISIBILITY_PRESET default) | ||
``` | ||
|
||
### macOS | ||
After compiling on macOS, you get libTrustWalletCore.dylib, which does not meet the requirements for the current multi-CPU architecture. However, you can still import it into the project and run it on a device with a specified CPU architecture. | ||
|
||
### Linux | ||
After compiling on Linux, you get libTrustWalletCore.dylib, which does not meet the requirements for the current multi-CPU architecture. However, you can still import it into the project and run it on a device with a specified CPU architecture. | ||
|
||
### Windows | ||
Windows is not supported at present. | ||
|
||
## Usage | ||
For comprehensive documentation, see [package repository](https://github.com/xuelongqy/wallet_core_bindings/tree/main/wallet_core_bindings). |
This file contains 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 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 |
---|---|---|
@@ -1,3 +1,2 @@ | ||
## 0.0.1 | ||
|
||
* TODO: Describe initial release. | ||
## 4.1.21 | ||
* Sync wallet-core [4.1.21](https://github.com/trustwallet/wallet-core/releases/tag/4.1.21). |
This file contains 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 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 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 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 |
---|---|---|
@@ -1,3 +1,2 @@ | ||
## 0.0.1 | ||
|
||
* TODO: Describe initial release. | ||
## 4.1.21 | ||
* Sync wallet-core [4.1.21](https://github.com/trustwallet/wallet-core/releases/tag/4.1.21). |
This file contains 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 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 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 |
---|---|---|
@@ -1,3 +1,2 @@ | ||
## 0.0.1 | ||
|
||
* TODO: Describe initial release. | ||
## 4.1.21 | ||
* Sync wallet-core [4.1.21](https://github.com/trustwallet/wallet-core/releases/tag/4.1.21). |
This file contains 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 |
---|---|---|
@@ -1 +1 @@ | ||
TODO: Add your license here. | ||
Link to <https://github.com/trustwallet/wallet-core/blob/master/LICENSE>. |
Oops, something went wrong.