Back to project page HeadphoneController.
The source code is released under:
GNU General Public License
If you think the Android project HeadphoneController 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 ca.mbabic.headphonecontroller; //from w w w.j a va2 s . co m import android.app.Application; public class HCApplication extends Application { private static HCApplication instance; public static HCApplication getInstance() { return instance; } @Override public void onCreate() { super.onCreate(); instance = this; } }