ricnaaru / adv_camera

Advanced Camera for Flutter
BSD 3-Clause "New" or "Revised" License
54 stars 35 forks source link

No Camera preview #30

Closed dhanuvanth closed 4 years ago

dhanuvanth commented 4 years ago

no error in the code but it is not showing any preview. I tried with both android emulated and also real device. but its showing only the progress bar. I used the latest version (adv_camera: ^1.1.1+1). android version - 7,8,9 Capture Capture2

please help...

chadathanainta commented 4 years ago

Add permission in Android and run on real mobile

Abhishek01039 commented 4 years ago

can you please let us know which permission we need to give and where? @chadathanainta @ricnaaru

chadathanainta commented 4 years ago

@Abhishek01039

`

<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.FLASHLIGHT" />
<uses-feature android:name="android.hardware.camera" />
<uses-feature android:name="android.hardware.camera.front" />
<uses-feature android:name="android.hardware.camera2" android:required="false" />
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
<uses-feature android:name="android.hardware.camera.flash" android:required="false" />`
Abhishek01039 commented 4 years ago

ok thanks @chadathanainta