johncarl81 / parceler

:package: Android Parcelables made easy through code generation.

Home Page:http://parceler.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

cannot running with kapt

Lukmannudin opened this issue · comments

image

public class HashMap$$PackageHelper {

public static int accessHashMap$FG$threshold(java.util.HashMap hashMap$$0) {
    return hashMap$$0 .threshold;
}

public static float accessHashMap$FG$loadFactor(java.util.HashMap hashMap$$1) {
    return hashMap$$1 .loadFactor;
}

public static void accessHashMap$FS$threshold(java.util.HashMap hashMap$$2, int int$$0) {
    hashMap$$2 .threshold = int$$0;
}

}

in generated build, error at threshold and loadFactor at HashMap$$PackageHelper,
Android Studio 4.2.1
JDK 1.8.0
Mac 11.4

I already invalidate caches and restart also clean & build but still not have workaround

Solved! I changed JAVA_HOME to JDK 1.8.0.291 and tada Works again