Skip to content
This repository was archived by the owner on Apr 14, 2021. It is now read-only.

Micro-fork: support for 1:1 calls using webrtc #18

Open
wants to merge 2 commits into
base: limified
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion vector/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ dependencies {
// implementation(name: 'react-native-immersive', ext: 'aar')
// implementation(name: 'react-native-keep-awake', ext: 'aar')
// implementation(name: 'react-native-vector-icons', ext: 'aar')
// implementation(name: 'react-native-webrtc', ext: 'aar')
implementation(name: 'react-native-webrtc', ext: 'aar')
// implementation(name: 'react-native', ext: 'aar')
// implementation(name: 'react-native-locale-detector', ext: 'aar')

Expand Down
8 changes: 3 additions & 5 deletions vector/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,9 @@

<uses-permission android:name="android.permission.CAMERA" />

<!-- videocall permissions
<!-- videocall permissions -->
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
-->
<!-- required on android 6.0.0 devices -->
<!--
<uses-permission
Expand Down Expand Up @@ -74,12 +73,11 @@
android:required="false"
tools:replace="required" />

<!-- android.permission.RECORD_AUDIO defines android.hardware.microphone
<!-- android.permission.RECORD_AUDIO defines android.hardware.microphone -->
<uses-feature
android:name="android.hardware.microphone"
android:required="false"
tools:replace="required" />
-->

<!-- ShortcutBadger permissions
<uses-permission android:name="com.sec.android.provider.badge.permission.READ" />
Expand Down Expand Up @@ -108,9 +106,9 @@
<uses-feature
android:name="android.hardware.telephony"
android:required="false" />

-->


<application
android:name=".VectorApp"
android:allowBackup="false"
Expand Down