| Problem | OS (macOS, Windows) | Chrome | Safari | Edge | Firefox | Error Type (MediaPermissionsError) | Recommended User Action | | ---------------------------------------------------------------------------------------- | ------------------- | ---------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------- | -----------------------------------------------------------------------
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { | |
MediaPermissionsError | |
MediaPermissionsErrorType, | |
requestMediaPermissions | |
} from 'mic-check'; | |
requestMediaPermissions() | |
.then(() => { | |
// can successfully access camera and microphone streams | |
// DO SOMETHING HERE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import { | |
Linking, | |
Modal, | |
Platform, | |
SafeAreaView, | |
ScrollView, | |
StyleSheet, | |
Text, | |
TouchableOpacity, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import variables | |
import shared | |
from global_storage import storage_context | |
from pydantic import BaseModel | |
from typing import List, Optional | |
class FeatureUpdate(BaseModel): | |
name: str | |
description: Optional[str] |