问题描述
我是新来的Gradle的构建系统和IntelliJ。
那么,如何建立一个Android图书馆项目(如com.myapp.lib1)和应用项目(如com.myapp.app),并构建系统包括应用程序项目com.myapp.lib1?
我去了项目结构 - >模块 - >我的应用项目,并增加了一个依赖到lib项目。在应用程序项目中使用时的IntelliJ现在可以从项目的lib承认阶级,但是当我运行应用程序的项目,有喜欢的错误:
摇篮:错误:包com.myapp.lib1不存在
要创建库:
文件>新建模块
选择的Android库
要使用该库将其添加为依赖关系:
文件>项目结构>模块>依赖
然后添加模块(机器人库)作为一个模块依赖。
运行项目。它的会的工作。
I'm new to the gradle build system and IntelliJ.
So how do I create an Android Library Project (e.g. com.myapp.lib1) and the application project (e.g. com.myapp.app) and make the build system include com.myapp.lib1 on the application project?
I went to the Project Structure -> Modules -> My App project and added a dependency to the lib project. IntelliJ now can recognize classes from the lib project when used in the app project, but when I run the app project, there are errors like:
Gradle: error: package com.myapp.lib1 does not exist
To create a library:
File > New Module
select Android Library
To use the library add it as a dependancy:
File > Project Structure > Modules > Dependencies
Then add the module (android library) as a module dependency.
Run your project. It will work.
这篇关于如何创建Android Studio中使用该库项目库项目和应用项目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!