permissions android 7

  1. G

    Android Question Write access on external SD-Card

    Hi guys I do have a problem with writing on an SD-Card. In the small test program, I defined a storage directory called "GPSDir" to store a huge amount of GPS data. Sub Process_Globals Dim RP As RuntimePermissions Dim Writer As TextWriter End Sub Sub Globals Dim sp_storage As...
  2. R

    Android Question Check Android permission fail?

    I have this piece of code Dim r As Reflector Dim Api As Int Api = r.GetStaticField("android.os.Build$VERSION", "SDK_INT") If Api > 22 And (rp.Check(rp.PERMISSION_ACCESS_FINE_LOCATION) = False Or _ rp.Check(rp.PERMISSION_READ_EXTERNAL_STORAGE) = False Or _...
Top