android-emulator-runner icon indicating copy to clipboard operation
android-emulator-runner copied to clipboard

A GitHub Action for installing, configuring and running hardware-accelerated Android Emulators on macOS virtual machines.

Results 139 android-emulator-runner issues
Sort by recently updated
recently updated
newest added

Following syntax is not supported. ``` script: | ./gradlew connectedAndroidTest \ -Pp1=foo \ -Pp2=bar \ -Pp3=baz ``` It's handy, specially when one has many params to pass to build.

i am using below configuration in github action , what is default size for internal storage? i need 3 GB of internal storage to test my app, so how can...

I've been seeing these a lot lately, usually on the older emulators (

Sometimes after booting emulator Happen something like this java.lang.RuntimeException: Waited for the root of the view hierarchy to have window focus and not request layout for 10 seconds. If you...

It would be really nice if I could set multiple targets in 1 action. It is possible to do w/ matrix build but when the build itself is large, running...

Hi! I have the following android.yml: ``` name: Android CI on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: macos-latest steps: - uses: actions/checkout@v2 -...

question

I was wondering if there is / will be support for emulators running custom system images? For example, if I had gotten the system image directly from a manufacturer it...

help wanted
question

According to the readme, it seems the default GPU flag uses `-gpu swiftshader_indirect`, but this is the software acceleration which the [Android Docs here](https://developer.android.com/studio/run/emulator-acceleration#command-gpu) say to try to use if...

Hello, A part of another project, we were playing around if it's possible to take an screenshot when running some tests. We are having problems with that since all the...

I run the action like this on `macos-latest`: ```yaml - name: Cache AVD uses: actions/cache@v3 id: avd-cache with: path: | ~/.android/avd/* ~/.android/adb* key: avd - name: Create AVD and generate...