Could not find org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.60-eap-25

Here the Error i have

my Gradle file

2019-10-28%20(3)

please, anyone, know to solve this problem

Hey, Following link will resolve your issue…

Replacing
mavenCentral() to

maven { url "https://maven.google.com" }
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }

IN
platforms->android->cordova-support-google-services->myAppName-build.gradle
1 Like

It’s worked for me thanks :heart:

1 Like

Hello. I’m having the same issue and I’ve tried this solution but it didn’t work for me. I’m on ionic4 and there’s no cordova-support-google-services folder so I made the changes in platforms/android/build.gradle
I appreciate further help.

Capture

My gradle version is 6.1.1 and the project classpath link to 3.3.0. Could this also be an issue?

Import this code toyour build.gradle file and try to build

repositories {
mavenCentral()
google()
jcenter()
}

dependencies {
    classpath 'com.android.tools.build:gradle:3.3.0'
}

Thanks for the prompt response @chameera1. I really appreciate.
I tried what you suggested and still didn’t get a successful build. Here’s what I got this time

gradle2

Here’s what my build.gradle looks like now, after your suggestion.
gradle1

I made the changes to 2 build.gradle files: platforms/android/build.gradle and platforms/android/app/build.gradle