Fixed
Status Update
Comments
yb...@google.com <yb...@google.com> #4
FYI, I took the clustering example from the Google Maps API Guides page at...
https://developers.google.com/maps/documentation/javascript/marker-clustering
... and I changed the Google Maps version to v=3.exp
... and hosted the result athttp://www.GaryLittle.ca/mc-bug.html
Load this address in your iOS browser (Safari) and try clicking any of the clusters. Nothing happens.
This code uses the old MarkerClusterer but I'm sure the behaviour will be identical if using MarkerClustererPlus.
... and I changed the Google Maps version to v=3.exp
... and hosted the result at
Load this address in your iOS browser (Safari) and try clicking any of the clusters. Nothing happens.
This code uses the old MarkerClusterer but I'm sure the behaviour will be identical if using MarkerClustererPlus.
yb...@google.com <yb...@google.com>
yb...@google.com <yb...@google.com> #5
I've just verified that this problem also affects Android devices (running Chrome).
Description
Version of Gradle Plugin: 3.1.0
Version of Gradle: 4.4
Version of Java: 1.8
OS: MacOS 10.13.3
source of sample:
In sample app three modules:
Application module that has implementation project(':featurelevel1')
Level1 Module that has implementation project(':featurelevel2')
Level2 Module with main launcher activity
All modules have databinding enabled and compiler v2 is enabled
To reproduce crash:
Just compile and start app and then there will be crash:
NPE com.github.nekdenis.featurelevel2.databinding.ActivityLevel2Binding.setUser
This happens because DataBinderMapperImpl does not know about com.github.nekdenis.featurelevel2.DataBinderMapperImpl()
If uncomment this line app will work:
But in this case application module should now about EVERY gradle-module of app that is unacceptable.