为了账号安全,请及时绑定邮箱和手机立即绑定

android studio如何创建一个子module并引入主工程

标签:
Android

首先我们new 一个Module:

https://img1.sycdn.imooc.com//5c1e417c0001d69617161140.jpg

在弹出框中选择Library:

https://img1.sycdn.imooc.com//5c1e41a90001248b18001334.jpg


https://img1.sycdn.imooc.com//5c1e41bd00011e4a17801326.jpg

然后press finish:

https://img1.sycdn.imooc.com//5c1e41d000010fd013321314.jpg

https://img1.sycdn.imooc.com//5c1e425a0001069a22461242.jpg

在build.gradle写下面这句话,library就被引用了

compile project(":mylibrary")

有一个地方需要特别注意,这个libary的support-v4包的版本可能跟主版本不一样,那么最好改成跟主版本一样,这样不会有编译问题,很多时候编译问题就在于这些包的版本不一样

这个新建立的libary的build.gradle:

apply plugin: 'com.android.library'

android {
    compileSdkVersion 28
    buildToolsVersion "28.0.0"


    defaultConfig {
        minSdkVersion 15
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:support-v4:23.1.1'
    testCompile 'junit:junit:4.12'
    androidTestCompile('com.android.support.test.espresso:espresso-core:3.0.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })

}


https://img1.sycdn.imooc.com//5c1e41bb00011e4a17801326.jpg


点击查看更多内容
2人点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消