Compare commits

...

2 Commits

Author SHA1 Message Date
renovate[bot]
575f4ea7ee
Merge a13e91d246 into 896028d0bb 2024-11-21 04:18:47 +00:00
896028d0bb migrate onto new templates-oriented in gradle model 2024-11-11 16:49:11 +06:00
11 changed files with 35 additions and 28 deletions

View File

@ -4,5 +4,5 @@ plugins {
id "com.android.library" id "com.android.library"
} }
apply from: "$mppAndroidProjectPresetPath" apply from: "$mppAndroidProject"

View File

@ -3,5 +3,5 @@ plugins {
id "org.jetbrains.kotlin.plugin.serialization" id "org.jetbrains.kotlin.plugin.serialization"
} }
apply from: "$mppJavaProjectPresetPath" apply from: "$mppJavaProject"

View File

@ -3,5 +3,5 @@ plugins {
id "org.jetbrains.kotlin.plugin.serialization" id "org.jetbrains.kotlin.plugin.serialization"
} }
apply from: "$mppJsProjectPresetPath" apply from: "$mppJsProject"

View File

@ -4,5 +4,5 @@ plugins {
id "com.android.library" id "com.android.library"
} }
apply from: "$mppProjectWithSerializationPresetPath" apply from: "$mppProjectWithSerialization"

View File

@ -1,25 +1,32 @@
allprojects { File templatesFolder = new File("$rootProject.projectDir.absolutePath${File.separatorChar}gradle${File.separatorChar}templates")
ext {
projectByName = { String name ->
for (subproject in rootProject.subprojects) {
if (subproject.name == name) {
return subproject
}
}
return null
}
internalProject = { String name -> Map properties = new HashMap<String, String>()
projectByName(name)
}
mppProjectWithSerializationPresetPath = "${rootProject.projectDir.absolutePath}/mppProjectWithSerialization.gradle" if (templatesFolder.exists() && templatesFolder.isDirectory()) {
mppJavaProjectPresetPath = "${rootProject.projectDir.absolutePath}/mppJavaProject.gradle" templatesFolder.listFiles().each {
mppJsProjectPresetPath = "${rootProject.projectDir.absolutePath}/mppJsProject.gradle" properties[it.name - ".gradle"] = it.absolutePath
mppAndroidProjectPresetPath = "${rootProject.projectDir.absolutePath}/mppAndroidProject.gradle" }
}
defaultAndroidSettingsPresetPath = "${rootProject.projectDir.absolutePath}/defaultAndroidSettings.gradle"
properties["projectByName"] = { name ->
// publishGradlePath = "${rootProject.projectDir.absolutePath}/publish.gradle" for (subproject in rootProject.subprojects) {
if (subproject.name == name) {
return subproject
}
}
return null
}
properties["internalProject"] = { name ->
projectByName("$name")
}
allprojects {
ext {
releaseMode = (project.hasProperty('RELEASE_MODE') && project.property('RELEASE_MODE') == "true") || System.getenv('RELEASE_MODE') == "true"
properties.forEach { k, v ->
it[k] = v
}
} }
} }

View File

@ -36,4 +36,4 @@ kotlin {
} }
} }
apply from: "$defaultAndroidSettingsPresetPath" apply from: "$defaultAndroidSettings"

View File

@ -62,4 +62,4 @@ java {
targetCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17
} }
apply from: "$defaultAndroidSettingsPresetPath" apply from: "$defaultAndroidSettings"

View File

@ -4,5 +4,5 @@ plugins {
id "com.android.library" id "com.android.library"
} }
apply from: "$mppProjectWithSerializationPresetPath" apply from: "$mppProjectWithSerialization"