Skip to content

Commit

Permalink
Fixed crash on startup
Browse files Browse the repository at this point in the history
  • Loading branch information
QuantumBadger committed Apr 17, 2013
1 parent acd37d2 commit 0b54b39
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.quantumbadger.redreader"
android:versionCode="24"
android:versionName="1.6.1"
android:versionCode="25"
android:versionName="1.6.2"
android:installLocation="auto">

<uses-sdk android:minSdkVersion="8"
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.quantumbadger.redreader</groupId>
<artifactId>redreader</artifactId>
<version>1.6.1</version>
<version>1.6.2</version>
<packaging>apk</packaging>
<name>redreader</name>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public void onCreate(final SQLiteDatabase db) {

final String queryString = String.format(
"CREATE TABLE %s (" +
"%s TEXT PRIMARY KEY ON CONFLICT UPDATE," +
"%s TEXT PRIMARY KEY ON CONFLICT REPLACE," +
"%s TEXT NOT NULL," +
"%s TEXT," +
"%s TEXT," +
Expand Down

0 comments on commit 0b54b39

Please sign in to comment.