blob: 79b30709d54e72edcc758826fda9a63834902592 [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.4-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'
}
}