Skip to content

Commit

Permalink
Read .XAPK / .APK details accordingly.
Browse files Browse the repository at this point in the history
  • Loading branch information
vhanla committed Nov 18, 2021
1 parent 548829c commit 8acc81d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion frmBrowser.pas
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,10 @@ procedure TfrmWeb.FileListBox1DblClick(Sender: TObject);
frmInstaller.FApkInfo.Icon := '';

frmInstaller.FApkPermissions.Clear;
frmInstaller.GetAPKInfoWithAndroidAssetPackagingTool;
if LowerCase(FileListBox1.Items[FileListBox1.ItemIndex]).Contains('.xapk') then
frmInstaller.GetXAPKInfo
else
frmInstaller.GetAPKInfoWithAndroidAssetPackagingTool;
end;

procedure TfrmWeb.FormCreate(Sender: TObject);
Expand Down

0 comments on commit 8acc81d

Please sign in to comment.