We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1b8326 commit e1d95dcCopy full SHA for e1d95dc
lib/services/device/device-install-app-service.ts
@@ -57,7 +57,7 @@ export class DeviceInstallAppService {
57
let packageFile;
58
if (packages.length === 1) {
59
// will always be the case on iOS
60
- packageFile = packages[0].packageName;
+ packageFile = packages.at(0).packageName;
61
} else if (device.deviceInfo.abis) {
62
packages.find(({ packageName })=> {
63
if(device.deviceInfo.abis.some(abi => packageName.includes(abi))) {
0 commit comments