Android Open Source - Android-MobileServices-Feedback Feedback Application






From Project

Back to project page Android-MobileServices-Feedback.

License

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.

Java Source Code

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;
  }
}




Java Source Code List

com.msdpe.feedback.FeedbackActivity.java
com.msdpe.feedback.FeedbackActivity.java
com.msdpe.feedback.FeedbackApplication.java
com.msdpe.feedback.FeedbackService.java
com.msdpe.feedback.Feedback.java
com.msdpe.feedback.MainActivity.java
com.msdpe.feedback.MainActivity.java