blob: b860c09ec5c02048078a23c904bc43234e50a505 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
buildscript {
dependencies {
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3' // Add this line
}
}
apply plugin: "java"
apply plugin: 'com.github.dcendents.android-maven'
group='com.github.juick'
dependencies {
testCompile 'junit:junit:4.12'
}
|