Skip to content

Commit

Permalink
disable emulator options
Browse files Browse the repository at this point in the history
  • Loading branch information
wzieba committed Nov 1, 2023
1 parent 93ef1e9 commit 817f5fd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/readme.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,6 @@ jobs:
arch: x86_64
force-avd-creation: false
avd-name: macOS-avd-x86_64-31
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
disable-animations: true
script: ./gradlew :parsely:connectedDebugAndroidTest
- name: Publish build artifacts
uses: actions/upload-artifact@v3
Expand Down
9 changes: 8 additions & 1 deletion parsely/src/debug/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,14 @@
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:usesCleartextTraffic="true">
<activity android:name=".FunctionalTests$SampleActivity"/>
<activity android:name=".FunctionalTests$SampleActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>

0 comments on commit 817f5fd

Please sign in to comment.