Default or static interface method used without --min-sdk-version >= 24

后端 未结 4 1388
独厮守ぢ
独厮守ぢ 2021-01-04 00:07

Why do we get this error in Android Studio 3.0 RC1?

 com.android.dx.cf.code.SimException: 
default or static interface method used without --min-sdk-version          


        
4条回答
  •  轮回少年
    2021-01-04 00:21

    If the java-library that you're talking about was guava, you can try to upgrade it to the latest android-specific build

    implementation 'com.google.guava:guava:23.0-android'
    

    This fixed for me

提交回复
热议问题