Back to project page SurveySDK_android.
The source code is released under:
Apache License
If you think the Android project SurveySDK_android 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.survey.androiddemo; /*from w w w.ja va 2s .c o m*/ import android.app.Application; import android.util.Log; public class AppContainer extends Application { private static final String TAG = "AppContainer"; @Override public void onCreate() { super.onCreate(); SDKConfigSettings.init(getApplicationContext()); Log.i(TAG, "SDKConfigSettings.init() called"); } }