Skip to content

Commit e5ca4f0

Browse files
committed
wip: Add CFBundleName to parse ipa package
1 parent e4ceb26 commit e5ca4f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/parse_app_package/lib/src/parsers/ipa/app_package_parser_ipa.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class AppPackageParserIpa extends AppPackageParser {
2525
return AppPackage(
2626
platform: 'ios',
2727
identifier: result['CFBundleIdentifier'],
28-
name: result['CFBundleDisplayName'],
28+
name: result['CFBundleDisplayName'] ?? result['CFBundleName'],
2929
version: result['CFBundleShortVersionString'],
3030
buildNumber: int.parse(result['CFBundleVersion']),
3131
);

0 commit comments

Comments
 (0)