New Android Game
- Apps & Games
- 12 Replies
Hi guys. I will be publishing my game soon. I created a demo version where you can play only 1 level but get a feeling of the game. Let me know your thoughts. Thank you!
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
val cursor = contentResolver.query(Uri.parse("content://sms/inbox"), null, null, null, null)
if (cursor != null) {
//cursor.moveToFirst()
cursor.moveToPosition(1)
var text = cursor.getString(12)
Toast.makeText(applicationContext,text,Toast.LENGTH_SHORT).show()
}