2014-10-16 20:06:56 +00:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2015-11-23 10:41:58 +00:00
|
|
|
compileSdkVersion 23
|
2015-06-05 10:35:47 +00:00
|
|
|
buildToolsVersion "22.0.1"
|
2014-10-16 20:06:56 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "org.fox.ttrss"
|
2015-02-09 20:05:44 +00:00
|
|
|
minSdkVersion 15
|
2014-10-30 10:43:01 +00:00
|
|
|
targetSdkVersion 21
|
2014-10-16 20:06:56 +00:00
|
|
|
}
|
|
|
|
|
2014-10-16 20:17:34 +00:00
|
|
|
lintOptions {
|
2014-10-29 13:23:07 +00:00
|
|
|
abortOnError false
|
2015-07-28 13:12:51 +00:00
|
|
|
checkReleaseBuilds false
|
|
|
|
disable 'MissingTranslation'
|
2014-10-16 20:17:34 +00:00
|
|
|
}
|
|
|
|
|
2014-10-16 20:06:56 +00:00
|
|
|
buildTypes {
|
|
|
|
release {
|
2015-01-27 08:53:20 +00:00
|
|
|
minifyEnabled false
|
2014-10-16 20:06:56 +00:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2014-10-16 20:17:34 +00:00
|
|
|
compile project(':taskerlocaleapi')
|
2014-10-29 13:23:07 +00:00
|
|
|
compile files('libs/dashclock-api-r1.1.jar')
|
|
|
|
compile files('libs/jsoup-1.6.1.jar')
|
|
|
|
compile files('libs/universal-image-loader-1.9.3.jar')
|
2015-11-23 10:41:58 +00:00
|
|
|
compile 'com.android.support:cardview-v7:23.0.0'
|
|
|
|
compile 'com.android.support:support-v4:23.0.0'
|
2015-02-07 16:51:49 +00:00
|
|
|
compile 'com.google.code.gson:gson:2.3'
|
2015-11-23 10:41:58 +00:00
|
|
|
compile 'com.android.support:appcompat-v7:23.0.0'
|
2014-11-07 20:57:08 +00:00
|
|
|
compile 'com.shamanland:fab:0.0.5'
|
2015-02-09 16:58:11 +00:00
|
|
|
compile 'ch.acra:acra:4.5.0'
|
2015-06-05 16:26:36 +00:00
|
|
|
compile 'com.ToxicBakery.viewpager.transforms:view-pager-transforms:1.2.32@aar'
|
2015-02-12 17:33:25 +00:00
|
|
|
compile 'me.relex:circleindicator:1.1.1@aar'
|
2015-03-11 17:37:03 +00:00
|
|
|
compile 'com.viewpagerindicator:library:2.4.1'
|
2015-06-04 16:31:57 +00:00
|
|
|
compile 'com.nhaarman.listviewanimations:lib-core:3.1.0@aar'
|
|
|
|
compile files('libs/nineoldandroids-2.4.0.jar')
|
2015-07-11 09:27:29 +00:00
|
|
|
compile files('libs/YouTubeAndroidPlayerApi.jar')
|
2014-10-16 20:06:56 +00:00
|
|
|
}
|