8000 Fix Android N preview build on API 23 by brody4hire · Pull Request #230 · sqlcipher/android-database-sqlcipher · GitHub
[go: up one dir, main page]

Skip to content

Fix Android N preview build on API 23 #230

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
# project structure.

# Project target.
target=android-19
target=android-23
9 changes: 9 additions & 0 deletions src/net/sqlcipher/AbstractCursor.java
Original file line number Diff line number Diff line change
Expand Up @@ -510,6 +510,15 @@ public Bundle respond(Bundle extras) {
return Bundle.EMPTY;
}

/**
* Bogus implementation needed to build with Android 6.0(+) SDK.
* This implementation will throw a RuntimeException with a
* "not implemented" message.
*/
public void setExtras(Bundle ignored) {
throw new RuntimeException("void setExtras(Bundle) not implemented");
}

/**
* This function returns true if the field has been updated and is
* used in conjunction with {@link #getUpdatedField} to allow subclasses to
Expand Down
0