dynamicbible/src/android/build.gradle

35 lines
776 B
Groovy
Raw Normal View History

2020-08-18 08:45:04 -04:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2021-01-01 21:50:52 +00:00
2020-08-18 08:45:04 -04:00
repositories {
google()
maven {
url "https://plugins.gradle.org/m2/"
2024-02-28 00:53:24 +00:00
mavenCentral()
}
2020-08-18 08:45:04 -04:00
}
dependencies {
2024-02-28 00:53:24 +00:00
classpath 'com.android.tools.build:gradle:7.4.1'
classpath 'com.google.gms:google-services:4.3.15'
classpath "com.github.triplet.gradle:play-publisher:3.8.1"
2020-08-18 08:45:04 -04:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
apply from: "variables.gradle"
allprojects {
repositories {
google()
2024-02-28 00:53:24 +00:00
mavenCentral()
2020-08-18 08:45:04 -04:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
2024-02-28 00:53:24 +00:00