3rd-party Gradle plug-ins may be the cause

后端 未结 17 847
悲哀的现实
悲哀的现实 2020-12-07 12:00

After updating to Android Studio 3.1 I got this error message:

The project works fine and this is mostly just a warning, so my question is what\'s the meani

17条回答
  •  旧巷少年郎
    2020-12-07 12:19

    1. remove apply plugin: 'kotlin-kapt'
    2. add mavenCentral() in build.gradle like:

      allprojects { repositories { mavenCentral() google() jcenter() } }

    3. Sync and Clean project

提交回复
热议问题