Fixed mistake in default datasource - was 'undefined' - made default 'Pebble'
This commit is contained in:
BIN
app/app-release-2.0b.apk
Normal file
BIN
app/app-release-2.0b.apk
Normal file
Binary file not shown.
@@ -1,8 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="uk.org.openseizuredetector"
|
||||
android:versionCode="17"
|
||||
android:versionName="2.0a" >
|
||||
android:versionCode="18"
|
||||
android:versionName="2.0b" >
|
||||
|
||||
<uses-sdk android:minSdkVersion="14" />
|
||||
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user