简体   繁体   中英

How do I import a split_config.$arch.apk in Android.bp?

Android.bp

android_app_import {
name: "Wikipedia",
apk: "Wikipedia.apk",
dpi_variants: {
    xhdpi: {
        apk: "split_config.xhdpi.apk",
    },
},
arch_variants: {
    armeabi_v7a: {
        apk: "split_config.armeabi_v7a.apk",
    },
},
dex_preopt: {
    enabled: false,
},
presigned : true,
product_specific: true,

}

How can I add a dependency apk which is the spit config. I can only import the dpi variant what about variant apks and language apks

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM