blob: 00aa7d84da9c9105e74f52133e579a6a81a70418 [file] [log] [blame]
buildscript {
repositories {
maven { url '../../../../../out/repo' }
}
dependencies {
classpath 'com.android.tools.build:gradle:0.12.2'
}
}
apply plugin: 'com.android.application'
android {
compileSdkVersion 19
buildToolsVersion '19.1.0'
packagingOptions {
exclude 'excluded.txt'
pickFirst 'first_pick.txt'
}
}
dependencies {
compile files('jar1.jar')
compile files('jar2.jar')
}