Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- buildscript {
- repositories {
- mavenCentral()
- }
- dependencies {
- classpath 'com.android.tools.build:gradle:0.11.+'
- }
- }
- apply plugin: 'android'
- android {
- compileSdkVersion 19
- buildToolsVersion "19.1.0"
- defaultConfig {
- applicationId ""
- minSdkVersion 11
- targetSdkVersion 19
- versionCode 1
- versionName "1.0"
- }
- buildTypes {
- release {
- runProguard false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- compile fileTree(dir: 'libs', include: ['*.jar'])
- compile 'com.android.support:appcompat-v7:19.+'
- compile 'com.google.android.gms:play-services:4.4.52'
- compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.2'
- compile 'com.google.guava:guava:17.0'
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement