Skip to content

Commit

Permalink
Move Android version to io.sqlc package
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher J. Brody committed Feb 7, 2016
1 parent a3e6128 commit 91b20d6
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changes

## 0.x.x-xx

- Move Android version to io.sqlc package

## 0.7.2-common-dev

- All iOS operations are now using background processing (reported to resolve intermittent problems with [email protected])
Expand Down
6 changes: 3 additions & 3 deletions plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@
<!-- Cordova >= 3.0.0 -->
<config-file target="res/xml/config.xml" parent="/*">
<feature name="SQLitePlugin">
<param name="android-package" value="io.liteglue.SQLitePlugin"/>
<param name="android-package" value="io.sqlc.SQLitePlugin"/>
</feature>
</config-file>

<source-file src="src/android/io/liteglue/SQLitePlugin.java" target-dir="src/io/liteglue"/>
<source-file src="src/android/io/liteglue/SQLiteAndroidDatabase.java" target-dir="src/io/liteglue"/>
<source-file src="src/android/io/sqlc/SQLitePlugin.java" target-dir="src/io/sqlc"/>
<source-file src="src/android/io/sqlc/SQLiteAndroidDatabase.java" target-dir="src/io/sqlc"/>

<!-- Android-sqlite-connector: -->
<source-file src="src/external/libs/sqlite-connector.jar" target-dir="libs"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Copyright (c) 2010, IBM Corporation
*/

package io.liteglue;
package io.sqlc;

import android.annotation.SuppressLint;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Copyright (c) 2010, IBM Corporation
*/

package io.liteglue;
package io.sqlc;

import android.annotation.SuppressLint;

Expand Down Expand Up @@ -32,6 +32,12 @@
import java.io.OutputStream;
import java.io.IOException;

import io.liteglue.SQLColumnType;
import io.liteglue.SQLiteConnector;
import io.liteglue.SQLiteConnection;
import io.liteglue.SQLiteOpenFlags;
import io.liteglue.SQLiteStatement;

public class SQLitePlugin extends CordovaPlugin {

/**
Expand Down

0 comments on commit 91b20d6

Please sign in to comment.