關於遷移到androidx後找不到符號和程序包不存在的解決方法 如程序包 android.support.v4和android.support.v7不存在

最近遷移一個就舊項目到AS3.5.2上,自己是個小白,遷移成功,但同步出錯,其中plugin: 'com.android.application'不存在,折騰了好久,還是從百度上查找,在build gradle加入以下代碼搞定:

buildscript {

    repositories {

        jcenter()
        maven { url 'http://repo1.maven.org/maven2' }

        google()

    }

    dependencies {

        classpath 'com.android.tools.build:gradle:3.5.3'
    }
}
同步成功後,生成APK文件時,出現錯誤: 找不到符號
符號:   類 Fragment
位置: 程序包 android.support.v4.app  程序包 android.support.7不存在等很多符號不存在

後來看了遷移到androidx一篇文章後才知道, android.support.v4  v7寫法變了,如:

Android以前寫:import android.support.annotation.Nullable;
androidx要寫成:import androidx.annotation.Nullable;
Android以前寫:import android.support.v4.app.Fragment;
androidx要寫成:import androidx.fragment.app.Fragment;

把導入文件重改一下就可以了。具體新舊文件對照如下:

AndroidX的變化

1.常見依賴庫映射

舊編譯工件 AndroidX 編譯工件
com.android.support.constraint:constraint-layout androidx.constraintlayout:constraintlayout:1.1.2
com.android.support:appcompat-v7 androidx.appcompat:appcompat:1.0.0
com.android.support:cardview-v7 androidx.cardview:cardview:1.0.0
com.android.support:coordinatorlayout androidx.coordinatorlayout:coordinatorlayout:1.0.0
com.android.support:design com.google.android.material:material:1.0.0-rc01
com.android.support:drawerlayout androidx.drawerlayout:drawerlayout:1.0.0
com.android.support:gridlayout-v7 androidx.gridlayout:gridlayout:1.0.0
com.android.support:media2 androidx.media2:media2:1.0.0-alpha03
com.android.support:multidex androidx.multidex:multidex:2.0.0
com.android.support:percent androidx.percentlayout:percentlayout:1.0.0
com.android.support:recyclerview-v7 androidx.recyclerview:recyclerview:1.0.0
com.android.support:support-annotations androidx.annotation:annotation:1.0.0
com.android.support:support-compat androidx.core:core:1.0.0
com.android.support:support-fragment androidx.fragment:fragment:1.0.0
com.android.support:support-v4 androidx.legacy:legacy-support-v4:1.0.0
com.android.support:viewpager androidx.viewpager:viewpager:1.0.0
com.android.support:swiperefreshlayout androidx.swiperefreshlayout:swiperefreshlayout:1.0.0

更多詳細依賴庫變化,可查閱官方文檔或下載這些映射的 CSV 格式文件。



 

 

 

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章