2014-07-04 09:34:27 +00:00
|
|
|
apply plugin: 'com.android.application'
|
2014-01-24 08:45:36 +00:00
|
|
|
|
|
|
|
android {
|
2014-06-23 19:41:56 +00:00
|
|
|
compileSdkVersion Integer.parseInt(project.ANDROID_BUILD_SDK_VERSION)
|
|
|
|
buildToolsVersion project.ANDROID_BUILD_TOOLS_VERSION
|
|
|
|
|
2014-01-24 08:45:36 +00:00
|
|
|
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-01-24 08:45:36 +00:00
|
|
|
}
|
2014-06-23 19:41:56 +00:00
|
|
|
|
2014-01-24 08:45:36 +00:00
|
|
|
buildTypes {
|
|
|
|
release {
|
2014-12-27 11:06:02 +00:00
|
|
|
minifyEnabled false
|
2014-01-24 08:45:36 +00:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
|
|
}
|
|
|
|
}
|
2014-11-08 11:53:00 +00:00
|
|
|
|
2014-07-07 20:15:08 +00:00
|
|
|
lintOptions {
|
2015-04-07 18:59:39 +00:00
|
|
|
checkReleaseBuilds false
|
2014-07-07 20:15:08 +00:00
|
|
|
|
|
|
|
// 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
|
|
|
|
2014-07-07 20:15:08 +00:00
|
|
|
abortOnError false
|
|
|
|
}
|
2014-11-08 11:53:00 +00:00
|
|
|
|
2015-06-21 11:04:52 +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
|
|
|
}
|
|
|
|
|
2014-01-24 08:45:36 +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'
|
2014-01-24 08:45:36 +00:00
|
|
|
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')
|
2015-06-21 11:04:52 +00:00
|
|
|
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'
|
2015-07-10 14:25:35 +00:00
|
|
|
compile 'com.android.support:palette-v7:22.2.0'
|
2015-07-16 04:09:29 +00:00
|
|
|
compile 'com.android.support:recyclerview-v7:22.2.0'
|
2015-07-12 07:50:05 +00:00
|
|
|
compile 'de.mrmaffen:holocircularprogressbar:1.0.1'
|
2015-07-11 19:57:57 +00:00
|
|
|
compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.4'
|
2015-07-12 07:50:05 +00:00
|
|
|
compile 'com.google.code.gson:gson:2.3.1'
|
2014-06-23 19:41:56 +00:00
|
|
|
compile 'com.jakewharton:butterknife:5.1.+'
|
2015-08-08 03:02:29 +00:00
|
|
|
compile 'com.sothree.slidinguppanel:library:3.1.1'
|
2014-06-23 19:41:56 +00:00
|
|
|
compile 'de.greenrobot:eventbus:2.2.1'
|
2014-07-28 09:52:21 +00:00
|
|
|
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'
|
|
|
|
|
2015-06-19 18:33:25 +00:00
|
|
|
testCompile 'org.robolectric:robolectric:3.0-rc3'
|
2015-01-17 19:51:06 +00:00
|
|
|
testCompile 'junit:junit:4.+'
|
2014-01-24 08:45:36 +00:00
|
|
|
}
|