Initial QMAX production app
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
param(
|
||||
[string]$ServerUrl = "http://localhost:8080",
|
||||
[string]$PairingCode = "qmax-local-dev"
|
||||
)
|
||||
|
||||
$ErrorActionPreference = "Stop"
|
||||
|
||||
dotnet test "$PSScriptRoot\..\QMax.slnx"
|
||||
Push-Location "$PSScriptRoot\..\android"
|
||||
try {
|
||||
.\gradlew.bat :app:assembleDebug :app:assembleRelease --console=plain --no-daemon
|
||||
}
|
||||
finally {
|
||||
Pop-Location
|
||||
}
|
||||
|
||||
Write-Host "Smoke build checks completed."
|
||||
Reference in New Issue
Block a user