简体   繁体   中英

Error:(1, 0) Plugin with id 'com.android.application' not found - no build.gradle file

i have imported an Android Studio project, into Android Studio yet the error appears:

First Screenshot

Error:(1, 0) Plugin with id 'com.android.application' not found.

It appears on import that the Build.gradle file for the project and the settings.gradle file were not created

Second Screenshot

this is log file :

2017-01-05 15:07:25,745 [ 381987]   INFO - ls.idea.gradle.GradleSyncState - Sync with Gradle for project 'app' failed: Plugin with id 'com.android.application' not found.

Consult IDE log for more details (Help | Show Log) 
2017-01-05 15:07:25,755 [ 381997]   WARN - roid.tools.ndk.GradleWorkspace - NDK support for project 'app' is disabled because the project doesn't contain any valid native configurations. 
2017-01-05 15:07:25,795 [ 382037]   INFO -       #com.jetbrains.cidr.lang - Clearing symbols finished in 0 s. 
2017-01-05 15:07:25,797 [ 382039]   INFO -       #com.jetbrains.cidr.lang - Loading symbols finished in 0 s. 
2017-01-05 15:07:25,798 [ 382040]   INFO -       #com.jetbrains.cidr.lang - Building symbols finished in 0 s. 
2017-01-05 15:07:25,799 [ 382041]   INFO -       #com.jetbrains.cidr.lang - Saving symbols finished in 0 s. 

Create new file called build.gradle in the folder that contains your app folder. Paste the following content into it:

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.2.3'
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

So the structure would be:

Project Name
  - app
      - src
      - build
      - build.gradle
  - build
  - gradle
  - build.gradle (add this file)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM