news-android/News-Android-App/build.gradle

70 lines
2.3 KiB
Groovy
Raw Normal View History

2014-07-04 09:34:27 +00:00
apply plugin: 'com.android.application'
android {
2014-06-23 19:41:56 +00:00
compileSdkVersion Integer.parseInt(project.ANDROID_BUILD_SDK_VERSION)
buildToolsVersion project.ANDROID_BUILD_TOOLS_VERSION
defaultConfig {
2014-06-23 19:41:56 +00:00
minSdkVersion Integer.parseInt(project.ANDROID_BUILD_MIN_SDK_VERSION)
targetSdkVersion Integer.parseInt(project.ANDROID_BUILD_TARGET_SDK_VERSION)
}
2014-06-23 19:41:56 +00:00
buildTypes {
release {
2014-12-27 11:06:02 +00:00
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
2014-11-08 11:53:00 +00:00
lintOptions {
2015-04-07 18:59:39 +00:00
checkReleaseBuilds false
// Or, if you prefer, you can continue to check for errors in release builds,
// but continue the build even when errors are found:
2014-11-08 11:53:00 +00:00
abortOnError false
}
2014-11-08 11:53:00 +00:00
sourceSets {
main {
aidl.srcDirs = ['src/main/java']
}
2014-11-08 11:53:00 +00:00
}
2015-07-18 09:10:59 +00:00
packagingOptions {
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
}
2014-11-08 11:53:00 +00:00
}
dependencies {
2015-01-17 19:51:06 +00:00
// core android studio module
//compile project(':core')
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'
compile project(':Changeloglib:ChangeLogLibrary')
2014-06-06 07:19:59 +00:00
compile project(':ownCloud-Account-Importer')
2015-07-18 09:10:59 +00:00
compile project(':customtabs')
compile 'com.android.support:support-v4:22.2.0'
compile 'com.android.support:appcompat-v7:22.2.0'
2015-06-22 14:51:37 +00:00
compile 'com.android.support:design:22.2.0'
compile 'com.android.support:palette-v7:22.2.0'
compile 'com.android.support:recyclerview-v7:22.2.0'
compile 'de.mrmaffen:holocircularprogressbar:1.0.1'
compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.4'
compile 'com.google.code.gson:gson:2.3.1'
2014-06-23 19:41:56 +00:00
compile 'com.jakewharton:butterknife:5.1.+'
compile 'com.sothree.slidinguppanel:library:3.1.1'
2014-06-23 19:41:56 +00:00
compile 'de.greenrobot:eventbus:2.2.1'
compile 'de.greenrobot:greendao:1.3.7@jar'
compile 'de.greenrobot:greendao-generator:1.3.1@jar'
2015-07-18 09:37:01 +00:00
2015-07-18 09:10:59 +00:00
compile 'org.apache.commons:commons-lang3:3.4'
testCompile 'org.robolectric:robolectric:3.0-rc3'
2015-01-17 19:51:06 +00:00
testCompile 'junit:junit:4.+'
}