Skip to content

Commit 03009eb

Browse files
authored
Merge pull request #365 from AppDevNext/Espresso
Cleanup Espresso manifest
2 parents e8b7367 + 37f9789 commit 03009eb

3 files changed

Lines changed: 5 additions & 10 deletions

File tree

.github/workflows/Android-CI-Espresso.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ jobs:
2626
distribution: 'adopt'
2727
java-version: ${{ matrix.java_version }}
2828
- name: Install Android SDK
29-
uses: malinskiy/action-android/install-sdk@release/0.1.2
29+
uses: malinskiy/action-android/install-sdk@release/0.1.3
3030
- name: Build project
3131
run: ./gradlew assembleDebug
3232
- name: Run tests
3333
run: ./gradlew test
3434
- name: Run instrumentation tests
35-
uses: malinskiy/action-android/emulator-run-cmd@release/0.1.2
35+
uses: malinskiy/action-android/emulator-run-cmd@release/0.1.3
3636
with:
3737
cmd: ./gradlew cAT --continue
3838
api: 28

sample/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def fetchScreenshotsTask = task('fetchScreenshots', type: Exec, group: 'reportin
7878
}
7979

8080
tasks.whenTaskAdded { task ->
81-
if (task.name == 'connectedDebugAndroidTest') {
81+
if (task.name == 'connectedDebugAndroidTest' || task.name == 'cAT') {
8282
task.mustRunAfter {
8383
clearScreenshotsTask
8484
}
Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
xmlns:tools="http://schemas.android.com/tools"
4-
package="info.mx.tracks"
5-
android:versionCode="1"
6-
android:versionName="1.0">
3+
package="info.hannes.logcat.sampletest">
74

8-
<application
9-
android:label="MxTest"
10-
tools:replace="label"/>
5+
<application android:label="MxTest" />
116
</manifest>

0 commit comments

Comments
 (0)