Back to project page PhoneProfiles_Eclipse.
The source code is released under:
Apache License
If you think the Android project PhoneProfiles_Eclipse 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 sk.henrichg.phoneprofiles; /*w w w . java 2 s.c o m*/ import android.os.Bundle; import android.app.Activity; public class UpgradePPHelperActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); //Log.d("BackgroundActivateProfileActivity.onCreate","xxx"); GlobalData.loadPreferences(getBaseContext()); } @Override protected void onStart() { super.onStart(); //Log.e("BackgroundActivateProfileActivity.onStart", "startupSource="+startupSource); PhoneProfilesHelper.installPPHelper(this, true); } @Override protected void onDestroy() { super.onDestroy(); } }