I’m trying to install the io.michaelrocks:paranoid-gradle-plugin:0.3.2 plugin in my Flutter Android project. My project is using Android Studio, and my ext.kotlin_version is set to 1.6.10. The plugin is supposed to be available on JCenter, but my project is giving the following error:
Could not find io.michaelrocks:paranoid-gradle-plugin:0.3.2.
I’ve tried adding JCenter to my repositories, but it’s still not working. How can I resolve this issue and successfully include the plugin in my project? Is there an alternative source or workaround?
buildscript {
ext.kotlin_version = '1.6.10'
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.google.gms:google-services:4.3.15'
classpath 'com.android.tools.build:gradle:4.0.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.0'
classpath 'io.michaelrocks:paranoid-gradle-plugin:0.3.2'
classpath "com.guardsquare:proguard-gradle:7.0.1"
}
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
}
}
If i try to use 0.33 version, can successfully download. but getting runtime error.
* What went wrong:
Execution failed for task ':app:transformClassesWithParanoidForDevDebug'.
> kotlin.jvm.internal.MutablePropertyReference1Impl.<init>(Ljava/lang/Class;Ljava/lang/String;Ljava/lang/String;I)V
Couldn’t find 0.22 version jre file
- I need to install 0.22 version
- I need jre file of 0.22 version
- I need to fix issue of 0.33 version
john doe is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.