Jérôme Gully
10/14/2020, 9:03 AMincludeBuild to consume a library module that is not in the same path as the app project:
App project/projects/myApp/
App module/projects/myApp/myModuleApp/
LibProject/projects/myLib
I want to inculdeLibModule/projects/myLib/myModuleLib
myModuleLib in myModuleApp as a dependency.
I tried to create a new project app and a new project for the library (create new module android lib), and in settings.gradle from the app project I have added includeBuild("../LibProject/mylibrary") but it's not working. Maybe I have missed something, the error is:
Plugin [id: 'com.android.library'] was not found in any of the following sources:Jérôme Gully
10/14/2020, 9:06 AMcom.android.library pluginaarjav
10/14/2020, 2:37 PMmyLib) build.gradle for the subproject (myModuleLib ) then it will still get applied properlyaarjav
10/14/2020, 2:38 PMJérôme Gully
10/15/2020, 9:04 AM