Android के लिए Ionic 3 ऐप बनाते समय मुझे अचानक निम्न त्रुटि हो रही है।
Could not find org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.60-eap-25
हम एंड्रॉयड स्टूडियो से एक समाधान है यहाँ लेकिन उसके बाद मैं निम्नलिखित कोड के साथ मेरी build.gradle में बदल दिया मैं अभी भी त्रुटि हो रही है।
buildscript {
repositories {
...
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
}
}
allprojects {
repositories {
...
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
}
}
मेरे कॉर्डोवा को अपडेट करने और उपरोक्त समाधान को जोड़ने के बाद मेरी बिल्ड.ग्रेड फ़ाइल इस तरह दिखती है।
buildscript {
repositories {
google()
jcenter()
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
}
dependencies {
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath 'com.android.tools.build:gradle:3.3.0'
}
}
allprojects {
repositories {
google()
jcenter()
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
}
//This replaces project.properties w.r.t. build settings
project.ext {
defaultBuildToolsVersion="28.0.3" //String
defaultMinSdkVersion=19 //Integer - Minimum requirement is Android 4.4
defaultTargetSdkVersion=28 //Integer - We ALWAYS target the latest by default
defaultCompileSdkVersion=28 //Integer - We ALWAYS compile with the latest by default
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
फिर भी वही त्रुटि।
gradle:3.0.1
स्थित है।
...
पहले से मौजूद अन्य रिपॉजिटरी को हटा दिया था ?