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: java
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 resolve “org.openqa.selenium.remote.http.ConnectionFailedException: Unable to establish websocket connection to http://localhost”?
In this video we will see how to fix/resolver selenium error “Exception in thread “main” org.openqa.selenium.remote.http.ConnectionFailedException: Unable to establish websocket connection to http://localhost:64162/devtools/browser……”. Code:
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…
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…
Android Studio – Fix the error “Could not resolve com.android.tools.build:gradle:7.4.0”?
In this video it shows the steps to fix the gradle error in Android studio. Actual issue is with Java version mismatch as explained in the below line of error: To resolve this issue, it changes the Gradle JDK for build in the settings of Android Studio. I hope you…
How to create 2 launcher activities (app icon) using 1 apk installer for your Android App? – Android Studio tutorial – API 32 | Android 12
In this video it shows how one can create two launcher icons for specific activities of their Android App. It creates two activities for demo purpose and connect to different layouts which can be loaded during the onCreate method. Then, in manifest file, it creates multiple activities tags as launcher…
Solve “enable JavaScript if it is disabled in your browser” error in WebView of your Android App.
This video shows how one can enable JavaScript in WebView (browser) of your Android App. 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: package com.programmerworld.javascriptinwebview;import androidx.appcompat.app.AppCompatActivity;import android.os.Bundle;import android.webkit.WebView;import android.webkit.WebViewClient;public class MainActivity extends AppCompatActivity {…
How to import external Jar files as libraries in Android Studio Environment?
In this video it shows the steps to include the external Jar files in your Android Studio as libraries. It shows how the gradle file gets updated by adding the Jar files in the Android Studio environment. I hope you like this video. For any questions, suggestions or appreciation please…