Steps:1. Convert APK to JAR2. Convert JAR to source code I hope you like this video. For any questions, suggestions or appreciation please contact us at: https://programmerworld.co/contact/ or email at: programmerworld1990@gmail.com Details: Source code: Screenshots: Links of Tools: used in this demo: Dex2Jar: https://drive.google.com/file/d/1BaFRPTbhDD7BlPnmToq9AJxB0IAWpwmn/view?usp=drive_link https://github.com/pxb1988/dex2jar/releaseshttps://sourceforge.net/projects/dex2jar/files/ JD-GUI/ Java decompiler: https://drive.google.com/file/d/1eZOX6USPyy4Uq6YSXPFZN43OiF5ze75J/view?usp=drive_link http://java-decompiler.github.io/
Tag: code
How to integrate Open AI Chat GPT model “gpt-3.5-turbo” in your Android app?
In this video it shows the steps to integrate the Chat GPT APIs of “gpt-3.5-turbo” model in your Android App. It uses Android’s volley library to call the GPT APIs from the Json object. I hope you like this video. For any questions, suggestions or appreciation please contact us at:…
How to convert Decimal to Binary to Gray code using your own function in Matlab App Designer in Matlab R2023a?
This video shows the steps to write your own function in MAtlab App Designer to convert a number from Decimal to Binary to Gray code in Matlab 2023a. Details on the Gray code is referred from the wiki page: https://en.wikipedia.org/wiki/Gray_code I hope you like this video. For any questions, suggestions…
How to fix android.os.NetworkOnMainThreadException by defining StrictMode.ThreadPolicy in your Android Studio code?
This video shows the steps to quickly fix android.os.NetworkOnMainThreadException in your Android Studio Java code. The fix shown is more of a workaround. Ideal fix would be to run all the network related tasks in a separate thread using async methods. However, in this video it shows how one can…
How to generate PDF report using PUBLISH command in MATLAB?
In this video it shows the use of PUBLISH command to generate a PDF report for your MATLAB code. I hope you like this video. For any questions, suggestions or appreciation please contact us at: https://programmerworld.co/contact/ or email at: programmerworld1990@gmail.com Complete source code and other details: Sample MATLAB Script for…
Difference between List vs Set in Java code of your Android App?
As shown in this video, the main difference are: Set: List: I hope you like this video. For any questions, suggestions or appreciation please contact us at: https://programmerworld.co/contact/ or email at: programmerworld1990@gmail.com Complete source code and other details: With Duplicate entry of “Tokyo” Without any duplicate entry:
Selenium: Looping concept, how to implement loop in selenium script?
In this video we will see how to apply loops in order to maintain the code quality. When same action is expected to perform again and again instead of writing same code multiple times better to use loop. I hope you like this video. For any questions, suggestions or appreciation…
How to scroll RecyclerView (Page up and down) programmatically from your Android App?
In this video it shows how to use ScrollBy API of RecyclerView to scroll the pages in recycler view programmatically from your Android App’s code. To build the recycler view it re-uses the part of code previously published in our below page:https://programmerworld.co/android/how-to-show-images-in-recycler-view-in-your-android-app/ I hope you like this video. For any…
How to create a GIF from JPEG images in your Android App?-Android Studio complete code
This video shows the steps to create gif (Graphics Interchange Format) file from a set of JPEG images. It creates animation from the set of JPEG file. It uses the AnimatedGIFWriter Java code publicly available in the github post – https://github.com/dragon66/android-gif-animated-writer/blob/1b0cd020fa2e5bdb571c7c72f9352aee3843e181/src/com/github/dragon66/AnimatedGIFWriter.java It reads the jpeg image files from the download…
How to plot discrete time signals using STEM in MATLAB and Simulink?
This video shows the steps to implement a 3 harmonics periodic Analog signal. It further shows how one can plot the discrete time signal for the equation in both MATLAB and Simulink. It writes a simple MATLAB script and uses STEM function to plot the discrete time signal. It also…