diff --git a/app/build.gradle b/app/build.gradle index ad161b72988c..202da59c909d 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -59,7 +59,7 @@ configurations.configureEach { def versionMajor = 3 def versionMinor = 26 def versionPatch = 0 -def versionBuild = 0 // 0-50=Alpha / 51-98=RC / 90-99=stable +def versionBuild = 51 // 0-50=Alpha / 51-98=RC / 90-99=stable def ndkEnv = new HashMap() diff --git a/build.gradle b/build.gradle index 92628f76880a..be6ed5022a32 100644 --- a/build.gradle +++ b/build.gradle @@ -8,7 +8,7 @@ buildscript { daggerVersion = "2.47" markwonVersion = "4.6.2" prismVersion = "2.0.0" - androidLibraryVersion = "master-SNAPSHOT" + androidLibraryVersion = "rc-2.16.0-01" mockitoVersion = "4.11.0" mockitoKotlinVersion = "4.1.0" mockkVersion = "1.13.3" diff --git a/scripts/analysis/analysis-wrapper.sh b/scripts/analysis/analysis-wrapper.sh index 8770f1d2401b..87ff8907267d 100755 --- a/scripts/analysis/analysis-wrapper.sh +++ b/scripts/analysis/analysis-wrapper.sh @@ -7,7 +7,7 @@ BUILD_NUMBER=$4 PR_NUMBER=$5 -stableBranch="master" +stableBranch="stable-3.26" repository="android" ruby scripts/analysis/lint-up.rb diff --git a/scripts/analysis/getBranchName.sh b/scripts/analysis/getBranchName.sh index b9f14834be31..c11302ba6da8 100755 --- a/scripts/analysis/getBranchName.sh +++ b/scripts/analysis/getBranchName.sh @@ -3,7 +3,7 @@ # $1: username, $2: password/token, $3: pull request number if [ -z $3 ] ; then - echo "master"; + echo "stable-3.26"; else - curl 2>/dev/null -u $1:$2 https://api.github.com/repos/nextcloud/android/pulls/$3 | grep \"ref\": | grep -v '"master"' | cut -d"\"" -f4 + curl 2>/dev/null -u $1:$2 https://api.github.com/repos/nextcloud/android/pulls/$3 | grep \"ref\": | grep -v '"stable-3.26"' | cut -d"\"" -f4 fi