Gradle-android-scala-plugin Gives "could Not Find Matching Constructor" Error
Importing this example code into Android Studio gives this error: Error:(17, 0) Could not find matching constructor for: org.gradle.api.internal.tasks.DefaultScalaSourceSet(java
Solution 1:
I just uploaded a new version to JitPack.
It supports Android Gradle Plugin 2.3.0 and Gradle 3.3.
In your project build.gradle:
buildscript {
repositories {
jcenter()
maven { url 'https://jitpack.io' }
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.0'
classpath 'com.github.xingda920813:gradle-android-scala-plugin:android-gradle-2.3.0'
}
}
Post a Comment for "Gradle-android-scala-plugin Gives "could Not Find Matching Constructor" Error"