File tree Expand file tree Collapse file tree 6 files changed +22
-10
lines changed Expand file tree Collapse file tree 6 files changed +22
-10
lines changed Original file line number Diff line number Diff line change @@ -4,8 +4,19 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) .
5
5
6
6
## Unreleased
7
- - Add ability to override iOS audio session category
7
+
8
+
9
+ ## [ 2.0.3] - 2020-03-23
10
+ ### Added
8
11
- Add Player option mixWithOthers
12
+ - iOS: Add ability to override audio session category
13
+
14
+ ### Changed
15
+ - Android: Remove unneeded references to Android support library, improving Android X support
16
+
17
+ ### Fixed
18
+ - iOS: Made linking to RCTBridgeModule.h more robust
19
+ - iOS: Fixed podspec not using right Git tag string
9
20
10
21
## [ 2.0.2] - 2019-07-09
11
22
### Added
@@ -107,7 +118,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
107
118
Initial release.
108
119
109
120
110
- [2.0.2]: https://github.com/react-native-community/react-native-audio-toolkit/compare/caa399431afdcb70a2aa73fe436cdf00e3ea92d0...HEAD
121
+ [2.0.3]: https://github.com/react-native-community/react-native-audio-toolkit/compare/f51bac3ee751e72f916abb657c2f594e870a36ac...HEAD
122
+ [2.0.2]: https://github.com/react-native-community/react-native-audio-toolkit/compare/caa399431afdcb70a2aa73fe436cdf00e3ea92d0...f51bac3ee751e72f916abb657c2f594e870a36ac
111
123
[2.0.1]: https://github.com/react-native-community/react-native-audio-toolkit/commit/caa399431afdcb70a2aa73fe436cdf00e3ea92d0
112
124
[2.0.0]: https://github.com/react-native-community/react-native-audio-toolkit/compare/dc2f04a35f388016aa294bcc80e7f553d1988037...ed89597b2e319c9073f2156c81c48c7ff8a7993f
113
125
[1.0.6]: https://github.com/react-native-community/react-native-audio-toolkit/compare/4746870166fe4beb9fbf075d45fab952de4558d6...dc2f04a35f388016aa294bcc80e7f553d1988037
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ buildscript {
6
6
minSdkVersion = 19
7
7
compileSdkVersion = 28
8
8
targetSdkVersion = 28
9
+ supportLibVersion = " 28.0.0"
9
10
}
10
11
repositories {
11
12
google()
Original file line number Diff line number Diff line change 8
8
"start:ios" : " npm run rn-cli -- run-ios"
9
9
},
10
10
"dependencies" : {
11
- "@react-native-community/audio-toolkit" : " ^2.0.2 " ,
11
+ "@react-native-community/audio-toolkit" : " ^2.0.3 " ,
12
12
"@react-native-community/slider" : " ^1.1.4" ,
13
13
"react" : " 16.8.3" ,
14
14
"react-native" : " 0.59.10"
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @react-native-community/audio-toolkit" ,
3
- "version" : " 2.0.2 " ,
3
+ "version" : " 2.0.3 " ,
4
4
"description" : " Cross-platform audio library for React Native" ,
5
5
"main" : " index.js" ,
6
6
"types" : " typings/index.d.ts" ,
Original file line number Diff line number Diff line change @@ -50,7 +50,6 @@ interface PlayerOptions {
50
50
* iOS will always pause in this case.
51
51
* (Default: false)
52
52
*/
53
-
54
53
continuesToPlayInBackground ?: boolean ;
55
54
56
55
/**
You can’t perform that action at this time.
0 commit comments