0

Our Android application ported to Blackberry 10 only works in Blackberry 10.1 OS when is downloaded from Blackberry App World, we have realized that the app sometimes can´t write or read from the directories created by our app:

Device/misc/android/Android/data/com.iasi.jorgesys/files/temp/

Probably we need another perrmission, this is what we have in our Manifest.xml

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.CALL_PHONE" />
<uses-permission android:name="android.permission.WAKE_LOCK" />

anyone?

Update:: I have changed the folder´s name to /grfiles and /grtemp

Update:: /grfiles Ok; /grtemp OK, i think have to change /feed to /grfeed =0

Jorgesys
  • 124,308
  • 23
  • 334
  • 268
  • What do you mean by "sometimes can't write or read"? What are the conditions under which it doesn't work? – donturner Jun 04 '13 at 22:18
  • hi, sometimes the app can create folders and download some files required to start our app, but suddenly nothing can be write under the directory, only in BB devices with OS 10.0 – Jorgesys Jun 04 '13 at 22:30
  • I am also having a same issue. Can't able to create or write a file into BB Q5 device.I had used Device/misc/android/Android/data/logfiles/debug1.log. Thanks in advance for any help – Sakthimuthiah Oct 16 '13 at 09:16
  • Hello are you working on OS 10.0? – Jorgesys Oct 16 '13 at 21:54

1 Answers1

1

Well I found a bug in OS 10.0, must upgrade to OS 10.1 and it works like a charm. some permissions to write are denied using OS 10.0

Jorgesys
  • 124,308
  • 23
  • 334
  • 268