NewPipe/app/build.gradle

256 lines
8.5 KiB
Groovy
Raw Normal View History

2015-09-04 02:15:03 +02:00
apply plugin: 'com.android.application'
2019-04-28 22:43:50 +02:00
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
2020-03-27 20:45:26 +01:00
apply plugin: 'checkstyle'
2015-09-04 02:15:03 +02:00
android {
2020-05-01 16:06:02 +02:00
compileSdkVersion 29
buildToolsVersion '29.0.3'
2015-09-04 02:15:03 +02:00
defaultConfig {
applicationId "org.schabi.newpipe"
resValue "string", "app_name", "NewPipe"
minSdkVersion 19
2020-05-01 16:06:02 +02:00
targetSdkVersion 29
2020-11-10 10:05:13 +01:00
versionCode 957
versionName "0.20.3"
2020-10-18 10:44:27 +02:00
multiDexEnabled true
2019-10-04 14:59:08 +02:00
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
javaCompileOptions {
annotationProcessorOptions {
arguments = ["room.schemaLocation": "$projectDir/schemas".toString()]
}
}
2015-09-04 02:15:03 +02:00
}
2015-09-04 02:15:03 +02:00
buildTypes {
debug {
debuggable true
2020-02-23 20:56:56 +01:00
// suffix the app id and the app name with git branch name
def workingBranch = getGitWorkingBranch()
def normalizedWorkingBranch = workingBranch.replaceFirst("^[^A-Za-z]+", "").replaceAll("[^0-9A-Za-z]+", "")
if (normalizedWorkingBranch.isEmpty() || workingBranch == "master" || workingBranch == "dev") {
// default values when branch name could not be determined or is master or dev
applicationIdSuffix ".debug"
resValue "string", "app_name", "NewPipe Debug"
} else {
applicationIdSuffix ".debug." + normalizedWorkingBranch
resValue "string", "app_name", "NewPipe " + workingBranch
archivesBaseName = 'NewPipe_' + normalizedWorkingBranch
}
}
// Keep the release build type at the end of the list to override 'archivesBaseName' of
// debug build. This seems to be a Gradle bug, therefore
// TODO: update Gradle version
release {
minifyEnabled true
shrinkResources false // disabled to fix F-Droid's reproducible build
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
archivesBaseName = 'app'
}
2015-09-04 02:15:03 +02:00
}
2015-12-24 14:55:33 +01:00
2015-12-01 21:31:10 +01:00
lintOptions {
checkReleaseBuilds false
// Or, if you prefer, you can continue to check for errors in release builds,
// but continue the build even when errors are found:
abortOnError false
}
2016-02-05 17:09:29 +01:00
compileOptions {
// Flag to enable support for the new language APIs
coreLibraryDesugaringEnabled true
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
encoding 'utf-8'
2016-02-05 17:09:29 +01:00
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_1_8
}
// Required and used only by groupie
androidExtensions {
experimental = true
}
sourceSets {
androidTest.assets.srcDirs += files("$projectDir/schemas".toString())
}
2015-09-04 02:15:03 +02:00
}
ext {
2020-05-01 16:06:02 +02:00
icepickVersion = '3.2.0'
2020-10-25 21:29:07 +01:00
checkstyleVersion = '8.36.2'
2020-05-01 16:06:02 +02:00
stethoVersion = '1.5.1'
2020-10-31 21:55:45 +01:00
leakCanaryVersion = '2.5'
exoPlayerVersion = '2.11.8'
2020-05-01 16:06:02 +02:00
androidxLifecycleVersion = '2.2.0'
2020-10-31 21:55:45 +01:00
androidxRoomVersion = '2.3.0-alpha03'
groupieVersion = '2.8.1'
markwonVersion = '4.6.0'
googleAutoServiceVersion = '1.0-rc7'
}
2018-08-17 17:03:26 +02:00
2020-06-28 14:59:44 +02:00
configurations {
checkstyle
2020-10-31 21:55:45 +01:00
ktlint
2020-06-28 14:59:44 +02:00
}
2020-03-27 20:45:26 +01:00
checkstyle {
configFile rootProject.file('checkstyle.xml')
ignoreFailures false
showViolations true
2020-05-01 16:06:02 +02:00
toolVersion = checkstyleVersion
2020-03-27 20:45:26 +01:00
}
task runCheckstyle(type: Checkstyle) {
source 'src'
include '**/*.java'
exclude '**/gen/**'
exclude '**/R.java'
exclude '**/BuildConfig.java'
exclude 'main/java/us/shandian/giga/**'
2020-06-28 14:59:44 +02:00
classpath = configurations.checkstyle
2020-03-27 20:45:26 +01:00
showViolations true
reports {
xml.enabled true
html.enabled true
}
}
2020-10-31 21:55:45 +01:00
def outputDir = "${project.buildDir}/reports/ktlint/"
def inputFiles = project.fileTree(dir: "src", include: "**/*.kt")
task runKtlint(type: JavaExec) {
inputs.files(inputFiles)
outputs.dir(outputDir)
main = "com.pinterest.ktlint.Main"
classpath = configurations.ktlint
args "src/**/*.kt"
}
task formatKtlint(type: JavaExec) {
inputs.files(inputFiles)
outputs.dir(outputDir)
main = "com.pinterest.ktlint.Main"
classpath = configurations.ktlint
args "-F", "src/**/*.kt"
}
2020-05-01 20:09:52 +02:00
2020-04-20 17:01:36 +02:00
afterEvaluate {
2020-10-31 21:55:45 +01:00
preDebugBuild.dependsOn runCheckstyle, runKtlint
2020-04-20 17:01:36 +02:00
}
2020-03-27 20:45:26 +01:00
2015-09-04 02:15:03 +02:00
dependencies {
2020-10-31 21:55:45 +01:00
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.1'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
2019-04-28 22:43:50 +02:00
2020-05-01 16:06:02 +02:00
implementation "frankiesardo:icepick:${icepickVersion}"
kapt "frankiesardo:icepick-processor:${icepickVersion}"
2020-06-28 14:59:44 +02:00
checkstyle "com.puppycrawl.tools:checkstyle:${checkstyleVersion}"
2020-10-31 21:55:45 +01:00
ktlint "com.pinterest:ktlint:0.39.0"
2020-03-27 20:45:26 +01:00
2020-05-01 16:06:02 +02:00
debugImplementation "com.facebook.stetho:stetho:${stethoVersion}"
debugImplementation "com.facebook.stetho:stetho-okhttp3:${stethoVersion}"
2020-05-01 16:06:02 +02:00
debugImplementation "com.squareup.leakcanary:leakcanary-android:${leakCanaryVersion}"
2020-05-01 17:16:40 +02:00
implementation "com.squareup.leakcanary:leakcanary-object-watcher-android:${leakCanaryVersion}"
2020-10-31 21:55:45 +01:00
implementation "com.squareup.leakcanary:plumber-android:${leakCanaryVersion}"
2020-10-18 10:44:27 +02:00
implementation "androidx.multidex:multidex:2.0.1"
2017-04-26 21:32:20 +02:00
2020-10-15 14:38:59 +02:00
testImplementation 'junit:junit:4.13.1'
2020-10-31 21:55:45 +01:00
testImplementation 'org.mockito:mockito-core:3.5.13'
2020-10-31 21:55:45 +01:00
androidTestImplementation "androidx.test.ext:junit:1.1.2"
2020-05-01 16:06:02 +02:00
androidTestImplementation "androidx.room:room-testing:${androidxRoomVersion}"
2020-10-31 21:55:45 +01:00
androidTestImplementation "androidx.test.espresso:espresso-core:3.3.0", {
2020-05-01 16:06:02 +02:00
exclude module: 'support-annotations'
}
// NewPipe dependencies
// You can use a local version by uncommenting a few lines in settings.gradle
2020-11-10 10:05:13 +01:00
implementation 'com.github.TeamNewPipe:NewPipeExtractor:6701b0fe718f6bdc385221341fa473e8aaab560e'
2020-05-01 16:06:02 +02:00
implementation "com.github.TeamNewPipe:nanojson:1d9e1aea9049fc9f85e68b43ba39fe7be1c1f751"
2020-05-03 11:54:37 +02:00
implementation "org.jsoup:jsoup:1.13.1"
2017-04-26 21:32:20 +02:00
2020-10-31 21:55:45 +01:00
//noinspection GradleDependency --> do not update okhttp to keep supporting Android 4.4 users
implementation "com.squareup.okhttp3:okhttp:3.12.12"
2018-03-30 03:24:30 +02:00
2020-05-01 16:06:02 +02:00
implementation "com.google.android.exoplayer:exoplayer:${exoPlayerVersion}"
implementation "com.google.android.exoplayer:extension-mediasession:${exoPlayerVersion}"
2020-10-31 21:55:45 +01:00
implementation "com.google.android.material:material:1.2.1"
compileOnly "com.google.auto.service:auto-service-annotations:${googleAutoServiceVersion}"
kapt "com.google.auto.service:auto-service:${googleAutoServiceVersion}"
2020-10-31 21:55:45 +01:00
implementation "androidx.appcompat:appcompat:1.2.0"
2020-05-01 16:06:02 +02:00
implementation "androidx.preference:preference:1.1.1"
implementation "androidx.recyclerview:recyclerview:1.1.0"
implementation "androidx.cardview:cardview:1.0.0"
2020-10-31 21:55:45 +01:00
implementation "androidx.constraintlayout:constraintlayout:2.0.4"
implementation 'androidx.core:core-ktx:1.3.2'
implementation 'androidx.documentfile:documentfile:1.0.1'
implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.0.0'
2020-05-01 16:06:02 +02:00
implementation "androidx.lifecycle:lifecycle-livedata:${androidxLifecycleVersion}"
implementation "androidx.lifecycle:lifecycle-viewmodel:${androidxLifecycleVersion}"
2020-05-01 16:06:02 +02:00
implementation "androidx.room:room-runtime:${androidxRoomVersion}"
2020-10-31 21:55:45 +01:00
implementation "androidx.room:room-rxjava3:${androidxRoomVersion}"
2020-05-01 16:06:02 +02:00
kapt "androidx.room:room-compiler:${androidxRoomVersion}"
2018-02-20 16:24:43 +01:00
2020-11-17 19:25:49 +01:00
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
2020-05-01 16:06:02 +02:00
implementation "com.xwray:groupie:${groupieVersion}"
implementation "com.xwray:groupie-kotlin-android-extensions:${groupieVersion}"
2020-05-01 16:06:02 +02:00
implementation "de.hdodenhof:circleimageview:3.1.0"
implementation "com.nostra13.universalimageloader:universal-image-loader:1.9.5"
implementation "io.noties.markwon:core:${markwonVersion}"
implementation "io.noties.markwon:linkify:${markwonVersion}"
2020-05-01 16:06:02 +02:00
implementation "com.nononsenseapps:filepicker:4.2.1"
2020-10-31 21:55:45 +01:00
implementation "ch.acra:acra-core:5.7.0"
2020-05-01 16:06:02 +02:00
2020-10-31 21:55:45 +01:00
implementation "io.reactivex.rxjava3:rxjava:3.0.7"
implementation "io.reactivex.rxjava3:rxandroid:3.0.0"
implementation "com.jakewharton.rxbinding4:rxbinding:4.0.0"
2020-05-01 16:06:02 +02:00
2020-10-03 18:58:42 +02:00
implementation "org.ocpsoft.prettytime:prettytime:4.0.6.Final"
2015-09-04 02:15:03 +02:00
}
static String getGitWorkingBranch() {
try {
def gitProcess = "git rev-parse --abbrev-ref HEAD".execute()
gitProcess.waitFor()
if (gitProcess.exitValue() == 0) {
return gitProcess.text.trim()
} else {
// not a git repository
return ""
}
} catch (IOException ignored) {
// git was not found
return ""
}
2020-03-27 20:45:26 +01:00
}