Android - github导入项目问题记录

1、Could not initialize class com.android.sdklib.repository.AndroidSdkHandler

  • 出现这个提示的意思是项目太老了,得更换gradle版本,现在的版本基本都是北极狐或者更高了,我的是北极狐,解决方法:
    (1)把根目录下gradle改为4.1.2
    (2)同时把wrapper.properties中的gradle改为6.5
    (3)同步就好了


    (1)
(2)

2、EventQueue.isDispatchThread()=false Toolkit.getEventQueue()=com.intellij.ide.IdeEventQueue@4c609419
Current thread: Thread[ApplicationImpl pooled thread 415,4,Idea Thread Group] 1920982486
Write thread (volatile): Thread[AWT-EventQueue-0,6,Idea Thread Group] 276358601com.intellij.openapi.diagnostic.Attachment@3e326b70

  • 经过网上查是因为【简便同步导致】,根据步骤也解决了,解决方式:
    由于studio版本不同,界面有所不同,我的是北极狐【2020.3.1 patch2】


    image.png

老版本可能是


image.png

持续更新---

你可能感兴趣的:(Android - github导入项目问题记录)