2019-09-03 02:31:51 +02:00
|
|
|
// Configure the root project.
|
2022-05-31 20:10:15 +02:00
|
|
|
pluginManagement {
|
|
|
|
apply from: 'app/config.gradle'
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
id 'com.android.application' version versions.androidGradlePlugin
|
|
|
|
id 'com.android.library' version versions.androidGradlePlugin
|
|
|
|
id 'org.jetbrains.kotlin.android' version versions.kotlinVersion
|
|
|
|
id 'io.github.gradle-nexus.publish-plugin' version versions.nexusPublishVersion
|
|
|
|
}
|
|
|
|
repositories {
|
|
|
|
gradlePluginPortal()
|
|
|
|
google()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-03 02:31:51 +02:00
|
|
|
rootProject.name = "Godot"
|
|
|
|
|
|
|
|
include ':app'
|
|
|
|
include ':lib'
|
2020-10-29 00:32:45 +01:00
|
|
|
include ':nativeSrcsConfigs'
|
2021-06-25 15:45:16 +02:00
|
|
|
include ':editor'
|
2021-09-10 04:55:42 +02:00
|
|
|
|
|
|
|
include ':assetPacks:installTime'
|
|
|
|
project(':assetPacks:installTime').projectDir = file("app/assetPacks/installTime")
|