This repository has been archived by the owner on May 1, 2024. It is now read-only.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Added instructions for running Android UI tests on Windows.
@PureWeen @jfversluis @samhouts When I debug the test project on Windows, ApkPath isn't correct for me. We go 3 folders up from the current directory and append a substring to point to the Apk file, but I noticed my current directory does not point to the solution directory. It points to the Temp folder instead.
directory
returnsC:\Users\[user]\AppData\Local\Temp
for me. So, when we go 3 levels up and then append the rest ofApkPath
, I end up withC:/Users/[user]/Xamarin.Forms.ControlGallery.Android/bin/Debug/AndroidControlGallery.AndroidControlGallery-Signed.apk
which is not correct because it's missing the parent folder I checked out XF solution to. Any of you saw this issue before?Temporarily, I hard-coded the path to the Apk in local, but I'd like to know the root cause of this issue if possible.