plugin in android

Viewed 21

apply plugin: 'com.android.application' apply plugin: 'androidx.navigation.safeargs'


errore... A problem occurred evaluating project ':app'.

Plugin with id 'com.android.application' not found.

  • Try:

Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

1 Answers
plugins {
    id 'com.android.application'
    id 'org.jetbrains.kotlin.android'
    id 'kotlin-android-extensions'
    id 'kotlin-kapt'
    id 'androidx.navigation.safeargs.kotlin'
}

Add these plugins in your build.gradle(Project:"ProjectName") file in the the plugins block and then sync your gradle.

Related