EAS Expoのbuild生成物をAndoroid device/emulatorで動かす
EASがdefaultで生成するのはAAB
しかし、これはデバイスに入れられないためデバッグには使用できない
デバッグに使用するためにはAPKを生成する必要がある
code:eas.json
"development": {
"android": {
"buildType": "apk"
}
},
build後、QRコードからスマホに直接installできる
参考
Building APKs for Android emulators and devices - Expo Documentation