Fixed mistake in default datasource - was 'undefined' - made default 'Pebble'

This commit is contained in:
Graham Jones
2016-01-16 20:06:44 +00:00
parent be7814c9b8
commit ac76c9626c
3 changed files with 3 additions and 3 deletions

View File

@@ -111,7 +111,7 @@ public class StartupActivity extends Activity {
// Display the DataSource name
SharedPreferences SP = PreferenceManager
.getDefaultSharedPreferences(getBaseContext());;
String dataSourceName = SP.getString("DataSource","undefined");
String dataSourceName = SP.getString("DataSource","Pebble");
TextView tv = (TextView)findViewById(R.id.dataSourceTextView);
tv.setText("DataSource = "+dataSourceName);