Android Question Alzheimer's utility

netsistemas

Active Member
Licensed User
Longtime User
I view a thread
https://www.b4x.com/android/forum/threads/cardpins-pin-safe-for-credit-cards-image-crypt.101254/
and i think thas the developement do it more..
i shared this code, and idea for do it some similar (best).
The idea is to remember to this persons some to do in a instant.
Too, you can doit this code like sample for save data in database, and others isues.

https://play.google.com/store/apps/details?id=netsistemas.agendafacil&hl=en_US

This versión is not ready for android 8+
May be you only need change destination in manifest file
 

Attachments

  • AvisoDroid.zip
    81.1 KB · Views: 163

netsistemas

Active Member
Licensed User
Longtime User
For ANDROID 8+ replace this function in code:
B4X:
Sub RutaDBCorrecta() As String
    Dim TargetDir As String

    'https://b4x.com/android/forum/threads/no-such-file-or-directory-file-dirdefaultexternal-not-exists.93099/


    If File.ExternalWritable  Then'
        Private rp As RuntimePermissions
        TargetDir =  rp.GetSafeDirDefaultExternal("") ' File.DirDefaultExternal
    Else
        TargetDir = File.DirInternal
    End If

    Return TargetDir
End Sub

Manisfest Editor is OK:
android:targetSdkVersion="26"
 
Upvote 0
Top