This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Works only on Linux | |
# Original docker command is on https://github.com/google/android-emulator-container-scripts | |
version: '3' | |
services: | |
android: | |
image: us-docker.pkg.dev/android-emulator-268719/images/30-google-x64:30.1.2 | |
ports: | |
- '8554:8554/tcp' | |
- '5555:5555/tcp' | |
devices: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<app-authenticator> | |
<permission name="aaa"> | |
<package name="caller app's package name"> | |
<cert-digest>caller app's SHA256 hash</cert-digest> | |
</package> | |
</permission> | |
<expected-identity> | |
<package name="com.kyaracter.myapplication"> | |
<cert-digest>your app's SHA256 hash</cert-digest> |