Back to project page wigle-wifi-wardriving-badfork.
The source code is released under:
/* * Copyright (c) 2010-2012, Andrew Carra, Robert Hagemann, Hugh Kennedy * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permi...
If you think the Android project wigle-wifi-wardriving-badfork listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package net.wigle.wigleandroid; /*from w w w . j a va 2s . c o m*/ import android.app.Activity; import android.content.Intent; import android.os.Bundle; /** * here for backwards compatibility */ public class WigleAndroid extends Activity { @Override public void onCreate( final Bundle savedInstanceState ) { super.onCreate( savedInstanceState ); // start tab activity final Intent intent = new Intent( this, MainActivity.class ); this.startActivity( intent ); // done finish(); } }