Skip to content

Commit

Permalink
wip: Add CFBundleName to parse ipa package
Browse files Browse the repository at this point in the history
  • Loading branch information
lijy91 committed Apr 3, 2024
1 parent e4ceb26 commit e5ca4f0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class AppPackageParserIpa extends AppPackageParser {
return AppPackage(
platform: 'ios',
identifier: result['CFBundleIdentifier'],
name: result['CFBundleDisplayName'],
name: result['CFBundleDisplayName'] ?? result['CFBundleName'],
version: result['CFBundleShortVersionString'],
buildNumber: int.parse(result['CFBundleVersion']),
);
Expand Down

0 comments on commit e5ca4f0

Please sign in to comment.