AndroidStudio中导入module(简单版)

满堂花醉三千客,一剑霜寒十四州。这篇文章主要讲述AndroidStudio中导入module(简单版)相关的知识,希望能为你提供帮助。
1.把要导入成Mudle的项目修改成符合Library的格式  修改该项目中bulid.gradle文件中第一行代码

apply plugin: \'com.android.application\'

  修改为
apply plugin: \'com.android.library\'

然后,修改AndroidManifiest.xml文件中配置信息,此处主要是把原来配置的项目Style等配置以及MainActivity配置删除,这样处理是为了防止重复。以下以一个我的Moudle文件的AndroidManifiest.xml代码作为对照(PS:如果以下代码示例不好对照,此处具体删除信息可以网上找其他相关文章参考):
< manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.loonggg.lib.alarmmanager.clock"> < uses-permission android:name="android.permission.VIBRATE"/> < application android:allowBackup="true" android:label="@string/app_name" android:supportsRtl="true" > < receiver android:name="com.loonggg.lib.alarmmanager.clock.LoongggAlarmReceiver"> < intent-filter> < action android:name="com.loonggg.alarm.clock"/> < /intent-filter> < /receiver> < activity android:name=".ClockAlarmActivity" android:theme="@android:style/Theme.Translucent.NoTitleBar" > < /activity> < /application> < /manifest>

【AndroidStudio中导入module(简单版)】 
 
2.在要导入Mudule项目中的gradle文件中添加以下配置信息 2.1配置项目app目录中build.gradle文件信息
AndroidStudio中导入module(简单版)

文章图片

 
dependencies { compile fileTree(dir: \'libs\', include: [\'*.jar\']) androidTestCompile(\'com.android.support.test.espresso:espresso-core:2.2.2\', { exclude group: \'com.android.support\', module: \'support-annotations\' }) compile project(\':mudle-name\') compile \'com.android.support:appcompat-v7:26.+\' compile \'com.android.support.constraint:constraint-layout:1.0.2\' compile \'com.android.support:design:26.+\' compile \'com.android.support:support-v4:26.+\'testCompile \'junit:junit:4.12\' }

  关键一行:
compile project(\':mudle-name\')//mudle-name即要导入成Mudle文件的项目名称

 
2.2紧接着配置项目根目录中setting.gradle文件信息
AndroidStudio中导入module(简单版)

文章图片

在setting.gradle文件中,添加新配置的Module的项目名,具体如下:
未改变之前代码:
include \':app\'

改变之后:
include \':app\', \':your module name\'

 

    推荐阅读