Hi everyone. I’m working with legacy project and p...
# android
a
Hi everyone. I’m working with legacy project and project has sub-projects. Structure looks like:
Copy code
root_folder:
- build.gradle - top build
- /project1/build.gradle
- /project2/build.gradle
I wanna update kotlin version only for project 1 but I faced with issues, because kotlin version is defined in top build file. Is there any workaround how to re-define kotlin version, android gradle plugin version only in /project1/build.gradle?
e
no, only one Kotlin version and one AGP version can be used across all subprojects
it is possible to use different versions across a composite build, but unless there are good reasons to use included builds (such as custom gradle plugins) I wouldn't recommend it