As the name suggests, its primary functions is to alert you when any village has an incoming attack.
Travian Android Apps
When I started the development from scratch there where no travian apps on the market - now there is already four! At the time of writing three of these are in beta testing and doesn't provide much functionality. This might end up in a feature-race against "competing" apps or we might branch out and provide different functionality. Hey who knows - we might end up co-operate using intents to launch each other apps ;)Search market for 'travian' |
c void onActivityResult(int requestCode, int resultCode, Intent intent) {
ReplyDeleteif (requestCode == 0) {
if (resultCode == RESULT_OK) {
String contents = intent.getStringExtra("SCAN_RESULT");
String format = intent.getStringExtr
String contents = intent.getStringExtra("SCAN_RESULT");
ReplyDeleteString format = intent.getStringExtra("SCAN_RESULT_FORMAT");
// Handle successful scan
} else if (resultCode == RESULT_CANCELED) {
// Handle cancel
}
}