Skip to content

Instantly share code, notes, and snippets.

@firehawk895
Created July 3, 2015 10:17
Show Gist options
  • Save firehawk895/b1c9ed3a292dfff301a1 to your computer and use it in GitHub Desktop.
Save firehawk895/b1c9ed3a292dfff301a1 to your computer and use it in GitHub Desktop.
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.1.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
def qb_sdk_jars_template_path = 'app/libs/quickblox-android-sdk'
def qb_sdk_version = '2.2.5'
ext.core_jar_path = qb_sdk_jars_template_path + '-core-' + qb_sdk_version + '.jar'
ext.chat_jar_path = qb_sdk_jars_template_path + '-chat-' + qb_sdk_version + '.jar'
ext.messages_jar_path = qb_sdk_jars_template_path + '-messages-' + qb_sdk_version + '.jar'
allprojects {
repositories {
jcenter()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment