Android instant apps feature plugin not found

Viewed 1235

Gradle sync failed: Plugin with id 'com.android.feature' not found.

Please help me with the solution. I have followed the google docs regarding the environment setup for Instant apps. Please check the set up guide here : Set up your environment for Instant Apps

2 Answers

Try this..change to

dependencies {
    classpath 'com.android.tools.build:gradle:2.3.3'

    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
}

if you are using stable android studio

Related