mirror of
https://github.com/null2264/yokai.git
synced 2025-06-20 18:24:42 +00:00
update to gradle 5.6.4
update to kotlin 1.3.70 updated jsoup to 1.12.2 updated evernote android job to 1.4.2 updated sqlite-android to 3.31.0 updated junit to 4.13 updated coroutines to 1.3.3 removed packaging options since these were required for travis releases added logic for formatter but kept it commented out switch everything to build.kts
This commit is contained in:
parent
c62ec99aff
commit
09f366d14b
7 changed files with 296 additions and 304 deletions
25
settings.gradle.kts
Normal file
25
settings.gradle.kts
Normal file
|
@ -0,0 +1,25 @@
|
|||
pluginManagement {
|
||||
repositories {
|
||||
gradlePluginPortal()
|
||||
jcenter()
|
||||
google()
|
||||
}
|
||||
resolutionStrategy {
|
||||
eachPlugin {
|
||||
if (requested.id.id.startsWith("org.jetbrains.kotlin")) {
|
||||
useVersion("1.3.70")
|
||||
} else if (requested.id.id.equals("com.android.application")) {
|
||||
useModule("com.android.tools.build:gradle:3.6.0")
|
||||
} else if (requested.id.id.equals("com.google.gms.google-services")) {
|
||||
useModule("com.google.gms:google-services:4.3.3")
|
||||
}else if (requested.id.id.equals("com.google.gms.google-services")) {
|
||||
useModule("com.google.gms:google-services:4.3.3")
|
||||
}else if(requested.id.id.equals("com.github.zellius.shortcut-helper")){
|
||||
useModule("com.github.zellius:android-shortcut-gradle-plugin:0.1.2")
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
include(":app")
|
Loading…
Add table
Add a link
Reference in a new issue