Back to project page Android-MobileServices-Feedback.
The source code is released under:
Copyright (c) 2014 Microsoft 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 Software...
If you think the Android project Android-MobileServices-Feedback 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.msdpe.feedback; /*from w ww . j a v a2s. c o m*/ import android.app.Application; public class FeedbackApplication extends Application { private FeedbackService mFeedbackService; public FeedbackApplication() { } public FeedbackService getFeedbackService() { if (mFeedbackService == null) { mFeedbackService = new FeedbackService(this); } return mFeedbackService; } }