Android studio库移植到Android源码

1.Android studio中依赖的库格式通常为xxxx.xxxx.xxx:版本号。

dependencies {
    implementation 'androidx.appcompat:appcompat:1.3.1'
    implementation 'com.google.android.material:material:1.4.0'
    implementation 'androidx.constraintlayout:constraintlayout:2.1.1'
    implementation 'com.google.code.gson:gson:2.8.5'
    implementation 'androidx.recyclerview:recyclerview:1.1.0'
}

2.转换成Android源码中依赖的库格式为xxxx.xxxx_xxx。

    static_libs: [
        “androidx.appcompat_appcompat",
        "com.google.android.material_material",
        "androidx.constraintlayout_constraintlayout",
        "com.google.code.gson_gson",
        "androidx.recyclerview_recyclerview",
    ],

你可能感兴趣的:(Android随笔,android,android,studio)