Can we upload images using inputs of type file? I have been added android permissions like this: ``` <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.CAMERA" /> ``` and then requesting permissions using PermissionHandler in my app: ``` PermissionHandler().requestPermissions([ PermissionGroup.photos, PermissionGroup.storage ]); ``` but when I tap the image upload input, nothing happens =c debug logs are also blank. thanks in advance