2015-09-04 00:15:03 +00:00
|
|
|
apply plugin: 'com.android.application'
|
2019-04-28 20:43:50 +00:00
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
|
apply plugin: 'kotlin-kapt'
|
2020-03-27 19:45:26 +00:00
|
|
|
apply plugin: 'checkstyle'
|
2015-09-04 00:15:03 +00:00
|
|
|
|
|
|
|
android {
|
2018-10-09 16:22:30 +00:00
|
|
|
compileSdkVersion 28
|
|
|
|
buildToolsVersion '28.0.3'
|
2015-09-04 00:15:03 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "org.schabi.newpipe"
|
2020-02-23 08:46:42 +00:00
|
|
|
resValue "string", "app_name", "NewPipe"
|
2018-11-13 16:27:47 +00:00
|
|
|
minSdkVersion 19
|
2018-10-09 16:22:30 +00:00
|
|
|
targetSdkVersion 28
|
2020-04-24 16:32:56 +00:00
|
|
|
versionCode 930
|
|
|
|
versionName "0.19.3"
|
2017-06-28 05:27:32 +00:00
|
|
|
|
2019-10-04 12:59:08 +00:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
2017-08-12 04:50:25 +00:00
|
|
|
vectorDrawables.useSupportLibrary = true
|
2019-04-28 20:43:52 +00:00
|
|
|
|
|
|
|
javaCompileOptions {
|
|
|
|
annotationProcessorOptions {
|
|
|
|
arguments = ["room.schemaLocation": "$projectDir/schemas".toString()]
|
|
|
|
}
|
|
|
|
}
|
2015-09-04 00:15:03 +00:00
|
|
|
}
|
2018-08-11 13:43:52 +00:00
|
|
|
|
2015-09-04 00:15:03 +00:00
|
|
|
buildTypes {
|
2017-08-07 13:02:30 +00:00
|
|
|
debug {
|
|
|
|
multiDexEnabled true
|
|
|
|
debuggable true
|
2020-02-23 08:46:42 +00:00
|
|
|
|
2020-02-23 19:56:56 +00:00
|
|
|
// suffix the app id and the app name with git branch name
|
2020-03-02 19:50:35 +00:00
|
|
|
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
|
2020-02-23 08:46:42 +00:00
|
|
|
applicationIdSuffix ".debug"
|
|
|
|
resValue "string", "app_name", "NewPipe Debug"
|
|
|
|
} else {
|
2020-03-02 19:50:35 +00:00
|
|
|
applicationIdSuffix ".debug." + normalizedWorkingBranch
|
2020-02-23 08:46:42 +00:00
|
|
|
resValue "string", "app_name", "NewPipe " + workingBranch
|
2020-03-25 21:47:29 +00:00
|
|
|
archivesBaseName = 'NewPipe_' + normalizedWorkingBranch
|
2020-02-23 08:46:42 +00:00
|
|
|
}
|
2017-08-07 13:02:30 +00:00
|
|
|
}
|
2020-04-11 20:17:39 +00:00
|
|
|
|
|
|
|
// 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 00:15:03 +00:00
|
|
|
}
|
2015-12-24 13:55:33 +00:00
|
|
|
|
2015-12-01 20:31:10 +00: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
|
|
|
|
}
|
2018-08-11 13:43:52 +00:00
|
|
|
|
2016-02-05 16:09:29 +00:00
|
|
|
compileOptions {
|
2018-01-04 06:53:31 +00:00
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
2020-04-13 20:40:44 +00:00
|
|
|
encoding 'utf-8'
|
2016-02-05 16:09:29 +00:00
|
|
|
}
|
2019-04-28 20:43:54 +00:00
|
|
|
|
|
|
|
// Required and used only by groupie
|
|
|
|
androidExtensions {
|
|
|
|
experimental = true
|
|
|
|
}
|
2020-03-07 17:46:32 +00:00
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
androidTest.assets.srcDirs += files("$projectDir/schemas".toString())
|
|
|
|
}
|
2015-09-04 00:15:03 +00:00
|
|
|
}
|
|
|
|
|
2017-12-07 00:19:56 +00:00
|
|
|
ext {
|
2019-10-04 12:59:08 +00:00
|
|
|
androidxLibVersion = '1.0.0'
|
2019-11-19 13:25:40 +00:00
|
|
|
exoPlayerLibVersion = '2.10.8'
|
2019-10-04 12:59:08 +00:00
|
|
|
roomDbLibVersion = '2.1.0'
|
2018-10-09 16:22:30 +00:00
|
|
|
leakCanaryLibVersion = '1.5.4' //1.6.1
|
2019-10-19 03:58:48 +00:00
|
|
|
okHttpLibVersion = '3.12.6'
|
2018-03-21 07:11:54 +00:00
|
|
|
icepickLibVersion = '3.2.0'
|
|
|
|
stethoLibVersion = '1.5.0'
|
2020-02-08 08:56:37 +00:00
|
|
|
markwonVersion = '4.2.1'
|
2020-03-27 19:45:26 +00:00
|
|
|
checkstyleVersion = '8.31'
|
2017-12-07 00:19:56 +00:00
|
|
|
}
|
2018-08-17 15:03:26 +00:00
|
|
|
|
2020-03-27 19:45:26 +00: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 18:09:52 +00:00
|
|
|
runCheckstyle.doLast {
|
|
|
|
reports.all { report ->
|
|
|
|
def outputFile = report.destination
|
|
|
|
if (outputFile.exists() && outputFile.text.contains("severity=\"error\"")) {
|
|
|
|
throw new GradleException("There were checkstyle errors! For more info check $outputFile")
|
2020-03-27 19:45:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-01 18:09:52 +00: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 15:01:36 +00:00
|
|
|
afterEvaluate {
|
2020-05-01 18:09:52 +00:00
|
|
|
preDebugBuild.dependsOn runCheckstyle, runKtlint
|
2020-04-20 15:01:36 +00:00
|
|
|
}
|
2020-03-27 19:45:26 +00:00
|
|
|
|
2015-09-04 00:15:03 +00:00
|
|
|
dependencies {
|
2019-04-28 20:43:50 +00:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
|
|
|
2020-04-20 15:01:36 +00:00
|
|
|
debugImplementation "com.puppycrawl.tools:checkstyle:${checkstyleVersion}"
|
2020-05-01 18:09:52 +00:00
|
|
|
ktlint "com.pinterest:ktlint:0.35.0"
|
2020-03-27 19:45:26 +00:00
|
|
|
|
2020-03-07 17:46:32 +00:00
|
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
|
|
|
|
androidTestImplementation "android.arch.persistence.room:testing:1.1.1"
|
2019-10-04 12:59:08 +00:00
|
|
|
androidTestImplementation('androidx.test.espresso:espresso-core:3.1.0', {
|
2017-06-28 05:27:32 +00:00
|
|
|
exclude module: 'support-annotations'
|
2018-10-09 16:22:30 +00:00
|
|
|
})
|
2017-06-28 05:27:32 +00:00
|
|
|
|
2020-05-08 16:03:19 +00:00
|
|
|
implementation 'com.github.TeamNewPipe:NewPipeExtractor:f3913e241e379adf0091319091e8f895c5fcfd07'
|
2017-11-10 09:33:59 +00:00
|
|
|
testImplementation 'junit:junit:4.12'
|
2018-10-09 16:22:30 +00:00
|
|
|
testImplementation 'org.mockito:mockito-core:2.23.0'
|
2017-03-27 19:34:37 +00:00
|
|
|
|
2019-10-04 12:59:08 +00:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.1.0'
|
|
|
|
implementation "androidx.legacy:legacy-support-v4:${androidxLibVersion}"
|
|
|
|
implementation "com.google.android.material:material:${androidxLibVersion}"
|
|
|
|
implementation "androidx.recyclerview:recyclerview:${androidxLibVersion}"
|
|
|
|
implementation "androidx.legacy:legacy-preference-v14:${androidxLibVersion}"
|
|
|
|
implementation "androidx.cardview:cardview:${androidxLibVersion}"
|
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
2017-04-26 19:32:20 +00:00
|
|
|
|
2019-10-10 13:28:57 +00:00
|
|
|
implementation 'com.xwray:groupie:2.7.0'
|
|
|
|
implementation 'com.xwray:groupie-kotlin-android-extensions:2.7.0'
|
2019-04-28 20:43:54 +00:00
|
|
|
|
|
|
|
implementation 'androidx.lifecycle:lifecycle-livedata:2.0.0'
|
|
|
|
implementation 'androidx.lifecycle:lifecycle-viewmodel:2.0.0'
|
|
|
|
implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0'
|
|
|
|
|
2019-08-18 02:20:00 +00:00
|
|
|
// Originally in NewPipeExtractor
|
2020-04-25 06:52:25 +00:00
|
|
|
implementation 'com.github.TeamNewPipe:nanojson:1d9e1aea9049fc9f85e68b43ba39fe7be1c1f751'
|
2019-08-18 02:20:00 +00:00
|
|
|
implementation 'org.jsoup:jsoup:1.9.2'
|
2017-04-26 19:32:20 +00:00
|
|
|
|
2018-10-09 16:22:30 +00:00
|
|
|
implementation 'ch.acra:acra:4.9.2' //4.11
|
2017-04-26 19:32:20 +00:00
|
|
|
|
2017-11-10 09:33:59 +00:00
|
|
|
implementation 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
|
|
|
|
implementation 'de.hdodenhof:circleimageview:2.2.0'
|
2018-03-08 13:39:24 +00:00
|
|
|
implementation 'com.nononsenseapps:filepicker:4.2.1'
|
2018-03-30 01:24:30 +00:00
|
|
|
|
2018-10-09 16:22:30 +00:00
|
|
|
implementation "com.google.android.exoplayer:exoplayer:${exoPlayerLibVersion}"
|
|
|
|
implementation "com.google.android.exoplayer:extension-mediasession:${exoPlayerLibVersion}"
|
2017-08-07 13:02:30 +00:00
|
|
|
|
2018-10-09 16:22:30 +00:00
|
|
|
debugImplementation "com.facebook.stetho:stetho:${stethoLibVersion}"
|
|
|
|
debugImplementation "com.facebook.stetho:stetho-urlconnection:${stethoLibVersion}"
|
2019-10-04 12:59:08 +00:00
|
|
|
debugImplementation 'androidx.multidex:multidex:2.0.1'
|
2017-08-07 13:02:30 +00:00
|
|
|
|
2018-10-09 16:22:30 +00:00
|
|
|
implementation 'io.reactivex.rxjava2:rxjava:2.2.2'
|
|
|
|
implementation 'io.reactivex.rxjava2:rxandroid:2.1.0'
|
2018-03-16 06:42:46 +00:00
|
|
|
implementation 'com.jakewharton.rxbinding2:rxbinding:2.1.1'
|
2020-01-27 18:32:40 +00:00
|
|
|
implementation 'org.ocpsoft.prettytime:prettytime:4.0.3.Final'
|
2017-09-03 06:04:18 +00:00
|
|
|
|
2019-10-04 12:59:08 +00:00
|
|
|
implementation "androidx.room:room-runtime:${roomDbLibVersion}"
|
|
|
|
implementation "androidx.room:room-rxjava2:${roomDbLibVersion}"
|
2019-04-28 20:43:50 +00:00
|
|
|
kapt "androidx.room:room-compiler:${roomDbLibVersion}"
|
2018-02-08 20:46:54 +00:00
|
|
|
|
2018-10-09 16:22:30 +00:00
|
|
|
implementation "frankiesardo:icepick:${icepickLibVersion}"
|
2019-04-28 20:43:50 +00:00
|
|
|
kapt "frankiesardo:icepick-processor:${icepickLibVersion}"
|
2018-02-20 15:24:43 +00:00
|
|
|
|
2018-10-09 16:22:30 +00:00
|
|
|
debugImplementation "com.squareup.leakcanary:leakcanary-android:${leakCanaryLibVersion}"
|
|
|
|
releaseImplementation "com.squareup.leakcanary:leakcanary-android-no-op:${leakCanaryLibVersion}"
|
2018-06-16 09:55:57 +00:00
|
|
|
|
2018-10-09 16:22:30 +00:00
|
|
|
implementation "com.squareup.okhttp3:okhttp:${okHttpLibVersion}"
|
|
|
|
debugImplementation "com.facebook.stetho:stetho-okhttp3:${stethoLibVersion}"
|
2020-02-08 08:56:37 +00:00
|
|
|
|
|
|
|
implementation "io.noties.markwon:core:${markwonVersion}"
|
|
|
|
implementation "io.noties.markwon:linkify:${markwonVersion}"
|
2015-09-04 00:15:03 +00:00
|
|
|
}
|
2020-03-13 23:10:37 +00: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 19:45:26 +00:00
|
|
|
}
|