Problems after upgrade to Kotlin 1.3.50:
See original GitHub issueI am currently seeing this error again after updating to kotlin 1.3.50:
* What went wrong:
A problem occurred configuring project ':app'.
> Could not resolve all files for configuration ':app:noGethForFDroidOfflineDebugUnitTestCompileClasspath'.
> Failed to transform file 'unmocked-androidapp.jar' to match attributes {artifactType=android-classes, org.gradle.usage=java-runtime-jars}
> Execution failed for IdentityTransform: /home/ligi/git/walleth/app/app/build/intermediates/unmocked-androidapp.jar.
> /home/ligi/git/walleth/app/app/build/intermediates/unmocked-androidapp.jar
_Originally posted by @ligi in https://github.com/bjoernQ/unmock-plugin/issues/31#issuecomment-525672779_
Issue Analytics
- State:
- Created 4 years ago
- Reactions:1
- Comments:8 (7 by maintainers)
Top Results From Across the Web
[BUG] T' is only available since Kotlin 1.3.50 and cannot be ...
Describe the bug After package update from 0.0.14 to 0.1.0 it is not possible to compile for Android anymore. This is the returned...
Read more >Kotlin 1.3.50 released - The JetBrains Blog
We're happy to announce the release of Kotlin 1.3.50 today. ... If you run into any problems with the new release, you're welcome...
Read more >Kotlin releases
A bug fix release for Kotlin 1.5.20. Learn more about Kotlin 1.5.20. An incremental release with various improvements such as: String concatenation via ......
Read more >Getting weird bugs when trying to update to Kotlin 1.4.0. How ...
Clean Project; Invalidate caches and restart; Delete .gradle folder and restart; Fix broken classes paths. UPDATE Forgot to mention that I'm ...
Read more >Fixing Android Gradle Plugin Kotlin version 1.3.0 - YouTube
Fixing an issue that occasionally appears when you update your Gradle plugin in Android Studio: ERROR: The Android Gradle plugin supports ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
We’ve managed to fix that with running
unMock
task before runninglint
task. So we’ve addedlint.dependsOn(':app:unMock')
inside appbuild.gradle
file.Sorry for the delay - I tried to reproduce it with a fresh project created with Android Studio 3.6 Canary 7 which was Kotlin 1.3.41 initially, then upgraded to 1.3.50
gradlew lint
just worked immediately without a prior buildMaybe your build includes other plug ins which interfere here? Can you reproduce it with a fresh project w/o any additional plug ins?