Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Fix test build type in proguard config documentation #4501

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/guide/proguard-configuration.md
Original file line number Diff line number Diff line change
@@ -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'
},`
```