mirror of
https://github.com/OMGeeky/andors-trail.git
synced 2026-01-04 02:35:06 +01:00
21 lines
355 B
Groovy
21 lines
355 B
Groovy
buildscript {
|
|
repositories {
|
|
maven { url "file:///usr/share/maven-repo" }
|
|
}
|
|
|
|
dependencies {
|
|
classpath "com.android.tools.build:gradle:debian"
|
|
}
|
|
}
|
|
|
|
apply plugin: "com.android.application"
|
|
|
|
android {
|
|
compileSdkVersion 23
|
|
buildToolsVersion "24.0.0"
|
|
}
|
|
|
|
dependencies {
|
|
compile files("libs/android-support-v4.jar")
|
|
}
|