tt-rss-android/org.fox.ttrss/build.gradle

47 lines
1.5 KiB
Groovy
Raw Normal View History

2014-10-16 20:06:56 +00:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion '25.0.0'
2014-10-16 20:06:56 +00:00
defaultConfig {
applicationId "org.fox.ttrss"
2015-11-28 13:30:12 +00:00
minSdkVersion 16
targetSdkVersion 23
2014-10-16 20:06:56 +00:00
}
2014-10-16 20:17:34 +00:00
lintOptions {
abortOnError false
checkReleaseBuilds false
disable 'MissingTranslation'
2014-10-16 20:17:34 +00:00
}
2014-10-16 20:06:56 +00:00
buildTypes {
release {
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')
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')
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'
compile 'com.google.code.gson:gson:2.7'
2014-11-07 20:57:08 +00:00
compile 'com.shamanland:fab:0.0.5'
compile 'ch.acra:acra:4.5.0'
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'
compile 'com.viewpagerindicator:library:2.4.1'
compile 'com.nhaarman.listviewanimations:lib-core:3.1.0@aar'
2017-02-17 15:26:09 +00:00
compile 'com.nhaarman.listviewanimations:lib-manipulation:3.1.0@aar'
compile files('libs/nineoldandroids-2.4.0.jar')
compile files('libs/YouTubeAndroidPlayerApi.jar')
2014-10-16 20:06:56 +00:00
}