Fixes #524 - onContextAvailable not being called on all child controllers

This commit is contained in:
Eric Kuck
2019-03-26 18:24:30 -05:00
parent 7cb681f6f1
commit f72b5bed65
4 changed files with 6 additions and 4 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ buildscript {
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.android.tools.build:gradle:3.3.1'
}
}
@@ -546,6 +546,8 @@ public abstract class Router {
if (transaction.controller.getNeedsAttach()) {
performControllerChange(transaction, null, true, new SimpleSwapChangeHandler(false));
} else {
setControllerRouter(transaction.controller);
}
}
}
+2 -2
View File
@@ -4,8 +4,8 @@ android {
compileSdkVersion rootProject.ext.compileSdkVersion
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
sourceCompatibility 1.8
targetCompatibility 1.8
}
defaultConfig {
+1 -1
View File
@@ -3,7 +3,7 @@ ext {
compileSdkVersion = 28
targetSdkVersion = 28
butterknifeVersion = '9.0.0-rc1'
butterknifeVersion = '10.1.0'
picassoVersion = '2.5.2'
leakCanaryVersion = '1.5.4'
rxJavaVersion = '1.3.8'