0

In my android html app there is a "Choose File"

Well when i click on it nothing happens App name "Share File"

i think it requires a permission I searched google and didn't find anything

Please can anyone tell me what's the required permission?

Regards, Alex

3 Answers3

0

I guess you mean to take a file from the phone:

 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
Bigflow
  • 3,576
  • 5
  • 27
  • 52
0

i think you required below permissions:

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
Sagar Maiyad
  • 12,482
  • 8
  • 60
  • 97
0

check the file chooser example from here.. http://www.dreamincode.net/forums/topic/190013-creating-simple-file-chooser/

blganesh101
  • 3,559
  • 23
  • 42