From 7454eb2101fa085fe498240f124ad1a9278f6983 Mon Sep 17 00:00:00 2001 From: Erik Ziegler Date: Sun, 2 Jun 2024 21:54:12 +0200 Subject: [PATCH] Fix test build type in proguard config documentation --- docs/guide/proguard-configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/proguard-configuration.md b/docs/guide/proguard-configuration.md index 0e53df6f6e..f6e134942b 100644 --- a/docs/guide/proguard-configuration.md +++ b/docs/guide/proguard-configuration.md @@ -78,7 +78,7 @@ Following the example, you would then have to adjust your `build` and `binaryPat - binaryPath: 'android/app/build/outputs/apk/release/app-release.apk', + binaryPath: 'android/app/build/outputs/apk/releaseE2E/app-releaseE2E.apk', - build: 'cd android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release' -+ build: 'cd android && ./gradlew assembleReleaseE2E assembleAndroidTest -DtestBuildType=release' ++ build: 'cd android && ./gradlew assembleReleaseE2E assembleAndroidTest -DtestBuildType=releaseE2E' },` ```