Back to project page android-samples.
The source code is released under:
Copyright (c) 2013-2014 Twitter, Inc Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the ...
If you think the Android project android-samples 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.twitterdev.hello_world.app; // w w w . java 2 s .co m import android.app.Application; /** * Created by gjones on 5/10/14. */ public class App extends Application { @Override public void onCreate() { super.onCreate(); } }