Back to project page tum-campus.
The source code is released under:
GNU General Public License
If you think the Android project tum-campus 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 de.tum.in.tumcampus; /* w w w . jav a2 s . c o m*/ import android.app.Activity; import android.os.Bundle; /** * Activity to show information about authors, copyright and support */ public class AppInfo extends Activity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.appinfo); } }