1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-25 12:43:39 +00:00

disable fdroid for now to speed of builds

This commit is contained in:
Kyle Spearrin
2019-05-28 15:50:53 -04:00
parent ffe7771801
commit d66646d168
2 changed files with 4 additions and 4 deletions

View File

@@ -32,7 +32,7 @@ $signedApkPath = $($rootPath + "\src\Android\bin\Release\com.x8bit.bitwarden-Sig
$signedApkDestPath = $($rootPath + "\com.x8bit.bitwarden-" + $env:APPVEYOR_BUILD_NUMBER + ".apk");
Copy-Item $signedApkPath $signedApkDestPath
<#
echo "##### Clean Android and App"
msbuild "$($androidPath)" "/t:Clean" "/p:Configuration=FDroid"
@@ -70,7 +70,7 @@ echo "##### Restore NuGet"
$nugetPath = $($rootPath + "\nuget.exe");
Invoke-Expression "& `"$nugetPath`" restore"
Invoke-Expression "& nuget restore"
echo "##### Build and Sign FDroid Configuration"
@@ -83,5 +83,5 @@ $signedApkPath = $($rootPath + "\src\Android\bin\FDroid\com.x8bit.bitwarden-Sign
$signedApkDestPath = $($rootPath + "\com.x8bit.bitwarden-fdroid-" + $env:APPVEYOR_BUILD_NUMBER + ".apk");
Copy-Item $signedApkPath $signedApkDestPath
#>
echo "##### Done"