Androidstudio将Project以aar包导入项目
1.以module形式导入project new->new module
2.将module变为library builder.gradle中将
apply plugin: 'com.android.application' 改为 apply plugin: 'com.android.library'
defaultConfig { applicationId "com.example.administrator.m3demo" 去掉这行
3.编译,在builder->outputs->aar中找到生成的aar
4.移除刚才引入的module,将生成的aar放到libs
dependencies { ..... compile (name:'m3demo-release',ext:'aar') } //repositories{ // flatDir{ // dirs 'libs' // } //}
相关推荐
82324899 2020-06-26
大白ol 2020-04-30
安辉 2020-01-29
xilove0 2020-01-11
Imfondof 2020-01-01
Soinice 2019-12-22
飒水飞月 2019-12-21
XNYWLZC 2019-12-19
YukiRain 2019-12-13
Imfondof 2015-06-15
Imfondof 2018-09-10
XNYWLZC 2017-10-30
大白ol 2019-07-15
哈格咂丶 2019-06-29
猫耳山在天边 2019-06-28
Imfondof 2019-06-28
OliverLau 2019-06-26
Imfondof 2018-09-10
Imfondof 2017-10-13