Posts by leandrocastelli • 109 points
2 posts
-
0
votes2
answers691
viewsA: Reading properties file
The path you are looking for is not this one. Take a look at the function getFilesDir, it will return the path of your application files (/data/data/your package). Try something like: File file =…
-
0
votes3
answers1027
viewsA: Connect android screen
The Intent that is fired by android is ACTION_SCREEN_ON. However, you cannot register an Intent filter in your manifest for this Intent. You need to register programmatically using the…