ahmadtech2
Results
2
comments of
ahmadtech2
> Unfortunately I won't be able to debug this if it's M1 specific. If anyone finds the solution please let me know. It builds fine on my intel mac with...
` import { Platform, PermissionsAndroid, } from 'react-native'; if (Platform.OS === 'android') { const granted = await PermissionsAndroid.request( PermissionsAndroid.PERMISSIONS.CAMERA, ); if (granted === PermissionsAndroid.RESULTS.GRANTED) { //user accepted } else {...