Android Studio - Could not find intellij-core.jar

后端 未结 12 917
小蘑菇
小蘑菇 2020-12-03 00:40

I am using android studio 3.1.4.

Error:Could not find intellij-core.jar (com.android.tools.external.com-intellij:intellij-core:26.0.1). Searched in the following loc

12条回答
  •  离开以前
    2020-12-03 01:27

    I solve my problem; change the platform/android/CordovaLib/build.gradle file. I put the maven repo ahead the jcenter:

    repositories {
        maven {
            url "https://maven.google.com"
        }
        jcenter()
    
    }
    

    And I use cordova-android 7.1.1.

提交回复
热议问题