Skip to content

Commit

Permalink
Add cleanup wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
rubengees committed Oct 10, 2015
1 parent 5d61d2a commit 91c5ad3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ android {
defaultConfig {
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
versionCode 3
versionName "1.0.2"
}
buildTypes {
release {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,10 @@ public String id() {
});
}

public static void cleanup() {
Bridge.cleanup();
}

public interface ResultCallback<T> {
void onResult(@NonNull T result);

Expand Down

0 comments on commit 91c5ad3

Please sign in to comment.