Twidere-App-Android-Twitter.../twidere/build.gradle

100 lines
3.6 KiB
Groovy
Raw Normal View History

import java.text.SimpleDateFormat
2014-07-03 07:48:39 +02:00
apply plugin: 'com.android.application'
2015-03-11 15:15:32 +01:00
apply from: rootProject.file('global.gradle')
apply from: rootProject.file('signing.gradle')
2014-07-03 07:48:39 +02:00
android {
defaultConfig {
applicationId "org.mariotaku.twidere"
minSdkVersion 14
2015-03-11 15:15:32 +01:00
targetSdkVersion 22
versionCode 106
versionName "0.3.0"
multiDexEnabled true
2014-07-03 07:48:39 +02:00
}
2014-07-27 14:58:15 +02:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
packagingOptions {
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/license.txt'
exclude 'META-INF/NOTICE'
exclude 'META-INF/NOTICE.txt'
exclude 'META-INF/notice.txt'
exclude 'META-INF/ASL2.0'
}
productFlavors {
google {
}
fdroid {
}
}
buildTypes {
debug {
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm")
versionNameSuffix String.format(" (dev %s)", format.format(new Date()))
}
2015-03-29 09:36:51 +02:00
release {
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd")
versionNameSuffix String.format(" (dev %s)", format.format(new Date()))
}
}
2015-03-29 13:06:55 +02:00
sourceSets {
main {
res.srcDirs = [project.file("src/$name/res"), project.file("src/$name/res-localized")]
}
}
2014-07-03 07:48:39 +02:00
}
repositories {
jcenter()
mavenCentral()
maven { url 'https://repo.commonsware.com.s3.amazonaws.com' }
maven { url 'https://github.com/suckgamony/RapidDecoder/raw/master/repository' }
2015-03-19 09:34:30 +01:00
maven { url "https://jitpack.io" }
}
configurations.all {
exclude group: 'org.yaml', module: 'snakeyaml'
}
2014-07-03 07:48:39 +02:00
dependencies {
// wearApp project(':twidere.wear')
compile 'com.android.support:multidex:1.0.1'
2015-03-12 17:56:32 +01:00
compile 'com.android.support:support-v13:22.0.0'
compile 'com.android.support:appcompat-v7:22.0.0'
compile 'com.android.support:cardview-v7:22.0.0'
compile 'com.android.support:recyclerview-v7:22.0.0'
compile 'com.sothree.slidinguppanel:library:3.0.0'
compile 'com.twitter:twitter-text:1.11.1'
compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.3'
2015-02-03 06:22:02 +01:00
compile 'com.squareup:otto:1.3.6'
compile 'dnsjava:dnsjava:2.1.7'
compile 'com.commonsware.cwac:merge:1.1.1'
compile 'com.davemorrissey.labs:subsampling-scale-image-view:3.1.3'
2015-03-30 18:32:50 +02:00
compile 'com.rengwuxian.materialedittext:library:2.0.3'
compile 'com.pnikosis:materialish-progress:1.5'
compile 'com.squareup.okhttp:okhttp:2.3.0'
// Disabled temporarilly due to attribute clash with subsampling-scale-image-view
2015-04-08 11:47:34 +02:00
// compile 'pl.droidsonroids.gif:android-gif-drawable:1.1.3'
compile 'com.github.mariotaku:MessageBubbleView:1.0'
compile 'com.github.mariotaku:DragSortListView:0.6.1'
compile 'com.github.mariotaku:SlidingMenu:1.3'
compile 'com.github.uucky:ColorPicker-Android:0.9.1'
2015-04-07 06:19:40 +02:00
compile 'com.sprylab.android.texturevideoview:texturevideoview:1.0.0'
compile 'com.squareup:pollexor:2.0.2'
2015-03-20 14:57:07 +01:00
googleCompile 'com.google.android.gms:play-services-maps:7.0.0'
2015-01-14 09:47:51 +01:00
googleCompile 'com.google.maps.android:android-maps-utils:0.3.4'
fdroidCompile 'org.osmdroid:osmdroid-android:4.3'
2015-03-30 18:32:50 +02:00
fdroidCompile 'org.slf4j:slf4j-simple:1.7.12'
debugCompile 'im.dino:dbinspector:3.1.0@aar'
compile project(':twidere.component.common')
compile project(':twidere.component.nyan')
2015-01-01 11:38:34 +01:00
compile fileTree(dir: 'libs/main', include: ['*.jar'])
// googleCompile fileTree(dir: 'libs/google', include: ['*.jar'])
}