mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2024-12-23 08:30:44 +00:00
Move code with lower priority to the bottom of the file
This commit is contained in:
parent
c2535d7764
commit
89e3292ced
@ -3,24 +3,6 @@ apply plugin: 'kotlin-android'
|
|||||||
apply plugin: 'kotlin-android-extensions'
|
apply plugin: 'kotlin-android-extensions'
|
||||||
apply plugin: 'kotlin-kapt'
|
apply plugin: 'kotlin-kapt'
|
||||||
|
|
||||||
|
|
||||||
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 ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
android {
|
android {
|
||||||
compileSdkVersion 28
|
compileSdkVersion 28
|
||||||
buildToolsVersion '28.0.3'
|
buildToolsVersion '28.0.3'
|
||||||
@ -143,3 +125,19 @@ dependencies {
|
|||||||
implementation "io.noties.markwon:core:${markwonVersion}"
|
implementation "io.noties.markwon:core:${markwonVersion}"
|
||||||
implementation "io.noties.markwon:linkify:${markwonVersion}"
|
implementation "io.noties.markwon:linkify:${markwonVersion}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
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 ""
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user