-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpubspec.yaml
58 lines (53 loc) · 1.52 KB
/
pubspec.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: miniaudio
description: Flutter bindings for Miniaudio Library.
version: "0.0.5"
homepage: https://github.com/Piero512/miniaudio_decoder
environment:
sdk: ">=2.16.0 <3.0.0"
flutter: ">=1.20.0"
dependencies:
ffi: ^1.1.2
flutter:
sdk: flutter
dev_dependencies:
ffigen: ^4.1.3
flutter_test:
sdk: flutter
flutter_lints:
# For information on the generic Dart part of this file, see the
# following page: https://dart.dev/tools/pub/pubspec
# The following section is specific to Flutter.
flutter:
# This section identifies this Flutter project as a plugin project.
# The 'pluginClass' and Android 'package' identifiers should not ordinarily
# be modified. They are used by the tooling to maintain consistency when
# adding or updating assets for this project.
plugin:
platforms:
android:
package: dev.piero512.miniaudio
pluginClass: MiniaudioPlugin
ios:
pluginClass: MiniaudioPlugin
macos:
pluginClass: MiniaudioPlugin
linux:
pluginClass: MiniaudioPlugin
windows:
pluginClass: MiniaudioPlugin
ffigen:
output: 'lib/src/miniaudio_ffi.dart'
headers:
entry-points:
- 'src/miniaudio.h'
include-directives:
- '**miniaudio.h'
name: 'MiniAudioFfi'
preamble: '// ignore_for_file: camel_case_types, non_constant_identifier_names, constant_identifier_names, unused_field'
unions:
dependency-only: opaque
functions:
symbol-address:
include:
- '.*'
description: 'FFI bindings to miniaudio library'