A mobile app for thmmy.gr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
apply plugin: "com.github.ben-manes.versions"
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
maven { url "https://jitpack.io" }
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
classpath 'com.android.tools.build:gradle:4.0.1'
|
|
|
|
classpath 'com.google.gms:google-services:4.3.3'
|
|
|
|
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.2.0'
|
|
|
|
classpath 'org.ajoberstar.grgit:grgit-core:3.1.1' // Also change in app/gradle/grgit.gradle
|
|
|
|
classpath "com.github.ben-manes:gradle-versions-plugin:0.21.0"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
maven { url "https://maven.google.com" }
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
maven { url "https://jitpack.io" }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|