Skip to content

Commit

Permalink
Release info
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelcoutinho committed Sep 8, 2015
1 parent 37744bd commit 2a8a7f9
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,26 +1,41 @@
apply plugin: 'com.android.application'

android {
signingConfigs {
config {
keyAlias ''
keyPassword ''
storeFile file('')
storePassword ''
}
}
compileSdkVersion 22
buildToolsVersion "22.0.1"

defaultConfig {
applicationId "com.dc.cowbird"
minSdkVersion 14
targetSdkVersion 22
versionCode 1
versionCode 3
versionName "1.0"
signingConfig signingConfigs.config
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.config
applicationIdSuffix 'Protocolo'
}
debug {
signingConfig signingConfigs.config
}
}
productFlavors {
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:22.2.0'
compile 'com.android.support:design:22.2.0'
}

0 comments on commit 2a8a7f9

Please sign in to comment.