I don\'t know what to do about the following errors, I\'ve searched the web but not found anything:
java.lang.ClassNotFoundException: Didn\'t find class \"an
Adding Java 1.8 compatibility to my build.gradle fixed this for me (non-release build with multidex enabled).
build.gradle
compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } kotlinOptions { jvmTarget = "1.8" }
Unfortunately I'm not sure why :)