Back to project page hubblog.
The source code is released under:
MIT License
If you think the Android project hubblog 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 com.donskifarrell.Hubblog.Activities; /*from www .ja va 2 s . c o m*/ import android.content.Intent; import android.os.Bundle; import com.github.mobile.Accounts.AccountAuthenticatorService; import com.github.rtyley.android.sherlock.roboguice.activity.RoboSherlockFragmentActivity; /** * Created with IntelliJ IDEA. * User: donski * Date: 12/12/13 * Time: 11:38 */ public class StartupActivity extends RoboSherlockFragmentActivity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); Intent serviceIntent = new Intent(getApplicationContext(), AccountAuthenticatorService.class); startService(serviceIntent); } @Override public void onStart() { super.onStart(); finish(); } }