mozilla-mobile / focus-android

⚠️ Firefox Focus (Android) moved to a new repository. It is now developed and maintained as part of: https://github.com/mozilla-mobile/firefox-android
https://github.com/mozilla-mobile/firefox-android
Mozilla Public License 2.0
2.11k stars 711 forks source link

Kotlin plugin should be enabled before 'kotlin-kapt' #3375

Closed mcomella closed 2 years ago

mcomella commented 6 years ago

Run:

./gradlew tasks | grep jacoco

Output: Kotlin plugin should be enabled before 'kotlin-kapt'

It appears it's a warning at the start of the gradle output and it pops out in stderr. :)

ido-ran commented 5 years ago

I got the same this when I've upgrade Adnroid Studio.

All I did was to swap the lines from

apply plugin: 'kotlin-kapt'
apply plugin: 'kotlin-android'

to

apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
FreedomChuks commented 5 years ago

all i had to do was decrease my kotlin version to

ext.kotlin_version = '1.3.41'

stale[bot] commented 2 years ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.