Error sending crash report
ait: Server did not receive report: Origin Error message: Invalid crash time, too new:seconds: 1465835646 nanos: 500000000
What does this mean?
Fuji's answer is a good staring point, but however it took me some time to figure out how/where to set the version code.
The easiest way is to add it to the build.grade file like the following:
android {
compileSdkVersion XXX
buildToolsVersion 'XXX'
// ...
defaultConfig {
// ...
versionCode 1
}
// ...
}
if versionCode is not set, it default to -1, which Firebase doesn't like.