-
-
Notifications
You must be signed in to change notification settings - Fork 447
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed: Online library cannot be retrieved in the Play Store variant. #3994
Commits on Sep 12, 2024
-
Fixed: Online library cannot be retrieved in the Play Store variant.
* The issue arose after upgrading the Gradle version of our project (which introduced Android 14). The new Gradle version includes an updated minify tool that excludes SimpleXML attributes from the code. As a result, this error occurred. To resolve this, we added specific rules to the ProGuard file to ensure these attributes are retained in the release variant.
Configuration menu - View commit details
-
Copy full SHA for fe2f4a3 - Browse repository at this point
Copy the full SHA fe2f4a3View commit details
Commits on Sep 13, 2024
-
Added test cases to the CI for testing the minified version of the ap…
…plication to prevent this type of error from happening in the future.
Configuration menu - View commit details
-
Copy full SHA for 0278fa8 - Browse repository at this point
Copy the full SHA 0278fa8View commit details -
Improved the DownloadTest to handle cases where pausing the download …
…may show a complete pause message, such as 'Pause: Waiting for Retry,' which previously caused the test case to fail. The test case has been updated to accommodate this behavior.
Configuration menu - View commit details
-
Copy full SHA for 8770efd - Browse repository at this point
Copy the full SHA 8770efdView commit details -
Fixed: `AndroidXTracer: java.lang.NoSuchMethodError: No static method…
… forceEnableAppTracing` error in UI test cases.
Configuration menu - View commit details
-
Copy full SHA for 3ab0dcd - Browse repository at this point
Copy the full SHA 3ab0dcdView commit details
Commits on Sep 16, 2024
-
Added UI to show the progress on fetching online content.
* Refactored the viewModel code to show the downloading updates, e.g. content is fetching, downloading the online content, etc.
Configuration menu - View commit details
-
Copy full SHA for 222e868 - Browse repository at this point
Copy the full SHA 222e868View commit details -
Configuration menu - View commit details
-
Copy full SHA for 90f711b - Browse repository at this point
Copy the full SHA 90f711bView commit details
Commits on Sep 17, 2024
-
Improved the design of showing the downloading progress of online lib…
…rary. * Also, disabled the refresh layout so avoid unnecessary calls when a request is already in progress.
Configuration menu - View commit details
-
Copy full SHA for c5d0d8a - Browse repository at this point
Copy the full SHA c5d0d8aView commit details -
Improved the fetching and downloading the online library on low bandw…
…idth. * Since the online library file is 19MB large and on slow bandwidth devices it takes more time to fetch that file. Our current read timeout is 60 seconds which is not enough for reading this file on slow bandwidth devices. So we have increased it to 180 seconds.
Configuration menu - View commit details
-
Copy full SHA for 8ebeb4e - Browse repository at this point
Copy the full SHA 8ebeb4eView commit details
Commits on Sep 18, 2024
-
Refactored our code to properly show the downloading online library p…
…rogress. * Added a head request to get the library length and showing the progress on behalf of that length. * Improved the library loading process: previously, fetching the online library involved making two requests, which not only took more time to get a response from the server but also used twice the bandwidth. To address this, we have refactored our code to ensure that only one request is made at a time. * Upgraded the retrofit, and interceptor dependencies to latest version.
Configuration menu - View commit details
-
Copy full SHA for 10837ae - Browse repository at this point
Copy the full SHA 10837aeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 318ae98 - Browse repository at this point
Copy the full SHA 318ae98View commit details -
Configuration menu - View commit details
-
Copy full SHA for 476733b - Browse repository at this point
Copy the full SHA 476733bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 93fad4d - Browse repository at this point
Copy the full SHA 93fad4dView commit details -
Increase the call timeout from 1 minute to 3 minutes. Since on slow b…
…andwidth it cancel the previous ongoing request after 1 minute and retry again which increased the library load time.
Configuration menu - View commit details
-
Copy full SHA for 098deb1 - Browse repository at this point
Copy the full SHA 098deb1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 61661a5 - Browse repository at this point
Copy the full SHA 61661a5View commit details
Commits on Sep 19, 2024
-
Hiding the refresh layout when no internet connection is available.
* Hiding the "No internet connection" text when user turn on the internet and previous this text is showing.
Configuration menu - View commit details
-
Copy full SHA for 386a936 - Browse repository at this point
Copy the full SHA 386a936View commit details -
Configuration menu - View commit details
-
Copy full SHA for b3cff85 - Browse repository at this point
Copy the full SHA b3cff85View commit details