Error: Default interface methods are only supported starting with Android N (--min-api 24): void com

项目运行的时候,如果报错

Error: Default interface methods are only supported starting with Android N (--min-api 24): void com

 1.报错说明:

Error: Default interface methods are only supported starting with Android N (--min-api 24): void com_第1张图片

2.解决方案:

在app的build.gradle文件中添加以下代码

 

apply plugin: 'com.android.application'

android {
    compileSdkVersion 29
    defaultConfig {
        applicationId "com.jyr.im.chat.project"
        minSdkVersion 16
        targetSdkVersion 29
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner&#

你可能感兴趣的:(Bug记录,Android,Bug记录,Error:,Default,interface,metho)