-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Task with name 'compileKotlin' not found in project ':app'. #2
Comments
make sure you have the gradle kotlin plugin applied. |
AGP replaces Edit: found a temporary workaround: plugins {
id("io.github.izhangzhihao.unmeta") version "1.0.0" apply false
}
afterEvaluate {
task<UnmetaTask>("releaseUnmeta")
.apply { enable.set(true) }
.also { tasks["compileReleaseKotlin"].finalizedBy(it) }
} |
AGP is not supported yet, you can submit a pr to support AGP. |
I have created a AGP plugin at https://github.com/axzae/unmeta-gradle-plugin The plugin will only remove |
An exception occurred applying plugin request [id: 'io.github.izhangzhihao.unmeta', version: '1.0.0']
The text was updated successfully, but these errors were encountered: