Last active
August 29, 2015 14:08
-
-
Save pdegand/fd7fdf053108752b9ce4 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: 'com.android.application' | |
android { | |
compileSdkVersion 21 | |
buildToolsVersion "21.0.1" | |
defaultConfig { | |
applicationId "com.octo.app" | |
minSdkVersion 18 | |
targetSdkVersion 21 | |
versionCode 1 | |
versionName "1.0" | |
} | |
signingConfigs { | |
production { | |
storeFile file('../keystore/production.jks') | |
storePassword 'testocto' | |
keyAlias 'com.octo Test' | |
keyPassword 'testocto' | |
} | |
} | |
buildTypes { | |
release { | |
runProguard true | |
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | |
signingConfig signingConfigs.production | |
} | |
} | |
} | |
dependencies { | |
compile fileTree(dir: 'libs', include: ['*.jar']) | |
wearApp project(':wear') | |
compile 'com.google.android.gms:play-services:6.1.11' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment