Advertisement
dginz

Untitled

Mar 23rd, 2015
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 0.53 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4.     compileSdkVersion 19
  5.     buildToolsVersion "21.1.2"
  6.     defaultConfig {
  7.         applicationId "com.xavey.android"
  8.         minSdkVersion 17
  9.         targetSdkVersion 19
  10.     }
  11.     buildTypes {
  12.         release {
  13.             minifyEnabled true
  14.             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt'
  15.         }
  16.     }
  17. }
  18.  
  19. dependencies {
  20.     compile 'com.android.support:support-v4:19.0.0'
  21.     compile 'com.google.code.gson:gson:1.7.1'
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement