blob: 6f8626a2d8294c982835bf8e7371ea98431eba5b [file] [log] [blame]
//
// A basic Android application that follows all the conventions
//
buildscript {
repositories {
maven { url '../../repo' }
}
dependencies {
classpath 'com.android.tools.build:gradle:0.3-SNAPSHOT'
}
}
apply plugin: 'android'
version='1.0'
repositories {
mavenCentral()
}
dependencies {
compile 'com.google.guava:guava:11.0.2'
}
android {
target = "android-15"
defaultConfig {
signingStoreLocation = "debug.keystore"
signingStorePassword = "android"
signingKeyAlias = "androiddebugkey"
signingKeyPassword = "android"
}
buildTypes {
blah {
packageNameSuffix = ".blah"
}
}
}