Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

I have just installed Android Studio and after some quirks about the SDK Build Tools minimum having to be 19.1.0 instead of 19.0.3 I have not came about another error

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

I haven't found a solution in google and I am absolutely new so I "have no clue"... the error shows up when I just created a new blank activity (and application).

What does the error means and how to fix it? (if it's a problem)

Thanks.

like image 966
RYU Avatar asked Jun 13 '14 11:06

RYU


People also ask

What is a Gradle in Android?

Android Studio uses Gradle, an advanced build toolkit, to automate and manage the build process, while allowing you to define flexible custom build configurations. Each build configuration can define its own set of code and resources, while reusing the parts common to all versions of your app.

What is Gradle project in Java?

Gradle is a build automation tool known for its flexibility to build software. A build automation tool is used to automate the creation of applications. The building process includes compiling, linking, and packaging the code. The process becomes more consistent with the help of build automation tools.

How do I find my Gradle version?

In Android Studio, go to File > Project Structure. Then select the "project" tab on the left. Your Gradle version will be displayed here.


1 Answers

Put below code in build.gradle file of main Application and sync it.

buildscript {     repositories {         mavenCentral()     }     dependencies {         classpath 'com.android.tools.build:gradle:1.0.0'     } }  allprojects {     repositories {         mavenCentral()     } } 
like image 146
Ganesh Katikar Avatar answered Sep 18 '22 15:09

Ganesh Katikar