From 5eaf07b2e8d69200b34c52028473089a98fbcfb2 Mon Sep 17 00:00:00 2001 From: carzh Date: Fri, 24 Jan 2025 13:35:25 -0800 Subject: [PATCH] fixed android signing options --- .../github/azure-pipelines/nuget/templates/test_android.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ci_build/github/azure-pipelines/nuget/templates/test_android.yml b/tools/ci_build/github/azure-pipelines/nuget/templates/test_android.yml index 6797fce9b0..1fe93987b8 100644 --- a/tools/ci_build/github/azure-pipelines/nuget/templates/test_android.yml +++ b/tools/ci_build/github/azure-pipelines/nuget/templates/test_android.yml @@ -58,7 +58,7 @@ stages: targetType: 'inline' script: | dotnet nuget add source $(Build.SourcesDirectory)\nuget-artifact --name local-nuget - dotnet publish -c Release --property:UsePrebuiltNativePackage=true --property:CurrentOnnxRuntimeVersion=$(NuGetPackageVersionNumber) -f net8.0-android -p:AndroidKeyStore true -p:AndroidSigningKeyAlias androiddebugkey -p:AndroidSigningKeyPass android -p:AndroidSigningKeyStore debug.keystore -p:AndroidSigningStorePass android + dotnet publish -c Release --property:UsePrebuiltNativePackage=true --property:CurrentOnnxRuntimeVersion=$(NuGetPackageVersionNumber) -f net8.0-android -p:AndroidKeyStore=true -p:AndroidSigningKeyAlias=androiddebugkey -p:AndroidSigningKeyPass=android -p:AndroidSigningKeyStore=debug.keystore -p:AndroidSigningStorePass=android workingDirectory: '$(Build.SourcesDirectory)\csharp\test\Microsoft.ML.OnnxRuntime.Tests.MAUI' - task: PowerShell@2