blob: 8f2f7cb5d6d81f24d3be2626bb2107a8871ee3c5 [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'
android {
compileSdkVersion 15
testBuildType "debug"
signingConfigs {
myConfig {
storeFile file("debug.keystore")
storePassword "android"
keyAlias "androiddebugkey"
keyPassword "android"
}
}
defaultConfig {
versionCode 12
versionName "2.0"
minSdkVersion 16
targetSdkVersion 16
signingConfig signingConfigs.myConfig
buildConfig "private final static boolean DEFAULT = true;", \
"private final static String FOO = \"foo\";"
}
buildTypes {
debug {
packageNameSuffix ".debug"
buildConfig "private final static boolean DEBUG2 = false;"
}
}
aaptOptions {
noCompress 'txt'
}
}