You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The links above introduced Implicit transitions for AboutThisApp screen with links like conference://droidkaigi.co.jp/{screen_name}
We're on the debug build type situation, but when there is a case where the different build types could exist in one device.
The Implicit transition would call both of them unless we change some parts of links.
So I implemented like this in gradle and AndroidManifest.
Overview (Required)
The links above introduced Implicit transitions for AboutThisApp screen with links like
conference://droidkaigi.co.jp/{screen_name}
We're on the
debug
build type situation, but when there is a case where the different build types could exist in one device.The Implicit transition would call both of them unless we change some parts of links.
So I implemented like this in gradle and AndroidManifest.
debug:
conference://droidkaigi.co.jp/{screen_name}
release:
conference://droidkaigi.co.jp.debug/{screen_name}
so What I'd like to do here is to write test for these method in
https://github.com/DroidKaigi/conference-app-2018/blob/master/app/src/main/java/io/github/droidkaigi/confsched2018/data/db/fixeddata/AboutThisApps.kt#L65-L75
https://github.com/DroidKaigi/conference-app-2018/blob/master/app/src/main/java/io/github/droidkaigi/confsched2018/presentation/NavigationController.kt#L146-L153
Links
The text was updated successfully, but these errors were encountered: