Created
March 13, 2014 15:34
-
-
Save Fi5t/9530713 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apply plugin: 'android' | |
android { | |
compileSdkVersion 19 | |
buildToolsVersion "19.0.0" | |
defaultConfig { | |
minSdkVersion 8 | |
targetSdkVersion 18 | |
versionCode 1 | |
versionName "1.0" | |
} | |
signingConfigs { | |
signForAll { | |
storeFile file("") | |
storePassword "" | |
keyAlias "" | |
keyPassword "" | |
} | |
} | |
buildTypes { | |
release { | |
runProguard false | |
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' | |
} | |
test { | |
packageNameSuffix ".test" | |
signingConfig signingConfigs.signForAll | |
} | |
dev { | |
packageNameSuffix ".dev" | |
signingConfig signingConfigs.signForAll | |
sourceSet { | |
} | |
} | |
production { | |
packageNameSuffix ".production" | |
signingConfig signingConfigs.signForAll | |
} | |
} | |
} | |
dependencies { | |
compile 'com.android.support:appcompat-v7:+' | |
compile fileTree(dir: 'libs', include: ['*.jar']) | |
} | |
task testPrint << { | |
File releasePropsFile = new File(System.getenv('HOME')) | |
println releasePropsFile | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment