Skip to content

Commit

Permalink
chore: update build script
Browse files Browse the repository at this point in the history
  • Loading branch information
timschneeb committed Jul 25, 2024
1 parent 175ba42 commit 6cd40c5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion GalaxyBudsClient.Android/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,8 @@ else
exit 1
fi

dotnet publish -f net8.0-android -c Debug -p:AndroidKeyStore=true -p:AndroidSigningKeyStore=/home/tim/Development/_KeyStores/keystore.jks -p:AndroidPackageFormats=$1 -p:AndroidSigningKeyAlias=galaxybudsclient -p:AndroidSdkDirectory=/home/tim/Android/Sdk -p:AndroidSigningKeyPass="file:/home/tim/.keys/jks" -p:AndroidSigningStorePass="file:/home/tim/.keys/jks" -p:DebugType=PdbOnly -p:NotDebuggable=true -p:EmbedAssembliesIntoApk=true -p:$2
if [[ -z $PASS ]]; then
MY_SCRIPT_VARIABLE="Env var PASS to decrypt keystore not set"
fi

dotnet publish -f net8.0-android -c Debug -p:AndroidKeyStore=true -p:AndroidSigningKeyStore=/home/tim/Development/_KeyStores/keystore.jks -p:AndroidPackageFormats=$1 -p:AndroidSigningKeyAlias=galaxybudsclient -p:AndroidSdkDirectory=/home/tim/Android/Sdk -p:AndroidSigningKeyPass="env:PASS" -p:AndroidSigningStorePass="env:PASS" -p:DebugType=PdbOnly -p:NotDebuggable=true -p:EmbedAssembliesIntoApk=true -p:$2 -v d

0 comments on commit 6cd40c5

Please sign in to comment.