总共分为四步。
1.将需要添加的module文件copy到项目文件夹下;
2.在settings.gradle中引用该模块,
include ':XXX'
3.在主项目的build.gradle(app)中引用该模块
implementation project(":XXX")
4.点击sync now
总共分为四步。
1.将需要添加的module文件copy到项目文件夹下;
2.在settings.gradle中引用该模块,
include ':XXX'
3.在主项目的build.gradle(app)中引用该模块
implementation project(":XXX")
4.点击sync now