You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I need an Android library for calculating matrix exponentials and products. I tied using koma but could not add it to my build gradle. I have tried both the fixes in #110 and #108 but no luck. Here is my project's build.gradle:
buildscript {
ext.kotlin_version = '1.3.10'
repositories {
google()
mavenCentral()
maven { url = uri("https://plugins.gradle.org/m2/") }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10"
classpath "com.android.tools.build:gradle:7.0.4"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
Here's the error I am getting with this config:
I have tried a bunch of other things too, but they threw different errors, hopefully someone can point me in the right direction.
The text was updated successfully, but these errors were encountered:
I need an Android library for calculating matrix exponentials and products. I tied using koma but could not add it to my build gradle. I have tried both the fixes in #110 and #108 but no luck. Here is my project's build.gradle:
My module's build.gradle:
and my settings.gradle:
Here's the error I am getting with this config:
I have tried a bunch of other things too, but they threw different errors, hopefully someone can point me in the right direction.
The text was updated successfully, but these errors were encountered: