Plugin with id com android library

Plugin with id ‘com.android.library’ not found in a multi-platform project #221

Comments

yuriry commented Sep 25, 2018

I’m trying to integrate kotlinx-serialization into a multi-platform project:

Root project has the following build script

At this pont everyting compiles and runs.

As soon as I add kotlinx-serialization classpath to the root build script:

Android project says: Plugin with id ‘com.android.library’ not found.

Is it a known problem or my project setup is incorrect?

Thank you in advance!

P.S: The full (failing) build script of the root project is:

The text was updated successfully, but these errors were encountered:

sandwwraith commented Sep 25, 2018

I don’t know why it complains about missing com.android.library , but kotlinx.serialization plugin is definitely missing because 0.8.0-rc13 is intended to use with Kotlin 1.3-RC, where serialization is bundled, and therefore there are no artifact with coordinates org.jetbrains.kotlinx:kotlinx-gradle-serialization-plugin:0.8.0-rc13 .

To use it with Kotlin 1.2.71, use 0.6.2 version. To use with 1.3-RC, use updated maven coordinates which are stated in this doc: https://github.com/Kotlin/kotlinx.serialization/blob/master/docs/eap13.md

yuriry commented Sep 25, 2018

Thank you for the prompt response!

When I changed serialization_version to v0.6.2 I got the same error. My setup is such that the multi-platform root project is a part of a gradle composite build, i.e., a git sub-module of a larger Android App project and included into the larger Android App project using includeBuild ‘my-mpp’ .

When I cloned the root project into a seperate folder as a stand-alone project (not as a git sub-module of the larger Android App project), the error has gone away. It is definetly related to my setup.

After getting rid of the original Plugin with id ‘com.android.library’ not found problem I applied kotlinx-serialization to my common project, so that it looks like this now:

Now the error is Plugin with id ‘kotlinx-serialization’ not found. .

Do I need to apply this plugin? Both example-native and example-ios don’t apply kotlinx-serialization and only apply kotlin-platform-native , but documentation says it should be applied.

Читайте также:  Оформления экрана для андроид

Источник

Ошибка Gradle в Android Studio: плагин с id ‘ com.андроид.библиотека не найден

когда я пытаюсь построить проект библиотеки Android в Android Studio, я получаю следующую ошибку Gradle:

Я довольно новичок в Gradle и это очень запутанной для меня. Почему это происходит?

сборка.файл Gradle выглядит следующим образом:

4 ответов

ваша проблема в том, что вы используете файл верхнего уровня где вы не можете использовать такой плагин.

— вы примерно следующую структуру:

на ваш топ-уровня файл, который вы можете использовать:

в своем lib/build.gradle вы можете использовать код выложил в вопрос:

наконец-то в свой settings.gradle

также вы можете обратиться этот вопрос.

предполагая, что у вас есть стандартная структура проекта, как показано ниже:

ваш сбой синхронизации, похоже, указывает на проблему с вашей конфигурацией SDK/IDE.

начните с открытия диалогового окна » структура проекта «и убедитесь, что значение» Android SDK location: «установлено на правильный путь.

во-вторых, откройте Диспетчер SDK и снова убедитесь, что у вас установлен правильный путь к местоположению SDK.

в-третьих, убедитесь, что у вас есть правильная версия установлен пакет» Android SDK Build-Tools». (23.0.2 в данном случае)

наконец, чтобы убедиться, что у нас нет плохого состояния, я рекомендую сделать «Invalidate и Restart» из файла -> «Invalidate Caches /Restart. «

после всего этого я ожидаю, что он должен синхронизировать. Если не попытаться запустить ./gradlew из корня вашего проекта и сообщать нам о любой новой информации.

добавьте эти строки в файл gradle библиотеки.

Источник

Plugin with id ‘com.android.application’ not found. #87

Comments

singhdeepansh commented May 23, 2018

i am getting this error while i am gradle is syncing

The text was updated successfully, but these errors were encountered:

Kvaibhav01 commented May 24, 2018

Make sure your Gradle version is compatible with your Android Gradle Plugin.

If your project level build.gradle says:

Then the Gradle version is 4.0 and above. If it’s like this:

Then the Gradle version is less than 4.0.

Just correct this and sync your project with Gradle.

If still, the error persists then find the gradle-wrapper.properties file and change the last sentence to this:
distributionUrl=http\://services.gradle.org/distributions/gradle-2.2.1-all.zip

Note that the Gradle version in the above line must match with the one you have in your build.gradle file.

amit13091992 commented Oct 17, 2018

Try adding the latest Gradle dependency in your project-level build.gradle file:

And do sync gradle once after doing this, it will work.

WeBeCreativeCanada commented Apr 29, 2019

I’m getting the same error but have applied the above fix so hoping for some feedback on what I have implementated below:
buildscript <
repositories <
jcenter()
>
dependencies <
classpath ‘com.google.gms:google-services:4.0.1’

allprojects <
repositories <
jcenter()
google()
>
>

task clean(type: Delete) <
delete rootProject.buildDir

amit13091992 commented Apr 29, 2019

Have u added this line too?

classpath ‘com.android.tools.build:gradle:2.1.2’ //change this with latest gradle version.

WeBeCreativeCanada commented Apr 29, 2019

Added them like this:
dependencies <
classpath ‘com.google.gms:google-services:4.0.1’

amit13091992 commented Apr 29, 2019 •

Added them like this:
dependencies <
classpath ‘com.google.gms:google-services:4.0.1’

You need to add build tools for gradle too for syncing the project. check my answer once.
After you will add this and still getting this error then do:
clean rebuild and after that invalidate cache/Restart.

Читайте также:  Отключить режим не беспокоить android авто

WeBeCreativeCanada commented Apr 29, 2019

Now I am getting this error:
Could not find method classpath() for arguments [com.google.gms:google-services:4.0.1] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.

WeBeCreativeCanada commented Apr 29, 2019


That is the structure and things have changed since 2015

amit13091992 commented Apr 29, 2019

Add maven < url "https://maven.google.com" > to your root level build.gradle file

allprojects <
repositories <
jcenter()
maven <
url «https://maven.google.com»
>
>
>
This maven repo is required starting from 11.2.0.

You can also use the google() shortcut but check the requirements before using it.

Firebase Android SDKs and Google Play Services libraries now have independent version numbers, allowing for more frequent, flexible updates. Update the google play service gradle plugin version to the latest version (at least 3.3.1).

and update the libraries to the latest version.


That is the structure and things have changed since 2015

amit13091992 commented May 11, 2020 •

Plugin with id ‘com.android.application’ not found.
what should i do ?

Check once your Mainactivity.java file I think it might have any error and once do:

  1. Gradle sync
  2. Invalidate cache and restart in Android studio

sag-007 commented May 11, 2020

Process: com.example.final_project, PID: 2305
java.lang.RuntimeException: Unable to start activity ComponentInfo: java.util.concurrent.RejectedExecutionException: Task java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask@d9ee1b9 rejected from com.google.firebase.database.core.utilities.DefaultRunLoop$1@382a9fe[Terminated, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 1]
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:3123)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:3266)
at android.app.servertransaction.LaunchActivityItem.execute(LaunchActivityItem.java:78)
at android.app.servertransaction.TransactionExecutor.executeCallbacks(TransactionExecutor.java:108)
at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:68)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1957)
at android.os.Handler.dispatchMessage(Handler.java:106)
at android.os.Looper.loop(Looper.java:214)
at android.app.ActivityThread.main(ActivityThread.java:7099)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:494)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:965)
Caused by: java.util.concurrent.RejectedExecutionException: Task java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask@d9ee1b9 rejected from com.google.firebase.database.core.utilities.DefaultRunLoop$1@382a9fe[Terminated, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 1]
at java.util.concurrent.ThreadPoolExecutor$AbortPolicy.rejectedExecution(ThreadPoolExecutor.java:2085)
at java.util.concurrent.ThreadPoolExecutor.reject(ThreadPoolExecutor.java:848)
at java.util.concurrent.ScheduledThreadPoolExecutor.delayedExecute(ScheduledThreadPoolExecutor.java:334)
at java.util.concurrent.ScheduledThreadPoolExecutor.schedule(ScheduledThreadPoolExecutor.java:562)
at java.util.concurrent.ScheduledThreadPoolExecutor.execute(ScheduledThreadPoolExecutor.java:654)
at com.google.firebase.database.core.utilities.DefaultRunLoop.scheduleNow(com.google.firebase:firebase-database@@16.0.4:105)
at com.google.firebase.database.core.Repo.scheduleNow(com.google.firebase:firebase-database@@16.0.4:276)
at com.google.firebase.database.Query.addEventRegistration(com.google.firebase:firebase-database@@16.0.4:233)
at com.google.firebase.database.Query.addValueEventListener(com.google.firebase:firebase-database@@16.0.4:149)
at com.example.final_project.SignIn.updateUsers(SignIn.java:53)
at com.example.final_project.SignIn.onCreate(SignIn.java:48)
at android.app.Activity.performCreate(Activity.java:7327)
at android.app.Activity.performCreate(Activity.java:7318)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1275)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:3103)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:3266)
at android.app.servertransaction.LaunchActivityItem.execute(LaunchActivityItem.java:78)
at android.app.servertransaction.TransactionExecutor.executeCallbacks(TransactionExecutor.java:108)
at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:68)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1957)
at android.os.Handler.dispatchMessage(Handler.java:106)
at android.os.Looper.loop(Looper.java:214)
at android.app.ActivityThread.main(ActivityThread.java:7099)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:494)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:965)
how can i solve it ?this is from logcat

I am getting the above error when I try to installl my application ? And it says myappname Keeps stoping

Источник

Android Studio: плагин с идентификатором «android-библиотека» не найден

Я пытался заставить ActionBarSherlock работать и иметь некоторые проблемы. Одна проблема я столкнулся следующее сообщение при попытке построить его:

Я рассматриваю это как проблему ABS в отдельном потоке, поэтому здесь мне любопытно, как решить общую проблему:

вот сборка.Gradle в:

вы можете помочь?

6 ответов:

поручите Gradle загрузить плагин для Android из центрального репозитория Maven.

вы делаете это, вставляя следующий код в начале файла сборки Gradle:

заменить версии, строку 1.0.+ С последней версией. Выпущенные версии плагина Gradle можно найти в официальный репозиторий Maven или MVNRepository артефакт поиск.

просто для записи (заняло у меня довольно много времени), прежде чем ответ Гжегожа сработал для меня, я должен был установить «репозиторий поддержки android» через менеджер SDK!

установите его и добавьте следующий код выше применить плагин: ‘android-библиотека’ в сборке.gradle из папки actionbarsherlock!

Читайте также:  Mobile smarts для android

для преобразования модуля приложения в модуль библиотеки. Более подробная информация здесь:https://developer.android.com/studio/projects/android-library.html

использовать mavenCentral() или jcenter() добавить в сценарий:

в более поздних версиях плагин изменил имя на:

и, как уже упоминалось в некоторых других ответах, вам нужны инструменты gradle, чтобы использовать его. Используя 3.0.1, вы должны использовать РЕПО google, а не mavenCentral или jcenter:

добавить ниже к build.gradle модуль проекта:

/ / файл сборки верхнего уровня, в котором можно добавить параметры конфигурации, общие для всех подпроектов/модулей.

Источник

UnknownPluginException: Plugin with id ‘com.android.library’ not found #12

Comments

npomfret commented Aug 17, 2016 •

The default android project doesn’t seem to work for me. I get the errors:

What am I doing wrong?

The text was updated successfully, but these errors were encountered:

frostney commented Aug 17, 2016

Hi @npomfret and thank you for using this tool. Would you mind checking if you installed the «Android Support Repository» in your Android SDK manager?

npomfret commented Aug 18, 2016

Yes, Android Support Repository is installed (version 35.0.0)

npomfret commented Sep 1, 2016 •

Any update on this? Has anyone managed the get the generated android project to work in android studio? How do you use it if not?

npomfret commented Sep 1, 2016

After much hacking around with the generated gradle file, I ended up with the following that seems to make android studio happy. The trick seems to be to tell gradle about jcenter, twice. Oh, and to tell gradle about gradle.

I didn’t want to submit it as a PR (yet) as I have no idea what the changes I’ve made actually mean. Gradle is a total mystery to me and I wouldn’t want even to suggest this going in without some discussion.

npomfret commented Sep 19, 2016

Has anyone managed to get the java project working in Android studio without making these modifications to the generated gradle file?

vikeri commented Dec 13, 2016

I got the same error but couldn’t get it to work with your gradle file either 😞

vikeri commented Dec 13, 2016

What I got working was the following:

npomfret commented Dec 14, 2016

I’ve asked about setting up android build files that don’t compile on a few other repos. It seems to me (in general) that a lot of react-native people just don’t care about compiling java code in isolation of a project. People commonly build RN native libraries that just don’t compile unless you embed them in another project. which seems like madness to me. In some RN library projects, most (maybe 99%) of the code has nothing to do with RN, its just pure java. And it should be compilable and testable in isolation in my opinion. But I don’t know how to convince others of this. This project is a good example. I think everything in here would work IF you embedded the library you create into a fully functional RN project.

Источник

Оцените статью