android 4.4 video from camera gives security Exception

前端 未结 1 1975
谎友^
谎友^ 2020-12-21 06:41

I am using following code for video recording using camera

code on record button click:-

  intent = new Intent(android.provider.MediaStore.ACTION_VI         


        
相关标签:
1条回答
  • 2020-12-21 07:13

    You should add the permission android.permission.READ_EXTERNAL_STORAGE to your manifest file by adding the following line to it :

    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
    
    0 讨论(0)
提交回复
热议问题