Back to project page AIRShare.
The source code is released under:
Apache License
If you think the Android project AIRShare 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.ggt.airshare; //from www.j a v a2 s . c om import android.app.Application; import com.crashlytics.android.Crashlytics; /** * AIRShare application. Starts singleton. */ public class AIRShareApplication extends Application { @Override public void onCreate() { super.onCreate(); Crashlytics.start(this); } }