Skip to content

Commit 5d10614

Browse files
committed
try 1
1 parent 516bf65 commit 5d10614

2 files changed

Lines changed: 16 additions & 1 deletion

File tree

.github/workflows/bobtests_linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
strategy:
2121
matrix:
22-
api-level: [29]
22+
api-level: [30]
2323
permissions:
2424
contents: write
2525
if: ${{ true }}

android-refimpl-app/app/src/androidTest/java/com/zoffcc/applications/trifa/JavaFriendTester.java

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,21 @@ private static void testwrite(final String num, final String text)
245245
}
246246
}
247247

248+
249+
private static void screenshot_full(final String num)
250+
{
251+
try
252+
{
253+
writeToTestStorage(captureToBitmap(onView(isRoot())), "test_" + num);
254+
Log.i(TAG, "capture full screenshot: "+ "test_" + num + ".png");
255+
}
256+
catch (Exception e)
257+
{
258+
Log.i(TAG, "ERROR on ca pturing full screenshot: "+ "test_" + num + ".png" + " E:" + e.getMessage());
259+
e.printStackTrace();
260+
}
261+
}
262+
248263
private static void screenshot(final String num)
249264
{
250265
try

0 commit comments

Comments
 (0)