fixes main method running from android studio (#5693)

This commit is contained in:
Aria Moradi 2021-02-08 05:30:05 -08:00 committed by GitHub
parent 18779c2777
commit c1a1e3555d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -12,6 +12,4 @@ dependencies {
compileOnly 'org.jsoup:jsoup:1.10.2' compileOnly 'org.jsoup:jsoup:1.10.2'
compileOnly 'com.google.code.gson:gson:2.8.2' compileOnly 'com.google.code.gson:gson:2.8.2'
compileOnly 'com.github.salomonbrys.kotson:kotson:2.5.0' compileOnly 'com.github.salomonbrys.kotson:kotson:2.5.0'
implementation project(":core")
} }

View File

@ -56,6 +56,9 @@ repositories {
mavenCentral() mavenCentral()
} }
dependencies {
implementation project(":core")
}
apply from: "$rootDir/common-dependencies.gradle" apply from: "$rootDir/common-dependencies.gradle"
preBuild.dependsOn(lintKotlin) preBuild.dependsOn(lintKotlin)