Plugin with id 'com.android.feature' not found
问题 While converting my existing app to instant app using this codelab tutorial encountered this error. Plugin with id 'com.android.feature' not found. I have checked that I have Instant app development SDK on Android Studio 3.0 Can someone point what i am missing here? 回答1: I figured out the solution:- I have to add google() repository under Project's build.gradle like this allprojects { repositories { google() jcenter() } } After which i got this error:- to solve which I had to follow first