1. 程式人生 > >關於在在module中使用的注意事項

關於在在module中使用的注意事項

在module中引入了AAR,而工程中匯入了改module作為依賴,即使工程中沒使用沒直接使用AAR中的東西,只使用了module中使用了AAR的類依然會找報錯。這種情況需要在工程中也匯入AAR包並指定位置如:

defaultConfig {
repositories {
    flatDir {   //指定位置偉SDK mudule中的libs下
        dirs project(':sdk').file('libs')
    }
}

}

implementation(name: '*****', ext: 'aar')