Android支持库迁移说明 作者: rontian 时间: 2020-11-24 分类: Android 评论 ### 常用依赖库对比 | Old build artifact | AndroidX build artifact| | --- | --- | | com.android.support:appcompat-v7:28.0.2 | androidx.appcompat:appcompat:1.0.0 | | com.android.support:design:28.0.2 | com.google.android.material:material:1.0.0 | | com.android.support:support-v4:28.0.2 | androidx.legacy:legacy-support-v4:1.0.0 | | com.android.support:recyclerview-v7:28.0.2 | androidx.recyclerview:recyclerview:1.0.0 | | com.android.support.constraint:constraint-layout:1.1.2 | androidx.constraintlayout:constraintlayout:1.1.2 | ### 常用支持库类对比: | Support Library class | AndroidX class | | --- | --- | | android.support.v4.app.Fragment | androidx.fragment.app.Fragment | | android.support.v4.app.FragmentActivity | androidx.fragment.app.FragmentActivity | | android.support.v7.app.AppCompatActivity | androidx.appcompat.app.AppCompatActivity | | android.support.v7.app.ActionBar | androidx.appcompat.app.ActionBar | | android.support.v7.widget.RecyclerView | androidx.recyclerview.widget.RecyclerView |