Reputation: 375
Unable to resolve dependency for ':app@debug/compileClasspath': Failed to
transform file 'billing-1.0.aar' to match attributes {artifactType=jetified-
aar} using transform JetifyTransform
Upvotes: 9
Views: 1434
Reputation: 375
Hello Guys, I found the solution.
What you need to do is to upgrade your Firebase crashlytics fabric version to 1.25.4
in your project build.gradle
file:
...
dependencies {
classpath 'io.fabric.tools:gradle:1.25.4' // Crashlytics
...
}
...
Also, you should make sure you're not using an older version of Android KTX (like version 0.3).
Upvotes: 5