mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 07:35:52 +03:00
24 lines
1 KiB
PowerShell
24 lines
1 KiB
PowerShell
|
$rootPath = $env:GITHUB_WORKSPACE;
|
|||
|
|
|||
|
$androidPath = $($rootPath + "\src\Android\Android.csproj");
|
|||
|
|
|||
|
$appKeystoreFdroidFilename = "app_fdroid-keystore.jks";
|
|||
|
|
|||
|
Write-Output "########################################"
|
|||
|
Write-Output "##### Sign FDroid Configuration"
|
|||
|
Write-Output "########################################"
|
|||
|
|
|||
|
msbuild "$($androidPath)" "/t:SignAndroidPackage" "/p:Configuration=FDroid" "/p:AndroidKeyStore=true" `
|
|||
|
"/p:AndroidSigningKeyAlias=bitwarden" "/p:AndroidSigningKeyPass=$($env:FDROID_KEYSTORE_PASSWORD)" `
|
|||
|
"/p:AndroidSigningKeyStore=$($appKeystoreFdroidFilename)" `
|
|||
|
"/p:AndroidSigningStorePass=$($env:FDROID_KEYSTORE_PASSWORD)" "/v:quiet"
|
|||
|
|
|||
|
Write-Output "########################################"
|
|||
|
Write-Output "##### Copy FDroid apk to project root"
|
|||
|
Write-Output "########################################"
|
|||
|
|
|||
|
$signedApkPath = $($rootPath + "\src\Android\bin\FDroid\com.x8bit.bitwarden-Signed.apk");
|
|||
|
$signedApkDestPath = $($rootPath + "\com.x8bit.bitwarden-fdroid.apk");
|
|||
|
|
|||
|
Copy-Item $signedApkPath $signedApkDestPath
|