Skip to content

Instantly share code, notes, and snippets.

@pdegand
Created October 27, 2014 15:57
Show Gist options
  • Save pdegand/eccbc74ce55b4786b395 to your computer and use it in GitHub Desktop.
Save pdegand/eccbc74ce55b4786b395 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 20
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'])
compile 'com.google.android.support:wearable:1.0.0'
compile 'com.google.android.gms:play-services-wearable:6.1.11'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment