I use notification builder in my app
In my app,i dont need to write external storage but this library need to copy noification sound in external storage
and play from it
Is there way for prevent use external storage write permission?
B4X:
Dim nb As NotificationBuilder
nb.Initialize
nb.AutoCancel = True
nb.DefaultLight = True
nb.DefaultSound = True
nb.DefaultVibrate = True
nb.ContentTitle = "Alert"
nb.ContentText = "Body"
nb.CustomSound = File.Combine(File.DirRootExternal,"notification.mp3")
and play from it
Is there way for prevent use external storage write permission?