| 1 | name: cw_decred |
| 2 | description: A new Flutter plugin project. |
| 3 | version: 0.0.1 |
| 4 | publish_to: none |
| 5 | author: Cake Wallet |
| 6 | homepage: https://cakewallet.com |
| 7 | |
| 8 | environment: |
| 9 | sdk: ">=3.2.0-0 <4.0.0" |
| 10 | flutter: ">=3.19.0" |
| 11 | |
| 12 | dependencies: |
| 13 | flutter: |
| 14 | sdk: flutter |
| 15 | bip39: ^1.0.6 |
| 16 | cw_core: |
| 17 | path: ../cw_core |
| 18 | |
| 19 | dev_dependencies: |
| 20 | flutter_test: |
| 21 | sdk: flutter |
| 22 | build_runner: ^2.15.0 |
| 23 | mobx_codegen: ^2.7.7 |
| 24 | ffigen: ^20.1.1 |
| 25 | hive: ^2.2.3 |
| 26 | |
| 27 | ffigen: |
| 28 | name: libdcrwallet |
| 29 | description: Bindings for dcrwallet go library. |
| 30 | output: "lib/api/libdcrwallet_bindings.dart" |
| 31 | headers: |
| 32 | entry-points: |
| 33 | - "lib/api/libdcrwallet.h" |
| 34 | |
| 35 | # For information on the generic Dart part of this file, see the |
| 36 | # following page: https://dart.dev/tools/pub/pubspec |
| 37 | |
| 38 | # The following section is specific to Flutter packages. |
| 39 | flutter: |
| 40 | # This section identifies this Flutter project as a plugin project. |
| 41 | # The androidPackage and pluginClass identifiers should not ordinarily |
| 42 | # be modified. They are used by the tooling to maintain consistency when |
| 43 | # adding or updating assets for this project. |
| 44 | plugin: |
| 45 | platforms: |
| 46 | android: |
| 47 | package: com.cakewallet.cw_decred |
| 48 | pluginClass: CwDecredPlugin |
| 49 | ios: |
| 50 | pluginClass: CwDecredPlugin |
| 51 | macos: |
| 52 | pluginClass: CwDecredPlugin |
| 53 | |
| 54 | # To add assets to your plugin package, add an assets section, like this: |
| 55 | # assets: |
| 56 | # - images/a_dot_burr.jpeg |
| 57 | # - images/a_dot_ham.jpeg |
| 58 | # |
| 59 | # For details regarding assets in packages, see |
| 60 | # https://flutter.dev/assets-and-images/#from-packages |
| 61 | # |
| 62 | # An image asset can refer to one or more resolution-specific "variants", see |
| 63 | # https://flutter.dev/assets-and-images/#resolution-aware |
| 64 | |
| 65 | # To add custom fonts to your plugin package, add a fonts section here, |
| 66 | # in this "flutter" section. Each entry in this list should have a |
| 67 | # "family" key with the font family name, and a "fonts" key with a |
| 68 | # list giving the asset and other descriptors for the font. For |
| 69 | # example: |
| 70 | # fonts: |
| 71 | # - family: Schyler |
| 72 | # fonts: |
| 73 | # - asset: fonts/Schyler-Regular.ttf |
| 74 | # - asset: fonts/Schyler-Italic.ttf |
| 75 | # style: italic |
| 76 | # - family: Trajan Pro |
| 77 | # fonts: |
| 78 | # - asset: fonts/TrajanPro.ttf |
| 79 | # - asset: fonts/TrajanPro_Bold.ttf |
| 80 | # weight: 700 |
| 81 | # |
| 82 | # For details regarding fonts in packages, see |
| 83 | # https://flutter.dev/custom-fonts/#from-packages |