Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
f266367
init
LichKing-2234 Apr 8, 2020
6e1d64f
fix instance undefined
LichKing-2234 Apr 8, 2020
03557e7
git ignore lib
LichKing-2234 Apr 8, 2020
23d47b2
finish
LichKing-2234 Apr 16, 2020
1c31fec
optimize finish
LichKing-2234 Apr 21, 2020
d128bfb
fix bug
LichKing-2234 Apr 21, 2020
72bba79
fix version
LichKing-2234 Apr 21, 2020
c237db9
optimize
LichKing-2234 Apr 21, 2020
175cbbd
finish
LichKing-2234 Apr 22, 2020
7366f1a
optimize readme
LichKing-2234 Apr 22, 2020
14fccb2
add app type
LichKing-2234 Apr 22, 2020
0bfde3c
optimize docs
LichKing-2234 Jun 3, 2020
793afbf
fix link bug
LichKing-2234 Jun 3, 2020
47c77b4
optimize readme
LichKing-2234 Jun 3, 2020
f1ed825
init
LichKing-2234 Jun 8, 2020
df4d47e
init
LichKing-2234 Jun 8, 2020
6e792be
temp remove
LichKing-2234 Jun 8, 2020
fcb6e23
Add 'ios/RCTAgora/Base/' from commit 'df4d47eacacfca03e251e54a814a1a1…
LichKing-2234 Jun 8, 2020
f9169f5
Add 'android/src/main/java/io/agora/rtc/base/' from commit 'f1ed8250d…
LichKing-2234 Jun 8, 2020
540b7e6
fix bug from issue: https://github.com/syanbo/react-native-agora/issu…
LichKing-2234 Jun 12, 2020
51f0ca3
fix bug from issue: https://github.com/syanbo/react-native-agora/issu…
LichKing-2234 Jun 12, 2020
65b7f70
fix bug from issue: https://github.com/syanbo/react-native-agora/issu…
LichKing-2234 Jun 12, 2020
7aca568
fix bugs
LichKing-2234 Jun 12, 2020
cf24c0b
fix bugs
LichKing-2234 Jun 12, 2020
462f500
fix bugs
LichKing-2234 Jun 12, 2020
69986f9
fix convert exception in mapToCameraCapturerConfiguration function
Macrow Jun 18, 2020
ae65b83
change Double to Number
Macrow Jun 19, 2020
4ef22db
Merge pull request #219 from Macrow/beta/3.0.0
LichKing-2234 Jun 19, 2020
1b4bdf5
fix android `setCameraCapturerConfiguration` bug
LichKing-2234 Jun 19, 2020
a140bc2
fix lib ignore bug
LichKing-2234 Jun 22, 2020
b674506
Android finish
LichKing-2234 Jun 22, 2020
7334475
optimize doc
LichKing-2234 Jun 22, 2020
e8557cd
Merge commit 'b67450678710cbc3ad4fcf72d8b53dd695d0a8e8' into beta/3.0.0
LichKing-2234 Jun 23, 2020
13282b6
iOS engine finish
LichKing-2234 Jun 28, 2020
a2b9df7
iOS finish
LichKing-2234 Jun 29, 2020
f6d6c0c
Merge commit 'a2b9df778c75f9070c6c7f9e7836f5cb12b53fb3' into beta/3.0.0
LichKing-2234 Jun 29, 2020
5973751
- support 3.0.1.1 native sdk
LichKing-2234 Jun 29, 2020
4fe65d9
Fixed typo causing `unresolved identifier`
marqroldan Jul 1, 2020
2a9b337
Merge pull request #227 from marqroldan/patch-1
LichKing-2234 Jul 1, 2020
03d8a04
- fix lib ignore bug
LichKing-2234 Jul 2, 2020
4862362
- fix lib ignore bug
LichKing-2234 Jul 2, 2020
d7585de
change demo link
LichKing-2234 Jul 7, 2020
59d92fd
- fix iOS event warn
LichKing-2234 Jul 7, 2020
def982b
- add `constructor` for typescript
LichKing-2234 Jul 9, 2020
0f90be4
- prerelease 3.0.1-rc.1
LichKing-2234 Jul 10, 2020
26bbf1f
Merge branch 'master' into beta/3.0.0
LichKing-2234 Jul 10, 2020
b6ba90a
Merge branch 'beta/3.0.0' into rc/3.0.1
LichKing-2234 Jul 10, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
change Double to Number
  • Loading branch information
Macrow committed Jun 19, 2020
commit ae65b83d0f0c4c0d01f07dbddfdb61cf55dea8a4
4 changes: 2 additions & 2 deletions android/src/main/java/io/agora/rtc/base/BeanCovertor.kt
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,8 @@ fun mapToLiveInjectStreamConfig(map: Map<*, *>): LiveInjectStreamConfig {

fun mapToCameraCapturerConfiguration(map: Map<*, *>): CameraCapturerConfiguration {
return CameraCapturerConfiguration(
intToCapturerOutputPreference((map["preference"] as Double).toInt()),
intToCameraDirection((map["cameraDirection"] as Double).toInt())
intToCapturerOutputPreference((map["preference"] as Number).toInt()),
intToCameraDirection((map["cameraDirection"] as Number).toInt())
)
}

Expand Down