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

291 lines
13 KiB
Groovy
Raw Normal View History

2014-07-03 07:48:39 +02:00
apply plugin: 'com.android.application'
2016-06-29 15:47:52 +02:00
apply plugin: 'kotlin-android'
2017-01-09 06:16:23 +01:00
apply plugin: 'kotlin-kapt'
2016-06-29 15:47:52 +02:00
apply plugin: 'kotlin-android-extensions'
2019-10-24 11:19:37 +02:00
apply plugin: 'imgenie'
2014-07-03 07:48:39 +02:00
2016-01-07 05:17:03 +01:00
buildscript {
2019-10-25 10:50:10 +02:00
ext {
enableGoogleVariant = project.file('google-services.json').exists()
}
2016-01-07 05:17:03 +01:00
repositories {
2019-10-24 11:19:37 +02:00
maven { url 'https://jitpack.io' }
2016-06-29 15:47:52 +02:00
jcenter()
2020-02-24 06:09:03 +01:00
if (enableGoogleVariant) {
// START Non-FOSS component
google()
// END Non-FOSS component
}
2016-01-07 05:17:03 +01:00
}
dependencies {
2017-06-20 03:42:36 +02:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlinVersion}"
classpath "org.jetbrains.kotlin:kotlin-android-extensions:${kotlinVersion}"
2019-10-24 17:52:11 +02:00
classpath 'com.github.mariotaku:imgenie-plugin:0.2.5'
2017-06-20 03:42:36 +02:00
2019-10-25 10:50:10 +02:00
if (enableGoogleVariant) {
// START Non-FOSS component
classpath "com.google.gms:google-services:${pluginVersions['PlayServices']}"
// END Non-FOSS component
}
2016-01-07 05:17:03 +01:00
}
}
2014-07-03 07:48:39 +02:00
android {
2017-09-05 11:00:01 +02:00
compileSdkVersion globalCompileSdkVersion
buildToolsVersion globalBuildToolsVersion
2014-07-03 07:48:39 +02:00
defaultConfig {
applicationId "org.mariotaku.twidere"
2020-01-26 08:35:15 +01:00
minSdkVersion globalMinSdkVersion
targetSdkVersion globalTargetSdkVersion
versionCode projectVersionCode
versionName projectVersionName
multiDexEnabled true
2015-11-25 01:47:30 +01:00
2017-09-08 17:17:10 +02:00
buildConfigField 'boolean', 'LEAK_CANARY_ENABLED', 'Boolean.parseBoolean("false")'
2016-03-04 04:54:27 +01:00
buildConfigField 'boolean', 'SHOW_CUSTOM_TOKEN_DIALOG', 'Boolean.parseBoolean("false")'
2016-01-01 11:57:18 +01:00
2020-01-26 08:35:15 +01:00
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2014-07-03 07:48:39 +02:00
}
2017-08-27 18:37:40 +02:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2016-03-05 16:16:17 +01:00
aaptOptions {
additionalParameters "--no-version-vectors"
}
2017-08-13 18:29:20 +02:00
flavorDimensions 'channel'
productFlavors {
2019-10-25 10:50:10 +02:00
if (enableGoogleVariant) {
// START Non-FOSS component
google {
dimension 'channel'
}
// END Non-FOSS component
2017-08-13 18:29:20 +02:00
}
fdroid {
dimension 'channel'
}
}
2017-08-27 18:37:40 +02:00
2017-09-15 07:27:09 +02:00
def file = rootProject.file('private/signing.properties')
def hasSigningProps = file.exists()
2017-09-05 11:00:01 +02:00
signingConfigs {
2017-09-15 07:27:09 +02:00
if (hasSigningProps) {
twidere {
Properties signingProp = new Properties()
signingProp.load(file.newInputStream())
storeFile = rootProject.file(signingProp.get('storeFile'))
storePassword = (String) signingProp.get('storePassword')
keyAlias = (String) signingProp.get('keyAlias')
keyPassword = (String) signingProp.get('keyPassword')
}
2017-09-05 11:00:01 +02:00
}
}
buildTypes {
debug {
2017-09-15 07:27:09 +02:00
if (hasSigningProps) {
signingConfig signingConfigs.twidere
}
2017-09-05 11:00:01 +02:00
2017-09-24 16:50:37 +02:00
multiDexEnabled true
2017-02-15 18:03:48 +01:00
minifyEnabled false
shrinkResources false
2015-12-29 13:25:16 +01:00
resValue("bool", "debug", "true")
}
2015-03-29 09:36:51 +02:00
release {
2017-09-15 07:27:09 +02:00
if (hasSigningProps) {
signingConfig signingConfigs.twidere
}
2017-09-05 11:00:01 +02:00
2017-09-24 16:50:37 +02:00
multiDexEnabled true
2015-11-22 15:55:29 +01:00
minifyEnabled false
shrinkResources false
2015-11-22 15:55:29 +01:00
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2015-12-29 13:25:16 +01:00
resValue("bool", "debug", "false")
2015-03-29 09:36:51 +02:00
}
}
2017-08-27 18:37:40 +02:00
2016-07-06 15:21:34 +02:00
sourceSets.each {
it.res.srcDirs += project.files("src/${it.name}/res-localized")
it.java.srcDirs += "src/${it.name}/kotlin"
2015-03-29 13:06:55 +02:00
}
testOptions {
unitTests.returnDefaultValues = true
}
2016-04-04 11:22:36 +02:00
2017-09-05 11:00:01 +02:00
lintOptions {
2019-06-26 08:56:22 +02:00
checkReleaseBuilds false
2017-09-05 11:00:01 +02:00
abortOnError false
lintConfig rootProject.file('lint.xml')
}
packagingOptions {
2017-09-20 14:39:11 +02:00
exclude 'META-INF/LICENSE'
exclude 'META-INF/NOTICE'
2017-09-05 11:00:01 +02:00
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/README'
exclude 'META-INF/INDEX.LIST'
2017-09-20 14:39:11 +02:00
exclude 'META-INF/maven/**'
exclude 'META-INF/*.kotlin_module'
2017-09-22 09:00:12 +02:00
exclude 'kotlin/**.kotlin_builtins'
2017-09-20 14:39:11 +02:00
exclude 'org/osmdroid/**.png'
2017-09-22 09:00:12 +02:00
exclude 'javax/annotation/**.java'
2017-09-20 14:39:11 +02:00
exclude 'generated-sources/**'
2017-09-22 09:00:12 +02:00
exclude 'jsr305_annotations/**'
2017-09-25 15:05:58 +02:00
exclude 'error_prone/**'
exclude 'third_party/java_src/**'
exclude 'sdk-version.txt'
2017-09-20 14:39:11 +02:00
exclude 'build-data.properties'
2017-09-05 11:00:01 +02:00
}
2014-07-03 07:48:39 +02:00
}
repositories {
2016-06-29 15:47:52 +02:00
mavenLocal()
maven { url 'https://s3.amazonaws.com/repo.commonsware.com' }
2015-12-20 12:54:05 +01:00
flatDir { dirs "$projectDir/lib" }
}
2014-07-03 07:48:39 +02:00
dependencies {
// wearApp project(':twidere.wear')
2017-03-04 06:02:41 +01:00
kapt "com.bluelinelabs:logansquare-compiler:${libVersions['LoganSquare']}"
2017-04-06 05:55:04 +02:00
kapt "com.hannesdorfmann.parcelableplease:processor:${libVersions['ParcelablePlease']}"
kapt "com.google.dagger:dagger-compiler:${libVersions['Dagger']}"
2017-03-05 10:04:26 +01:00
kapt "com.github.mariotaku.ObjectCursor:processor:${libVersions['ObjectCursor']}"
2016-02-13 08:26:23 +01:00
2017-08-13 18:29:20 +02:00
implementation project(':twidere.component.common')
implementation project(':twidere.component.nyan')
2019-10-25 10:50:10 +02:00
if (enableGoogleVariant) {
// START Non-FOSS component
googleImplementation "com.google.android.gms:play-services-maps:${libVersions['PlayServices']}"
googleImplementation "com.google.android.gms:play-services-auth:${libVersions['PlayServices']}"
googleImplementation "com.google.android.gms:play-services-ads:${libVersions['PlayServices']}"
googleImplementation "com.google.maps.android:android-maps-utils:${libVersions['MapsUtils']}"
googleImplementation "com.anjlab.android.iab.v3:library:${libVersions['IABv3']}"
googleImplementation "com.dropbox.core:dropbox-core-sdk:${libVersions['DropboxCoreSdk']}"
googleImplementation("com.google.apis:google-api-services-drive:${libVersions['GoogleDriveApi']}") {
exclude group: 'org.apache.httpcomponents'
}
2020-02-24 06:09:03 +01:00
implementation("com.google.guava:guava:28.2-android")
2019-10-25 10:50:10 +02:00
// END Non-FOSS component
2017-01-21 17:33:20 +01:00
}
2017-08-13 18:29:20 +02:00
fdroidImplementation "org.osmdroid:osmdroid-android:${libVersions['OSMDroid']}"
fdroidImplementation "ch.acra:acra:${libVersions['ACRA']}"
2017-08-13 18:29:20 +02:00
debugImplementation "com.facebook.stetho:stetho:${libVersions['Stetho']}"
debugImplementation "com.facebook.stetho:stetho-okhttp3:${libVersions['Stetho']}"
2017-09-24 16:50:37 +02:00
debugImplementation "com.github.mariotaku:StethoBeanShellREPL:${libVersions['StethoBeanShellREPL']}"
2017-08-13 18:29:20 +02:00
debugImplementation "com.squareup.leakcanary:leakcanary-android:${libVersions['LeakCanary']}"
debugImplementation('com.jayway.jsonpath:json-path:2.2.0') {
exclude group: 'net.minidev', module: 'json-smart'
}
2017-08-13 18:29:20 +02:00
// Stetho dependency, see https://g.co/androidstudio/app-test-app-conflict
2020-02-06 08:10:47 +01:00
debugImplementation "com.google.code.findbugs:jsr305:3.0.2"
2017-08-13 18:29:20 +02:00
compileOnly 'javax.annotation:jsr250-api:1.0'
testImplementation 'junit:junit:4.12'
2020-01-26 08:35:15 +01:00
androidTestImplementation 'androidx.annotation:annotation:1.1.0'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test:rules:1.2.0'
2017-08-13 18:29:20 +02:00
// https://g.co/androidstudio/app-test-app-conflict
2020-01-26 08:35:15 +01:00
androidTestImplementation "com.google.code.findbugs:jsr305:3.0.2"
implementation 'androidx.multidex:multidex:2.0.1'
implementation 'androidx.annotation:annotation:1.1.0'
2020-02-06 08:10:47 +01:00
implementation 'androidx.core:core:1.2.0'
2020-01-26 08:35:15 +01:00
implementation 'androidx.legacy:legacy-support-core-utils:1.0.0'
implementation 'androidx.legacy:legacy-support-core-ui:1.0.0'
implementation 'androidx.legacy:legacy-support-v13:1.0.0'
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'androidx.recyclerview:recyclerview:1.1.0'
implementation 'androidx.palette:palette:1.0.0'
implementation 'androidx.legacy:legacy-preference-v14:1.0.0'
implementation 'androidx.browser:browser:1.2.0'
implementation "androidx.drawerlayout:drawerlayout:1.1.0-alpha01"
2020-02-06 08:10:47 +01:00
implementation 'com.google.android.material:material:1.1.0'
2020-01-26 08:35:15 +01:00
implementation 'androidx.exifinterface:exifinterface:1.1.0'
2017-08-13 18:29:20 +02:00
implementation "com.twitter:twitter-text:${libVersions['TwitterText']}"
implementation 'com.davemorrissey.labs:subsampling-scale-image-view:3.6.0'
implementation 'com.squareup:otto:1.3.8'
implementation 'dnsjava:dnsjava:2.1.8'
implementation 'com.commonsware.cwac:layouts:0.4.3'
implementation 'com.rengwuxian.materialedittext:library:2.1.4'
implementation 'com.pnikosis:materialish-progress:1.7'
implementation 'com.github.mariotaku:MessageBubbleView:1.6'
implementation 'com.github.mariotaku:DragSortListView:0.6.1'
implementation 'com.github.uucky:ColorPicker-Android:0.9.7@aar'
implementation "pl.droidsonroids.gif:android-gif-drawable:${libVersions['AndroidGIFDrawable']}"
implementation 'com.sprylab.android.texturevideoview:texturevideoview:1.2.1'
implementation 'com.squareup:pollexor:2.0.4'
implementation "org.apache.james:apache-mime4j-core:${libVersions['Mime4J']}"
implementation "org.apache.james:apache-mime4j-storage:${libVersions['Mime4J']}"
implementation "com.bluelinelabs:logansquare:${libVersions['LoganSquare']}"
2019-10-25 10:50:10 +02:00
implementation "com.fasterxml.jackson.core:jackson-core:2.7.4"
2017-08-13 18:29:20 +02:00
implementation "com.hannesdorfmann.parcelableplease:annotation:${libVersions['ParcelablePlease']}"
implementation "com.github.mariotaku:PickNCrop:${libVersions['PickNCrop']}"
implementation "com.github.mariotaku.RestFu:library:${libVersions['RestFu']}"
implementation "com.github.mariotaku.RestFu:oauth:${libVersions['RestFu']}"
implementation "com.github.mariotaku.RestFu:oauth2:${libVersions['RestFu']}"
2017-08-13 18:29:20 +02:00
implementation "com.github.mariotaku.RestFu:okhttp3:${libVersions['RestFu']}"
implementation "com.github.mariotaku.RestFu:logansquare:${libVersions['RestFu']}"
implementation "com.squareup.okhttp3:okhttp:${libVersions['OkHttp']}"
2020-02-06 08:58:34 +01:00
implementation("com.squareup.okio:okio:2.4.3")
2017-08-13 18:29:20 +02:00
implementation 'com.lnikkila:extendedtouchview:0.1.1'
implementation "com.google.dagger:dagger:${libVersions['Dagger']}"
2017-08-13 18:29:20 +02:00
implementation 'org.attoparser:attoparser:2.0.4.RELEASE'
implementation 'com.getkeepsafe.taptargetview:taptargetview:1.9.1'
implementation 'net.ypresto.androidtranscoder:android-transcoder:0.2.0'
implementation "com.google.android.exoplayer:exoplayer:${libVersions['Exoplayer']}"
implementation "com.google.android.exoplayer:extension-okhttp:${libVersions['Exoplayer']}"
implementation "com.github.bumptech.glide:glide:${libVersions['Glide']}"
2020-04-13 11:33:36 +02:00
kapt "com.github.bumptech.glide:compiler:${libVersions['Glide']}"
2017-08-13 18:29:20 +02:00
implementation "com.github.bumptech.glide:okhttp3-integration:${libVersions['GlideOkHttp3']}@aar"
implementation "jp.wasabeef:glide-transformations:${libVersions['GlideTransformations']}"
implementation "com.theartofdev.edmodo:android-image-cropper:${libVersions['AndroidImageCropper']}"
implementation "com.github.mariotaku.MediaViewerLibrary:base:${libVersions['MediaViewerLibrary']}"
implementation "com.github.mariotaku.MediaViewerLibrary:subsample-image-view:${libVersions['MediaViewerLibrary']}"
implementation "com.github.mariotaku:SQLiteQB:${libVersions['SQLiteQB']}"
implementation "com.github.mariotaku.ObjectCursor:core:${libVersions['ObjectCursor']}"
implementation "com.github.mariotaku.ExportablePreferences:core:${libVersions['ExportablePreferences']}"
implementation "com.github.mariotaku:AbstractTask:${libVersions['AbstractTask']}"
implementation "com.github.mariotaku.CommonsLibrary:parcel:${libVersions['MariotakuCommons']}"
implementation "com.github.mariotaku.CommonsLibrary:io:${libVersions['MariotakuCommons']}"
implementation "com.github.mariotaku.CommonsLibrary:text:${libVersions['MariotakuCommons']}"
implementation "com.github.mariotaku.CommonsLibrary:text-kotlin:${libVersions['MariotakuCommons']}"
2017-09-25 08:04:37 +02:00
implementation("com.github.mariotaku.CommonsLibrary:emojione-android:${libVersions['MariotakuCommons']}") {
exclude group: 'org.apache.commons', module: 'commons-text'
}
implementation "com.github.mariotaku.CommonsLibrary:objectcursor:${libVersions['MariotakuCommons']}"
implementation "com.github.mariotaku.CommonsLibrary:logansquare:${libVersions['MariotakuCommons']}"
2017-08-13 18:29:20 +02:00
implementation "com.github.mariotaku:KPreferences:${libVersions['KPreferences']}"
2020-02-25 13:22:06 +01:00
implementation "com.github.Tlaster:Chameleon:${libVersions['Chameleon']}"
2017-08-13 18:29:20 +02:00
implementation "com.github.mariotaku.UniqR:android:${libVersions['UniqR']}"
implementation "org.jetbrains.kotlin:kotlin-stdlib:${libVersions['Kotlin']}"
implementation "nl.komponents.kovenant:kovenant:${libVersions['Kovenant']}"
implementation "nl.komponents.kovenant:kovenant-android:${libVersions['Kovenant']}"
implementation "nl.komponents.kovenant:kovenant-functional:${libVersions['Kovenant']}"
implementation "nl.komponents.kovenant:kovenant-combine:${libVersions['Kovenant']}"
2015-05-04 17:53:52 +02:00
}
2019-10-25 10:50:10 +02:00
if (enableGoogleVariant) {
2017-09-23 16:12:12 +02:00
// START Non-FOSS component
2019-10-25 10:50:10 +02:00
apply plugin: 'com.google.gms.google-services'
// END Non-FOSS component
}