zhihu / Matisse

:fireworks: A well-designed local image and video selector for Android
Apache License 2.0
12.52k stars 2.07k forks source link

Cannot access camera in Android OS 12 #871

Open Aastha-dev opened 2 years ago

Aastha-dev commented 2 years ago

I am trying to open camera in Android version 12 but not able to access it. Nothing works when I tap on camera icon to capture pic. However everything works fine below OS 12. Is there any solution for this?

Aksx73 commented 2 years ago

Got same issue. Any fix?

cuibg commented 2 years ago

the project has not maintenanced!

121104115wyb commented 2 years ago

you can see this solve or you can see solve1

criminact commented 1 year ago
<queries>
        <!-- Camera -->
        <intent>
            <action android:name="android.media.action.IMAGE_CAPTURE" />
        </intent>

        <!-- Gallery -->
        <intent>
            <action android:name="android.intent.action.GET_CONTENT" />
        </intent>
    </queries>

Add this after or before your application tag in AnroidManifest.xml and you're good to go.