Files
Chat/BeWoPlanerChat/bewoplaner-chat-android/build.gradle

33 lines
697 B
Groovy
Raw Normal View History

2017-09-27 15:52:52 +02:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
2017-11-06 13:13:53 +01:00
google()
2017-09-27 15:52:52 +02:00
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.1'
classpath 'io.realm:realm-gradle-plugin:5.3.0'
2017-09-27 15:52:52 +02:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath 'com.google.gms:google-services:4.0.1'
2017-09-27 15:52:52 +02:00
}
}
allprojects {
repositories {
jcenter()
2017-10-27 00:11:25 +02:00
google()
2017-09-27 15:52:52 +02:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
versionCode = 1
versionName = "0.1"
}