Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Permission Denied Opening ligEGL shader cache file

As I mention in the title, my app built successful but show a blank screen and quit after a few second when I run it on device (SS GLX Tab3 Intel). And the logcat showed error opening cache file /data/data/com.abc.testapp/cache/com.android.opengl.shaders_cache: Permission denied (13) with libEGL tag.

Does anyone know what this means and how to fix it?

Any helps would be appreciated Thanks

like image 674
Nikel Arteta Avatar asked Jan 15 '15 08:01

Nikel Arteta


1 Answers

I am not sure if it works by adding this to your manifest:

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE”/>

You do not have the permission to open the cache file. You can also try to give your app manualy the permission to read files: APP info>Permissions>Storage

like image 121
naggab Avatar answered Nov 19 '22 15:11

naggab