The given artifact contains a string literal with a package reference 'android.support.v4.content' that cannot be safely rewritten. for androidx

前端 未结 9 1027
礼貌的吻别
礼貌的吻别 2020-12-13 08:34

I upgraded my android studio to 3.4 canary and now I cannot successfully build anymore due to the following error:

The given artifact contains          


        
9条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-13 09:15

    Upgrade ButterKnife to latest version and make sure to add these into your build.gradle(app):

    android {
    ...
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    }
    

提交回复
热议问题