Skip to content

Commit

Permalink
Make checkPendingAndContinue protected to handle deserialisation cras…
Browse files Browse the repository at this point in the history
…hes (#149)

* fix: handling deserialization OOM crash

* fix: undo version changes for core and gson

* revert: testing changes

* bump batching version

* version bumping all modules

* revert: dependency bumps
  • Loading branch information
arunreddy10 authored Dec 10, 2020
1 parent 6eb68a4 commit 9e453dd
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions batching-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ android {
minSdkVersion 14
targetSdkVersion 28
versionCode 1
versionName "1.3.9"
versionName "1.3.10"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

Expand All @@ -29,7 +29,7 @@ android {

buildscript {
repositories {
maven { url 'http://repo1.maven.org/maven2' }
maven { url 'https://repo1.maven.org/maven2' }
maven { url "https://plugins.gradle.org/m2/" }
google()
}
Expand Down
4 changes: 2 additions & 2 deletions batching-gson/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apply plugin: 'com.github.dcendents.android-maven'

buildscript {
repositories {
maven { url 'http://repo1.maven.org/maven2' }
maven { url 'https://repo1.maven.org/maven2' }
maven { url "https://plugins.gradle.org/m2/" }
google()
}
Expand Down Expand Up @@ -32,7 +32,7 @@ android {
minSdkVersion 14
targetSdkVersion 28
versionCode 1
versionName "1.3.9"
versionName "1.3.10"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

Expand Down
4 changes: 2 additions & 2 deletions batching/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ android {
minSdkVersion 14
targetSdkVersion 28
versionCode 1
versionName "1.3.9"
versionName "1.3.10"
}

buildTypes {
Expand Down Expand Up @@ -68,7 +68,7 @@ dependencies {

buildscript {
repositories {
maven { url 'http://repo1.maven.org/maven2' }
maven { url 'https://repo1.maven.org/maven2' }
maven { url "https://plugins.gradle.org/m2/" }
google()
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ public void run() {
});
}

void checkPendingAndContinue() {
protected void checkPendingAndContinue() {
initializeIfRequired();
if (queueFile.size() > 0) {
try {
Expand Down

0 comments on commit 9e453dd

Please sign in to comment.