Есть проект 19года. Стартовый коммит обоих файлов (приложение и модуль) build.gradle очень сильно отличается от тех которые создаёт android studio сегодня. Перерыл всё что нашел из почитать, но так и не могу сообразить как их преобразовать к текущим раскладам. Может кто подкинет идею, что почитать по такому вопросу?
Jacen11, это файлы из готового проекта (стартовые)
ПРОЕКТ
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.3.31'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.3.0' apply false
id 'com.android.library' version '7.3.0' apply false
id 'org.jetbrains.kotlin.android' version '1.7.10' apply false
}
МОДУЛЬ
plugins {
id 'com.android.application'
id 'org.jetbrains.kotlin.android'
}
Я когда колдовал с ними, проект не собирался и ругался, среди прочего, на репозитарий Google. В итоге свои правки я отменил и вернулся к начальному варианту. Так что ошибки скопировать не могу.