Advertisement
the-technoholik

garage_opener/phone/build.gradle

Nov 15th, 2014
346
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 1.18 KB | None | 0 0
  1. buildscript {
  2.     repositories {
  3.         jcenter()
  4.     }
  5.     dependencies {
  6.         classpath 'com.android.tools.build:gradle:0.13.0'    
  7.     }
  8. }
  9. apply plugin: 'com.android.application'
  10. repositories {
  11.     jcenter()
  12. }
  13.  
  14. android {
  15.     compileSdkVersion 21    
  16.     buildToolsVersion "21.0.2"
  17.     defaultConfig {
  18.         applicationId "com.kisscool.android.garage_opener.app"
  19.         minSdkVersion 17
  20.         targetSdkVersion 21
  21.         versionCode 1
  22.         versionName "1.0"    
  23. }
  24.  
  25.     compileOptions {
  26.         sourceCompatibility JavaVersion.VERSION_1_7
  27.         targetCompatibility JavaVersion.VERSION_1_7    }
  28.  
  29.     // Uncomment this to enable signing of the release APK
  30.     /*
  31.     signingConfigs {
  32.         release {
  33.             storeFile file("/home/kisscool/.../abc.keystore")
  34.             storePassword "..."
  35.             keyAlias "..."
  36.             keyPassword "..."        
  37.         }
  38.     }
  39.  
  40.     buildTypes {
  41.         release {
  42.             signingConfig signingConfigs.release
  43.         }
  44.     }
  45.     */
  46. }
  47.  
  48. dependencies {
  49.     compile fileTree(dir: 'libs', include: ['*.jar'])
  50.     compile 'com.google.android.gms:play-services-wearable:+'
  51.     wearApp project(':wear')
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement