Posts

Exciting News: Major Update to Our English Vocabulary App!

Image
I'm thrilled to announce that our English Vocabulary App has just received a significant update on Google Play! 📱✨ Download Now After a long hiatus due to my heavy daily workload, I finally dedicated time to reimplement the app from scratch. The source code from the last release was unfortunately lost, but this gave me the opportunity to rebuild the app with even better features and ensure full compliance with Google's latest policy requirements. What’s New: * Complete Reimplementation: T   ...

Map-based Implementations Deprecated: Overriding getDataSource in Spring Boot's DefaultBatchConfiguration

Image
With Spring Batch 5.0, significant changes have been made regarding job repository and explorer configurations. The Map-based job repository/explorer implementations were deprecated in version 4 and completely removed in version 5. This necessitates customizing the default batch configuration to use a Jdbc-based implementation. Additionally, Spring Batch 5.0 mandates using the Jdbc-based JobRepository, and customizing the data source configuration can help keep batch job-related data separate fr   ...

How to Generate an .aab File in a React Native Project for Google Play Console

Image
When developing a React Native app and preparing it for release on the Google Play Console, it's essential to generate the correct file format. While APK files are commonly used, Google Play Console imposes a 100MB size limit on APKs. If your app exceeds this limit, you'll need to generate an Android App Bundle (.aab) instead. Here's a comprehensive guide on how to generate an .aab file for your React Native project. Why Use .aab Instead of .apk? * Size Limitation: Google Play Console allows   ...

react native: fix error for android release: Version code has already been used. Try another version code

Image
When you receive the error "Version code 1 has already been used. Try another version code." during the process of uploading an Android App Bundle (.aab) to the Google Play Console, it means that the version code you are trying to upload has already been used for a previous version of your app. The version code must be unique for each release. Here’s how you can update the version code and version name in your Android project: Step-by-Step Guide to Update Version Code Open your project in An   ...