I am using the following code to check the application is first time running or not
SharedPreferences pref = getPreferences(MODE_PRIVATE);
if (!pref.contains(KEY_FIRST_RUN)) {
Some operation
}
pref.edit().putBoolean(KEY_FIRST_RUN, false).commit();
It works all the android versions except android 1.6
Please any one help me any error in my program
Give me some suggestion
The following works for me: