NewPipe/app/build.gradle

224 lines
7.4 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 {
compileSdkVersion 28
buildToolsVersion '28.0.3'
2015-09-04 02:15:03 +02:00
defaultConfig {
applicationId "org.schabi.newpipe"
resValue "string", "app_name", "NewPipe"
minSdkVersion 19
targetSdkVersion 28
2020-04-24 18:32:56 +02:00
versionCode 930
versionName "0.19.3"
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 {
multiDexEnabled true
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.replaceAll("[^A-Za-z]+", "").toLowerCase()
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 true
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 {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
encoding 'utf-8'
2016-02-05 17:09:29 +01:00
}
// 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 {
androidxLibVersion = '1.1.0'
2020-05-01 11:58:24 +02:00
exoPlayerLibVersion = '2.11.4'
2019-10-04 14:59:08 +02:00
roomDbLibVersion = '2.1.0'
leakCanaryLibVersion = '1.5.4' //1.6.1
okHttpLibVersion = '3.12.6'
icepickLibVersion = '3.2.0'
stethoLibVersion = '1.5.0'
markwonVersion = '4.2.1'
2020-03-27 20:45:26 +01:00
checkstyleVersion = '8.31'
}
2018-08-17 17:03:26 +02:00
2020-03-27 20:45:26 +01:00
checkstyle {
configFile rootProject.file('checkstyle.xml')
ignoreFailures false
showViolations true
toolVersion = "${checkstyleVersion}"
}
task runCheckstyle(type: Checkstyle) {
source 'src'
include '**/*.java'
exclude '**/gen/**'
exclude '**/R.java'
exclude '**/BuildConfig.java'
exclude 'main/java/us/shandian/giga/**'
// empty classpath
classpath = files()
showViolations true
reports {
xml.enabled true
html.enabled true
}
}
2020-05-01 20:09:52 +02:00
configurations {
ktlint
}
task runKtlint(type: JavaExec) {
main = "com.pinterest.ktlint.Main"
classpath = configurations.ktlint
args "src/**/*.kt"
}
task formatKtlint(type: JavaExec) {
main = "com.pinterest.ktlint.Main"
classpath = configurations.ktlint
args "-F", "src/**/*.kt"
}
2020-04-20 17:01:36 +02:00
afterEvaluate {
2020-05-01 20:09:52 +02: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 {
2019-04-28 22:43:50 +02:00
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
2020-04-20 17:01:36 +02:00
debugImplementation "com.puppycrawl.tools:checkstyle:${checkstyleVersion}"
2020-05-01 20:09:52 +02:00
ktlint "com.pinterest:ktlint:0.35.0"
2020-03-27 20:45:26 +01:00
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation "android.arch.persistence.room:testing:1.1.1"
2019-10-04 14:59:08 +02:00
androidTestImplementation('androidx.test.espresso:espresso-core:3.1.0', {
exclude module: 'support-annotations'
})
2020-05-08 18:03:19 +02:00
implementation 'com.github.TeamNewPipe:NewPipeExtractor:f3913e241e379adf0091319091e8f895c5fcfd07'
2017-11-10 10:33:59 +01:00
testImplementation 'junit:junit:4.12'
testImplementation 'org.mockito:mockito-core:2.23.0'
implementation "androidx.appcompat:appcompat:${androidxLibVersion}"
2019-10-04 14:59:08 +02:00
implementation "com.google.android.material:material:${androidxLibVersion}"
implementation "androidx.recyclerview:recyclerview:${androidxLibVersion}"
implementation "androidx.preference:preference:${androidxLibVersion}"
implementation "androidx.cardview:cardview:1.0.0"
implementation "androidx.constraintlayout:constraintlayout:1.1.3"
2017-04-26 21:32:20 +02:00
2019-10-10 15:28:57 +02:00
implementation 'com.xwray:groupie:2.7.0'
implementation 'com.xwray:groupie-kotlin-android-extensions:2.7.0'
implementation 'androidx.lifecycle:lifecycle-livedata:2.0.0'
implementation 'androidx.lifecycle:lifecycle-viewmodel:2.0.0'
implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0'
// Originally in NewPipeExtractor
2020-04-25 08:52:25 +02:00
implementation 'com.github.TeamNewPipe:nanojson:1d9e1aea9049fc9f85e68b43ba39fe7be1c1f751'
implementation 'org.jsoup:jsoup:1.9.2'
2017-04-26 21:32:20 +02:00
implementation 'ch.acra:acra:4.9.2' //4.11
2017-04-26 21:32:20 +02:00
2017-11-10 10:33:59 +01:00
implementation 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
implementation 'de.hdodenhof:circleimageview:2.2.0'
implementation 'com.nononsenseapps:filepicker:4.2.1'
2018-03-30 03:24:30 +02:00
implementation "com.google.android.exoplayer:exoplayer:${exoPlayerLibVersion}"
implementation "com.google.android.exoplayer:extension-mediasession:${exoPlayerLibVersion}"
debugImplementation "com.facebook.stetho:stetho:${stethoLibVersion}"
debugImplementation "com.facebook.stetho:stetho-urlconnection:${stethoLibVersion}"
2019-10-04 14:59:08 +02:00
debugImplementation 'androidx.multidex:multidex:2.0.1'
implementation 'io.reactivex.rxjava2:rxjava:2.2.2'
implementation 'io.reactivex.rxjava2:rxandroid:2.1.0'
implementation 'com.jakewharton.rxbinding2:rxbinding:2.1.1'
implementation 'org.ocpsoft.prettytime:prettytime:4.0.3.Final'
2019-10-04 14:59:08 +02:00
implementation "androidx.room:room-runtime:${roomDbLibVersion}"
implementation "androidx.room:room-rxjava2:${roomDbLibVersion}"
2019-04-28 22:43:50 +02:00
kapt "androidx.room:room-compiler:${roomDbLibVersion}"
implementation "frankiesardo:icepick:${icepickLibVersion}"
2019-04-28 22:43:50 +02:00
kapt "frankiesardo:icepick-processor:${icepickLibVersion}"
2018-02-20 16:24:43 +01:00
debugImplementation "com.squareup.leakcanary:leakcanary-android:${leakCanaryLibVersion}"
releaseImplementation "com.squareup.leakcanary:leakcanary-android-no-op:${leakCanaryLibVersion}"
implementation "com.squareup.okhttp3:okhttp:${okHttpLibVersion}"
debugImplementation "com.facebook.stetho:stetho-okhttp3:${stethoLibVersion}"
implementation "io.noties.markwon:core:${markwonVersion}"
implementation "io.noties.markwon:linkify:${markwonVersion}"
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
}