Skip to content

Instantly share code, notes, and snippets.

@pdegand
Last active August 29, 2015 14:08
Show Gist options
  • Save pdegand/fd7fdf053108752b9ce4 to your computer and use it in GitHub Desktop.
Save pdegand/fd7fdf053108752b9ce4 to your computer and use it in GitHub Desktop.
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