2014-10-16 20:06:56 +00:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2017-05-29 11:11:49 +00:00
|
|
|
compileSdkVersion 25
|
2017-05-29 16:11:38 +00:00
|
|
|
buildToolsVersion "25.0.3"
|
2014-10-16 20:06:56 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "org.fox.ttrss"
|
2017-06-01 09:19:13 +00:00
|
|
|
buildConfigField "long", "TIMESTAMP", System.currentTimeMillis() + "L"
|
2015-11-28 13:30:12 +00:00
|
|
|
minSdkVersion 16
|
2017-05-30 21:27:12 +00:00
|
|
|
targetSdkVersion 23 // we're not targeting SDK 25 because of this: https://issuetracker.google.com/issues/37103380#makechanges
|
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')
|
2017-06-04 07:34:51 +00:00
|
|
|
compile 'com.squareup.okhttp3:okhttp:3.8.0'
|
|
|
|
compile('com.github.bumptech.glide:okhttp3-integration:1.5.0') {
|
|
|
|
exclude group: 'glide-parent'
|
|
|
|
}
|
2017-05-31 16:07:31 +00:00
|
|
|
compile 'org.jsoup:jsoup:1.10.2'
|
2017-05-31 20:44:52 +00:00
|
|
|
compile 'com.bogdwellers:pinchtozoom:0.1'
|
2017-05-31 18:20:23 +00:00
|
|
|
compile 'com.github.bumptech.glide:glide:3.8.0'
|
|
|
|
compile 'jp.wasabeef:glide-transformations:2.0.2'
|
2017-06-01 14:03:11 +00:00
|
|
|
compile 'com.android.support:recyclerview-v7:25.3.1'
|
2017-05-29 11:11:49 +00:00
|
|
|
compile 'com.android.support:cardview-v7:25.3.1'
|
|
|
|
compile 'com.android.support:support-v4:25.3.1'
|
|
|
|
compile 'com.android.support:appcompat-v7:25.3.1'
|
|
|
|
compile 'com.android.support:customtabs:25.3.1'
|
2017-06-01 16:29:04 +00:00
|
|
|
compile 'com.android.support:design:25.3.1'
|
2017-05-29 11:11:49 +00:00
|
|
|
compile 'com.google.code.gson:gson:2.7'
|
2017-05-31 16:07:31 +00:00
|
|
|
compile 'com.shamanland:fab:0.0.8'
|
2017-05-29 16:19:45 +00:00
|
|
|
compile 'ch.acra:acra:4.9.1'
|
2015-06-05 16:26:36 +00:00
|
|
|
compile 'com.ToxicBakery.viewpager.transforms:view-pager-transforms:1.2.32@aar'
|
2017-05-31 16:07:31 +00:00
|
|
|
compile 'me.relex:circleindicator:1.2.2@aar'
|
2015-03-11 17:37:03 +00:00
|
|
|
compile 'com.viewpagerindicator:library:2.4.1'
|
2017-05-31 16:07:31 +00:00
|
|
|
compile 'com.nineoldandroids:library:2.4.0'
|
2017-06-01 08:47:36 +00:00
|
|
|
compile 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1'
|
2015-07-11 09:27:29 +00:00
|
|
|
compile files('libs/YouTubeAndroidPlayerApi.jar')
|
2014-10-16 20:06:56 +00:00
|
|
|
}
|