在把百度地图的安卓源码放到自己的源码中发生了报错。
    
    程序报错package android.support.annotation does not exist,
    
    在网上找了很多,
    
    要不就是进android studio 把support仓库卸载之后重装,结果卸载之后,那个就找不到了,又手动跑外网下载安装support,
   
要不就是更新SDK,换V4包,
    最后我把那些
    
    
     import android.support.annotation
    
    
    改成了
    
    
     import androidx.annotation
    
然后各种修修补补,才能勉强可以用。
    参考链接:1、https://blog.csdn.net/BigMoster/article/details/77676711
    
    2、https://blog.csdn.net/Mr_Tony/article/details/49363997
    
    3、https://blog.csdn.net/kankanlj/article/details/83899503
    
    4、https://blog.csdn.net/hhdhz/article/details/87395833
    
    5、https://blog.csdn.net/u012149181/article/details/78690296
   
如果要开发百度地图的话,这个文章还是很有用的,https://blog.csdn.net/qq_34115899/article/details/80541545
 
