Infinity-For-Lemmy/build.gradle

27 lines
671 B
Groovy
Raw Normal View History

2018-07-26 17:04:44 +02:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
2021-09-25 03:07:26 +02:00
mavenCentral()
maven { url "https://jitpack.io" }
2018-07-26 17:04:44 +02:00
jcenter()
}
dependencies {
2023-07-15 13:06:29 +02:00
classpath 'com.android.tools.build:gradle:7.4.2'
2023-08-21 10:09:07 +02:00
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.20'
2018-07-26 17:04:44 +02:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
2023-07-15 13:06:29 +02:00
2018-07-26 17:04:44 +02:00
allprojects {
repositories {
google()
mavenCentral()
2021-09-25 03:07:26 +02:00
maven { url "https://jitpack.io" }
jcenter()
2018-07-26 17:04:44 +02:00
}
}