XAPK File validation shows in correct data Information

前端 未结 1 1369
面向向阳花
面向向阳花 2021-01-12 07:15

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

相关标签:
1条回答
  • 2021-01-12 07:33

    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");
    
    0 讨论(0)
提交回复
热议问题