NoSuchMethodError: java.lang.Long.hashCode

前端 未结 4 1996
暗喜
暗喜 2020-12-15 18:28

I have the following override of method on hashCode in AbstractORM class:

var _id = Random().nextLong()

override fun getId() = _id         


        
相关标签:
4条回答
  • 2020-12-15 18:31

    After checking the compiled AbstractORM class I found the problem: newer Kotlin versions generate a different code for that line

    getId().hashCode()
    

    Kotlin 1.1.2 generates the following code:

    Long.valueOf(this.getId()).hashCode()
    

    while newer versions of Kotlin generate this other code:

    Long.hashCode(this.getId())
    

    The problem is that this static method Long.hashCode(long) in Android is only available since API 24 (Android 7.0), while I'm testing on an Android device that has version 4.1 (API 16).

    I'm temporarily fixing by calculating the hash code manually although I've opened an issue here.

    override fun hashCode() = (getId() xor getId().ushr(32)).toInt()
    

    As commented on the issue, switching to Java 1.6 target for the Kotlin compiler generates the old compatible code.

    PS: I'm not 100% sure about those Kotlin versions, please take with a grain of salt.

    0 讨论(0)
  • 2020-12-15 18:53

    I've encountered the same issue and the solution for me is to assign both compileOptions and kotlinOptions in build.gradle to version 1.8

    android {
      ...
      // Configure only for each module that uses Java 8
      // language features (either in its source code or
      // through dependencies).
      compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
      }
      // For Kotlin projects
      kotlinOptions {
        jvmTarget = "1.8"
      }
    }
    

    Referenced from Use Java 8 language features of Android Developers official website.

    0 讨论(0)
  • 2020-12-15 18:54

    I'm not sure about how to solve your problem, but I'll try to explain why are you getting this exception.

    In Java 8 a new static method was added to a Long class:

    public static int hashCode(long value)
    

    And since then hashCode() method looks like this:

    public int hashCode() {
        return hashCode(this.value); // call Long.hashCode() static method
    }
    

    So it seems that you have some issues with Java version.

    0 讨论(0)
  • 2020-12-15 18:55

    Overriding the hashCode() function, as m0skit0 suggested, worked for me. I implemented this:

    override fun hashCode() : Int = id.toString().hashCode()
    

    My Kotlin compiler setting in AndroidStudio is :

    • incremental compilation enabled
    • target JVM ver. 1.6
    0 讨论(0)
提交回复
热议问题