+ // PIN CODE request\r
+ // best location is to decide; let's try this first\r
+ boolean pinStart = false;\r
+ SharedPreferences appPrefs = PreferenceManager.getDefaultSharedPreferences(getApplicationContext());\r
+ pinStart = appPrefs.getBoolean("set_passcode", false);\r
+ \r
+ if (pinStart) {\r
+ Intent i = new Intent(getApplicationContext(), PinCodeActivity.class);\r
+ i.putExtra("activity", "splash");\r
+ startActivity(i);\r
+ }\r
+ \r