Files
jami-client-android/ring-android/build.gradle
Adrien Béraud c1a3cbb040 build tools: bump studio and gradle plugin
* update android studio generated files
* update Android gradle plugin to 1.5

Tuleap: #128
Change-Id: I98f5157c3779e687bb109d60f115650ca2182c53
2015-12-04 14:28:28 -05:00

24 lines
534 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.+'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
mavenCentral()
}
}
dependencies {
}
task wrapper(type: Wrapper) {
gradleVersion = '2.8' //version required
}