EpcQrCode/settings.gradle.kts

25 lines
504 B
Plaintext
Raw Normal View History

2020-11-10 00:42:41 +00:00
pluginManagement {
2022-03-14 01:14:02 +00:00
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
resolutionStrategy {
eachPlugin {
if (requested.id.namespace == "com.android" || requested.id.name == "kotlin-android-extensions") {
useModule("com.android.tools.build:gradle:4.0.2")
}
2020-11-10 00:42:41 +00:00
}
2022-03-14 01:14:02 +00:00
}
2020-11-10 00:42:41 +00:00
}
rootProject.name = "EpcQrCodeProject"
2020-11-10 00:42:41 +00:00
include(":EpcQrCode")
include(":EpcQrCodeAndroidApp")
include(":EpcQrCodeJavaFxApp")
2022-03-14 01:14:02 +00:00
include(":EpcQrCodeNativeApp")
include(":EpcQrCodeRest")