Fixes #524 - onContextAvailable not being called on all child controllers
This commit is contained in:
+1
-1
@@ -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
@@ -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
@@ -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'
|
||||
|
||||
Reference in New Issue
Block a user