Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

XAPK File validation shows in correct data Information

While running APK expansion file sample I just skiped checking CRC32 to avoide crc bug algorithm and its working very fine!! But while XAPK File validation shows in correct downloaded data information 99% !!, how to avoid that and view full 100% by hard-coding?

enter image description here

enter image description here

like image 344
LOG_TAG Avatar asked Jul 30 '12 14:07

LOG_TAG


People also ask

How do I fix XAPK?

Step 1: Download the UpToDown APK Installer from the Google Play Store. Step 2: Open the app, now click on the install button and browse through your storage to find your XAPK file. Your device may ask for storage permission, so click allow. Step 3: After selecting the XAPK file, click on the install button.

What is XAPK file How does it work?

An XAPK file is a new file format that packages the android installer file and game data or additional data. In general, these are compressed files (Zip files).

How do I convert XAPK to APK?

Step 1: Once the XAPK file has finished downloading, go to File Manager (or File Explorer) and rename the extension to zip. Step 2: After that, long press on the file to decompress it and it will reveal two major files — an APK file and an Android folder.


1 Answers

It's not a best sloution but I got the solution by hard coding the ProgressBar mPB; TextView mProgressPercent; TextView mProgressFraction; in DownloaderActivity onPostExecute method of validationAsynctask

    mPB.setMax(10);
    mPB.setProgress(100);
    mProgressPercent.setText(100 + "%");
    mProgressFraction.setText("Download Completed Successfully");
like image 146
LOG_TAG Avatar answered Sep 19 '22 05:09

LOG_TAG