Error: Could not find org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.60-eap-25 in Ionic 3

前端 未结 9 1795
我寻月下人不归
我寻月下人不归 2021-01-30 19:39

I am getting the following error suddenly while building Ionic 3 app for Android.

Could not find org.jetbrains.kotlin:ko         


        
9条回答
  •  不要未来只要你来
    2021-01-30 20:06

    in my project i fix like this.(my project in kotlin)

    buildscript{
    
        repositories {
             google()
             jcenter()
             ......
             maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
        }
    
    }
    
    allprojects {
        repositories {
             google()
             jcenter()
             ......
             maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
       }
    }
    

提交回复
热议问题