Pages

Friday, January 28, 2011

TravAlert soon coming to android market

We are about to publish our first android app on the market. It will be (yet another) app for the ever so popular browser game Travian.

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'

2 comments:

  1. c void onActivityResult(int requestCode, int resultCode, Intent intent) {
    if (requestCode == 0) {
    if (resultCode == RESULT_OK) {
    String contents = intent.getStringExtra("SCAN_RESULT");
    String format = intent.getStringExtr

    ReplyDelete
  2. String contents = intent.getStringExtra("SCAN_RESULT");
    String format = intent.getStringExtra("SCAN_RESULT_FORMAT");
    // Handle successful scan
    } else if (resultCode == RESULT_CANCELED) {
    // Handle cancel
    }
    }

    ReplyDelete