2023-01-20 17:39:16 +00:00
|
|
|
import com.android.tools.profgen.ArtProfileKt
|
|
|
|
import com.android.tools.profgen.ArtProfileSerializer
|
|
|
|
import com.android.tools.profgen.DexFile
|
|
|
|
|
2021-03-15 08:51:51 +00:00
|
|
|
plugins {
|
2021-12-05 02:16:37 +00:00
|
|
|
id "com.android.application"
|
|
|
|
id "kotlin-android"
|
|
|
|
id "kotlin-kapt"
|
|
|
|
id "kotlin-parcelize"
|
|
|
|
id "checkstyle"
|
2022-11-29 16:20:31 +00:00
|
|
|
id "org.sonarqube" version "3.5.0.2730"
|
2021-03-15 08:51:51 +00:00
|
|
|
}
|
|
|
|
|
2015-09-04 00:15:03 +00:00
|
|
|
android {
|
2022-11-05 22:44:35 +00:00
|
|
|
compileSdk 33
|
2022-09-17 13:47:03 +00:00
|
|
|
namespace 'org.schabi.newpipe'
|
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"
|
2022-07-06 20:30:30 +00:00
|
|
|
minSdk 21
|
2022-11-05 22:44:35 +00:00
|
|
|
targetSdk 33
|
2023-03-01 09:52:05 +00:00
|
|
|
versionCode 993
|
|
|
|
versionName "0.25.1"
|
2017-06-28 05:27:32 +00:00
|
|
|
|
2019-10-04 12:59:08 +00:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
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 {
|
|
|
|
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()
|
2020-09-26 20:32:11 +00:00
|
|
|
def normalizedWorkingBranch = workingBranch.replaceFirst("^[^A-Za-z]+", "").replaceAll("[^0-9A-Za-z]+", "")
|
2020-03-02 19:50:35 +00:00
|
|
|
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 {
|
2021-09-12 18:19:45 +00:00
|
|
|
if (System.properties.containsKey('packageSuffix')) {
|
|
|
|
applicationIdSuffix System.getProperty('packageSuffix')
|
|
|
|
resValue "string", "app_name", "NewPipe " + System.getProperty('packageSuffix')
|
|
|
|
archivesBaseName = 'NewPipe_' + System.getProperty('packageSuffix')
|
|
|
|
}
|
2020-04-11 20:17:39 +00:00
|
|
|
minifyEnabled true
|
2020-07-23 19:19:21 +00:00
|
|
|
shrinkResources false // disabled to fix F-Droid's reproducible build
|
2020-04-11 20:17:39 +00:00
|
|
|
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
|
|
|
|
2022-01-21 21:25:11 +00:00
|
|
|
lint {
|
2015-12-01 20:31:10 +00:00
|
|
|
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
|
2021-04-19 13:56:15 +00:00
|
|
|
// suppress false warning ("Resource IDs will be non-final in Android Gradle Plugin version
|
|
|
|
// 5.0, avoid using them in switch case statements"), which affects only library projects
|
|
|
|
disable 'NonConstantResourceId'
|
2015-12-01 20:31:10 +00:00
|
|
|
}
|
2018-08-11 13:43:52 +00:00
|
|
|
|
2016-02-05 16:09:29 +00:00
|
|
|
compileOptions {
|
2020-06-25 11:12:59 +00:00
|
|
|
// Flag to enable support for the new language APIs
|
|
|
|
coreLibraryDesugaringEnabled true
|
|
|
|
|
2021-12-05 02:16:37 +00:00
|
|
|
sourceCompatibility JavaVersion.VERSION_11
|
|
|
|
targetCompatibility JavaVersion.VERSION_11
|
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
|
|
|
|
2020-09-13 11:50:29 +00:00
|
|
|
kotlinOptions {
|
2021-12-05 02:16:37 +00:00
|
|
|
jvmTarget = JavaVersion.VERSION_11
|
2020-09-13 11:50:29 +00:00
|
|
|
}
|
|
|
|
|
2020-03-07 17:46:32 +00:00
|
|
|
sourceSets {
|
|
|
|
androidTest.assets.srcDirs += files("$projectDir/schemas".toString())
|
|
|
|
}
|
2020-10-31 04:37:18 +00:00
|
|
|
|
|
|
|
buildFeatures {
|
|
|
|
viewBinding true
|
|
|
|
}
|
2015-09-04 00:15:03 +00:00
|
|
|
}
|
|
|
|
|
2017-12-07 00:19:56 +00:00
|
|
|
ext {
|
2022-07-14 05:48:52 +00:00
|
|
|
checkstyleVersion = '10.3.1'
|
2021-03-31 15:49:55 +00:00
|
|
|
|
2022-07-23 08:22:56 +00:00
|
|
|
androidxLifecycleVersion = '2.5.1'
|
2022-07-31 04:14:23 +00:00
|
|
|
androidxRoomVersion = '2.4.3'
|
2022-02-23 17:16:07 +00:00
|
|
|
androidxWorkVersion = '2.7.1'
|
2021-03-31 15:49:55 +00:00
|
|
|
|
|
|
|
icepickVersion = '3.2.0'
|
2023-02-23 11:46:05 +00:00
|
|
|
exoPlayerVersion = '2.18.3'
|
2021-12-13 02:26:59 +00:00
|
|
|
googleAutoServiceVersion = '1.0.1'
|
2022-05-16 15:45:56 +00:00
|
|
|
groupieVersion = '2.10.1'
|
2021-06-20 21:26:59 +00:00
|
|
|
markwonVersion = '4.6.2'
|
2021-03-31 15:49:55 +00:00
|
|
|
|
2022-11-05 22:44:35 +00:00
|
|
|
leakCanaryVersion = '2.9.1'
|
2021-06-20 21:26:59 +00:00
|
|
|
stethoVersion = '1.6.0'
|
2021-12-13 02:26:59 +00:00
|
|
|
mockitoVersion = '4.0.0'
|
2022-07-14 05:48:52 +00:00
|
|
|
assertJVersion = '3.23.1'
|
2017-12-07 00:19:56 +00:00
|
|
|
}
|
2018-08-17 15:03:26 +00:00
|
|
|
|
2020-06-28 12:59:44 +00:00
|
|
|
configurations {
|
|
|
|
checkstyle
|
2020-10-31 20:55:45 +00:00
|
|
|
ktlint
|
2020-06-28 12:59:44 +00:00
|
|
|
}
|
|
|
|
|
2020-03-27 19:45:26 +00:00
|
|
|
checkstyle {
|
2022-03-18 18:58:59 +00:00
|
|
|
getConfigDirectory().set(rootProject.file("checkstyle"))
|
2020-03-27 19:45:26 +00:00
|
|
|
ignoreFailures false
|
|
|
|
showViolations true
|
2020-05-01 14:06:02 +00:00
|
|
|
toolVersion = checkstyleVersion
|
2020-03-27 19:45:26 +00: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 12:59:44 +00:00
|
|
|
classpath = configurations.checkstyle
|
2020-03-27 19:45:26 +00:00
|
|
|
|
|
|
|
showViolations true
|
|
|
|
|
|
|
|
reports {
|
2021-07-06 16:16:20 +00:00
|
|
|
xml.getRequired().set(true)
|
|
|
|
html.getRequired().set(true)
|
2020-03-27 19:45:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-31 20:55:45 +00: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)
|
2021-07-06 16:16:20 +00:00
|
|
|
getMainClass().set("com.pinterest.ktlint.Main")
|
2020-10-31 20:55:45 +00:00
|
|
|
classpath = configurations.ktlint
|
|
|
|
args "src/**/*.kt"
|
|
|
|
}
|
|
|
|
|
|
|
|
task formatKtlint(type: JavaExec) {
|
|
|
|
inputs.files(inputFiles)
|
|
|
|
outputs.dir(outputDir)
|
2021-07-06 16:16:20 +00:00
|
|
|
getMainClass().set("com.pinterest.ktlint.Main")
|
2020-10-31 20:55:45 +00:00
|
|
|
classpath = configurations.ktlint
|
|
|
|
args "-F", "src/**/*.kt"
|
|
|
|
}
|
2020-05-01 18:09:52 +00:00
|
|
|
|
2020-04-20 15:01:36 +00:00
|
|
|
afterEvaluate {
|
2021-08-06 16:11:22 +00:00
|
|
|
if (!System.properties.containsKey('skipFormatKtlint')) {
|
|
|
|
preDebugBuild.dependsOn formatKtlint
|
|
|
|
}
|
|
|
|
preDebugBuild.dependsOn runCheckstyle, runKtlint
|
2020-04-20 15:01:36 +00:00
|
|
|
}
|
2020-03-27 19:45:26 +00:00
|
|
|
|
2022-11-29 16:20:31 +00:00
|
|
|
sonar {
|
2021-03-15 08:51:51 +00:00
|
|
|
properties {
|
|
|
|
property "sonar.projectKey", "TeamNewPipe_NewPipe"
|
|
|
|
property "sonar.organization", "teamnewpipe"
|
|
|
|
property "sonar.host.url", "https://sonarcloud.io"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-04 00:15:03 +00:00
|
|
|
dependencies {
|
2021-03-31 15:49:55 +00:00
|
|
|
/** Desugaring **/
|
2023-02-03 17:42:12 +00:00
|
|
|
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.2'
|
2020-06-25 11:12:59 +00:00
|
|
|
|
2021-03-31 15:49:55 +00:00
|
|
|
/** NewPipe libraries **/
|
|
|
|
// You can use a local version by uncommenting a few lines in settings.gradle
|
2021-06-17 18:47:22 +00:00
|
|
|
// Or you can use a commit you pushed to GitHub by just replacing TeamNewPipe with your GitHub
|
|
|
|
// name and the commit hash with the commit hash of the (pushed) commit you want to test
|
|
|
|
// This works thanks to JitPack: https://jitpack.io/
|
2021-03-31 15:49:55 +00:00
|
|
|
implementation 'com.github.TeamNewPipe:nanojson:1d9e1aea9049fc9f85e68b43ba39fe7be1c1f751'
|
2023-03-01 09:51:17 +00:00
|
|
|
implementation 'com.github.TeamNewPipe:NewPipeExtractor:19e4b216c905f06f55f20241c1572e48fc284811'
|
2022-07-21 01:01:17 +00:00
|
|
|
implementation 'com.github.TeamNewPipe:NoNonsense-FilePicker:5.0.0'
|
2020-05-01 14:06:02 +00:00
|
|
|
|
2021-03-31 15:49:55 +00:00
|
|
|
/** Checkstyle **/
|
2020-06-28 12:59:44 +00:00
|
|
|
checkstyle "com.puppycrawl.tools:checkstyle:${checkstyleVersion}"
|
2022-07-14 05:48:52 +00:00
|
|
|
ktlint 'com.pinterest:ktlint:0.45.2'
|
2017-06-28 05:27:32 +00:00
|
|
|
|
2021-03-31 15:49:55 +00:00
|
|
|
/** Kotlin **/
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:${kotlin_version}"
|
2017-03-27 19:34:37 +00:00
|
|
|
|
2021-03-31 15:49:55 +00:00
|
|
|
/** AndroidX **/
|
2022-08-13 03:53:25 +00:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.5.1'
|
2021-03-31 15:49:55 +00:00
|
|
|
implementation 'androidx.cardview:cardview:1.0.0'
|
2022-07-14 05:48:52 +00:00
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
|
|
|
implementation 'androidx.core:core-ktx:1.8.0'
|
2021-03-31 15:49:55 +00:00
|
|
|
implementation 'androidx.documentfile:documentfile:1.0.1'
|
2022-07-24 19:35:33 +00:00
|
|
|
implementation 'androidx.fragment:fragment-ktx:1.4.1'
|
2022-07-23 08:22:56 +00:00
|
|
|
implementation "androidx.lifecycle:lifecycle-livedata-ktx:${androidxLifecycleVersion}"
|
|
|
|
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:${androidxLifecycleVersion}"
|
2022-03-02 16:01:01 +00:00
|
|
|
implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.1.0'
|
2022-07-14 05:48:52 +00:00
|
|
|
implementation 'androidx.media:media:1.6.0'
|
2022-03-02 16:01:01 +00:00
|
|
|
implementation 'androidx.preference:preference:1.2.0'
|
2021-10-19 21:31:59 +00:00
|
|
|
implementation 'androidx.recyclerview:recyclerview:1.2.1'
|
2021-03-31 15:49:55 +00:00
|
|
|
implementation "androidx.room:room-runtime:${androidxRoomVersion}"
|
|
|
|
implementation "androidx.room:room-rxjava3:${androidxRoomVersion}"
|
|
|
|
kapt "androidx.room:room-compiler:${androidxRoomVersion}"
|
|
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
2021-10-19 21:31:59 +00:00
|
|
|
// Newer version specified to prevent accessibility regressions with RecyclerView, see:
|
|
|
|
// https://developer.android.com/jetpack/androidx/releases/viewpager2#1.1.0-alpha01
|
|
|
|
implementation 'androidx.viewpager2:viewpager2:1.1.0-beta01'
|
2021-11-02 21:26:05 +00:00
|
|
|
implementation "androidx.work:work-runtime-ktx:${androidxWorkVersion}"
|
|
|
|
implementation "androidx.work:work-rxjava3:${androidxWorkVersion}"
|
2022-07-24 20:51:26 +00:00
|
|
|
implementation 'com.google.android.material:material:1.6.1'
|
2017-04-26 19:32:20 +00:00
|
|
|
|
2021-03-31 15:49:55 +00:00
|
|
|
/** Third-party libraries **/
|
|
|
|
// Instance state boilerplate elimination
|
|
|
|
implementation "frankiesardo:icepick:${icepickVersion}"
|
|
|
|
kapt "frankiesardo:icepick-processor:${icepickVersion}"
|
2020-10-16 11:27:04 +00:00
|
|
|
|
2021-03-31 15:49:55 +00:00
|
|
|
// HTML parser
|
2022-08-25 08:15:30 +00:00
|
|
|
implementation "org.jsoup:jsoup:1.15.3"
|
2017-04-26 19:32:20 +00:00
|
|
|
|
2021-03-31 15:49:55 +00:00
|
|
|
// HTTP client
|
2022-07-14 07:23:45 +00:00
|
|
|
implementation "com.squareup.okhttp3:okhttp:4.10.0"
|
2018-03-30 01:24:30 +00:00
|
|
|
|
2021-03-31 15:49:55 +00:00
|
|
|
// Media player
|
2022-07-13 15:57:14 +00:00
|
|
|
implementation "com.google.android.exoplayer:exoplayer-core:${exoPlayerVersion}"
|
|
|
|
implementation "com.google.android.exoplayer:exoplayer-dash:${exoPlayerVersion}"
|
|
|
|
implementation "com.google.android.exoplayer:exoplayer-database:${exoPlayerVersion}"
|
|
|
|
implementation "com.google.android.exoplayer:exoplayer-datasource:${exoPlayerVersion}"
|
|
|
|
implementation "com.google.android.exoplayer:exoplayer-hls:${exoPlayerVersion}"
|
|
|
|
implementation "com.google.android.exoplayer:exoplayer-smoothstreaming:${exoPlayerVersion}"
|
|
|
|
implementation "com.google.android.exoplayer:exoplayer-ui:${exoPlayerVersion}"
|
2020-05-01 14:06:02 +00:00
|
|
|
implementation "com.google.android.exoplayer:extension-mediasession:${exoPlayerVersion}"
|
2017-08-07 13:02:30 +00:00
|
|
|
|
2021-03-31 15:49:55 +00:00
|
|
|
// Metadata generator for service descriptors
|
2020-07-28 09:02:01 +00:00
|
|
|
compileOnly "com.google.auto.service:auto-service-annotations:${googleAutoServiceVersion}"
|
|
|
|
kapt "com.google.auto.service:auto-service:${googleAutoServiceVersion}"
|
|
|
|
|
2021-03-31 15:49:55 +00:00
|
|
|
// Manager for complex RecyclerView layouts
|
2021-06-20 19:44:17 +00:00
|
|
|
implementation "com.github.lisawray.groupie:groupie:${groupieVersion}"
|
|
|
|
implementation "com.github.lisawray.groupie:groupie-viewbinding:${groupieVersion}"
|
2018-06-16 09:55:57 +00:00
|
|
|
|
2021-03-31 15:49:55 +00:00
|
|
|
// Image loading
|
2021-03-27 13:37:44 +00:00
|
|
|
//noinspection GradleDependency --> 2.8 is the last version, not 2.71828!
|
|
|
|
implementation "com.squareup.picasso:picasso:2.8"
|
2020-02-08 08:56:37 +00:00
|
|
|
|
2021-03-31 15:49:55 +00:00
|
|
|
// Markdown library for Android
|
2020-02-08 08:56:37 +00:00
|
|
|
implementation "io.noties.markwon:core:${markwonVersion}"
|
|
|
|
implementation "io.noties.markwon:linkify:${markwonVersion}"
|
2020-05-01 14:06:02 +00:00
|
|
|
|
2021-03-31 15:49:55 +00:00
|
|
|
// Crash reporting
|
2022-12-02 18:52:30 +00:00
|
|
|
implementation "ch.acra:acra-core:5.9.7"
|
2020-05-01 14:06:02 +00:00
|
|
|
|
2021-09-06 18:47:44 +00:00
|
|
|
// Properly restarting
|
|
|
|
implementation 'com.jakewharton:process-phoenix:2.1.2'
|
|
|
|
|
2021-03-31 15:49:55 +00:00
|
|
|
// Reactive extensions for Java VM
|
2022-11-26 05:27:27 +00:00
|
|
|
implementation "io.reactivex.rxjava3:rxjava:3.1.5"
|
2023-01-01 11:46:56 +00:00
|
|
|
implementation "io.reactivex.rxjava3:rxandroid:3.0.2"
|
2021-03-31 15:49:55 +00:00
|
|
|
// RxJava binding APIs for Android UI widgets
|
2020-10-31 20:55:45 +00:00
|
|
|
implementation "com.jakewharton.rxbinding4:rxbinding:4.0.0"
|
2020-05-01 14:06:02 +00:00
|
|
|
|
2021-03-31 15:49:55 +00:00
|
|
|
// Date and time formatting
|
2022-11-01 18:32:31 +00:00
|
|
|
implementation "org.ocpsoft.prettytime:prettytime:5.0.6.Final"
|
2020-11-22 12:49:09 +00:00
|
|
|
|
2021-03-31 15:49:55 +00:00
|
|
|
/** Debugging **/
|
|
|
|
// Memory leak detection
|
|
|
|
implementation "com.squareup.leakcanary:leakcanary-object-watcher-android:${leakCanaryVersion}"
|
|
|
|
implementation "com.squareup.leakcanary:plumber-android:${leakCanaryVersion}"
|
|
|
|
debugImplementation "com.squareup.leakcanary:leakcanary-android:${leakCanaryVersion}"
|
|
|
|
// Debug bridge for Android
|
|
|
|
debugImplementation "com.facebook.stetho:stetho:${stethoVersion}"
|
|
|
|
debugImplementation "com.facebook.stetho:stetho-okhttp3:${stethoVersion}"
|
|
|
|
|
|
|
|
/** Testing **/
|
2021-05-28 13:04:39 +00:00
|
|
|
testImplementation 'junit:junit:4.13.2'
|
2020-12-19 13:10:10 +00:00
|
|
|
testImplementation "org.mockito:mockito-core:${mockitoVersion}"
|
|
|
|
testImplementation "org.mockito:mockito-inline:${mockitoVersion}"
|
2020-11-22 12:49:09 +00:00
|
|
|
|
2021-12-13 02:26:59 +00:00
|
|
|
androidTestImplementation "androidx.test.ext:junit:1.1.3"
|
|
|
|
androidTestImplementation "androidx.test:runner:1.4.0"
|
2020-11-22 12:49:09 +00:00
|
|
|
androidTestImplementation "androidx.room:room-testing:${androidxRoomVersion}"
|
2022-01-16 08:10:45 +00:00
|
|
|
androidTestImplementation "org.assertj:assertj-core:${assertJVersion}"
|
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
|
|
|
}
|
2023-01-20 17:39:16 +00:00
|
|
|
|
|
|
|
project.afterEvaluate {
|
|
|
|
tasks.compileReleaseArtProfile.doLast {
|
|
|
|
outputs.files.each { file ->
|
|
|
|
if (file.toString().endsWith(".profm")) {
|
|
|
|
println("Sorting ${file} ...")
|
|
|
|
def version = ArtProfileSerializer.valueOf("METADATA_0_0_2")
|
|
|
|
def profile = ArtProfileKt.ArtProfile(file)
|
|
|
|
def keys = new ArrayList(profile.profileData.keySet())
|
|
|
|
def sortedData = new LinkedHashMap()
|
|
|
|
Collections.sort keys, new DexFile.Companion()
|
|
|
|
keys.each { key -> sortedData[key] = profile.profileData[key] }
|
|
|
|
new FileOutputStream(file).with {
|
|
|
|
write(version.magicBytes$profgen)
|
|
|
|
write(version.versionBytes$profgen)
|
|
|
|
version.write$profgen(it, sortedData, "")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|