2014-01-24 15:48:49 +00:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
dependencies {
|
2014-03-25 19:57:05 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:0.9.+'
|
2014-01-24 15:48:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-24 08:45:36 +00:00
|
|
|
apply plugin: 'android'
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 19
|
|
|
|
buildToolsVersion '19.0.0'
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 7
|
|
|
|
targetSdkVersion 19
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
runProguard false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-25 19:57:05 +00:00
|
|
|
|
2014-01-24 08:45:36 +00:00
|
|
|
sourceSets {
|
|
|
|
main {
|
|
|
|
aidl.srcDirs = ['src/main/java']
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile 'com.android.support:support-v4:19.0.+'
|
2014-05-31 19:24:55 +00:00
|
|
|
compile 'com.jakewharton:butterknife:5.1.+'
|
|
|
|
compile 'com.squareup.picasso:picasso:2.3.1@jar'
|
2014-01-24 08:45:36 +00:00
|
|
|
compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar'
|
|
|
|
compile 'com.github.chrisbanes.actionbarpulltorefresh:extra-abs:+'
|
2014-04-20 13:54:33 +00:00
|
|
|
// You must install or update the Google Repository through the SDK manager to use this dependency.
|
|
|
|
// The Google Repository (separate from the corresponding library) can be found in the Extras category.
|
|
|
|
// compile 'com.google.android.gms:play-services:4.2.42'
|
2014-01-24 08:45:36 +00:00
|
|
|
compile files('src/main/libs/gson-2.2.4.jar')
|
|
|
|
compile files('src/main/libs/jsoup-1.7.2.jar')
|
|
|
|
compile project(':Changeloglib:ChangeLogLibrary')
|
|
|
|
compile project(':MessageBar')
|
|
|
|
}
|