Back to project page eyebrows-sync.
The source code is released under:
Copyright (c) 2014 Jon Petraglia of Qweex All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "...
If you think the Android project eyebrows-sync 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.qweex.eyebrowssync; /* ww w .j a v a2 s. c o m*/ import android.app.Activity; import android.content.Intent; import android.os.Bundle; import com.qweex.eyebrowssync.JobList.v11; import com.qweex.eyebrowssync.JobList.v3; public class StartActivity extends Activity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); //android.os.Build.VERSION_CODES.HONEYCOMB if(android.os.Build.VERSION.SDK_INT >= 11) startActivity(new Intent(this, v11.class)); else startActivity(new Intent(this, v3.class)); finish(); } }