Advertisement
yo2man

TreeBookmarker- build.gradle

Jul 29th, 2015
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.56 KB | None | 0 0
  1. //Gradle: app
  2. apply plugin: 'com.android.application'
  3.  
  4. android {
  5.     compileSdkVersion 17
  6.     buildToolsVersion "22.0.1"
  7.  
  8.     defaultConfig {
  9.         applicationId "com.teamtreehouse.readme"
  10.         minSdkVersion 8
  11.         targetSdkVersion 17
  12.     }
  13.  
  14.     buildTypes {
  15.         release {
  16.             minifyEnabled false
  17.             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
  18.         }
  19.     }
  20. }
  21.  
  22. dependencies {
  23.     compile files('libs/android-smart-image-view-1.0.0.jar')
  24.     compile files('libs/Parse-1.2.2.jar')
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement