Skip to content

Instantly share code, notes, and snippets.

@firehawk895
Created July 3, 2015 10:14
Show Gist options
  • Save firehawk895/17706730452d85bb6ae0 to your computer and use it in GitHub Desktop.
Save firehawk895/17706730452d85bb6ae0 to your computer and use it in GitHub Desktop.
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "22.0.0"
defaultConfig {
minSdkVersion 14
targetSdkVersion 21
versionCode 1
versionName "1.0"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
multiDexEnabled true
}
}
productFlavors {
}
}
/*repositories {
*//*maven {
url "https://repo.commonsware.com.s3.amazonaws.com"
}*//*
}*/
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:22.1.1'
compile 'com.google.android.gms:play-services:7.3.0'
compile 'com.android.support:support-v4:22.1.1'
compile 'com.android.support:appcompat-v7:21.0.2'
compile 'com.squareup.okhttp:okhttp:2.3.0'
compile 'com.squareup.retrofit:retrofit:1.9.0'
compile 'com.google.code.gson:gson:2.3'
compile ('com.koushikdutta.ion:ion:2.+'){
exclude group: 'com.android.support', module:'support-v4'
}
compile 'com.theartofdev.edmodo:android-image-cropper:1.0.+'
compile project(":library")
compile 'com.makeramen:roundedimageview:2.1.0'
compile files('libs/YouTubeAndroidPlayerApi.jar')
compile files(rootProject.core_jar_path, rootProject.chat_jar_path, rootProject.messages_jar_path)
compile 'com.android.support:cardview-v7:21.0.+'
compile 'com.android.support:recyclerview-v7:21.0.+'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment