Skip to content

AoBoET Android (decompiled WebView-based app for BMS over Wi-Fi from aoboet.apk)

Notifications You must be signed in to change notification settings

nickAS21/aoboet_java

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

📦 AoBoET Android Project

Project: AoBoET Android (decompiled WebView-based app for BMS over Wi-Fi from aoboet.apk)

📁 Project Structure

aoboet_java/
├── .gradle/
├── .idea/
├── app/
│   ├── build/
│   ├── libs/
│   ├── src/
│   │   ├── main/
│   │   │   ├── assets/
│   │   │   │   └── apps/H5057CD3A/www/
│   │   │   │       ├── login.html        <-- STARTUP FORM
│   │   │   │       ├── css/
│   │   │   │       ├── js/
│   │   │   │       └── img/
│   │   │   ├── java/
│   │   │   │   └── com/lt/batteryManage/ <-- Java code (MainActivity)
│   │   │   └── AndroidManifest.xml       <-- startup Activity

🚀 Startup Activity

The AndroidManifest.xml contains an <intent-filter> with MAIN and LAUNCHER, meaning the starting class looks like:

<activity android:name=".MainActivity">
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
</activity>

🌐 login.html — main UI

This file is located at:

app/src/main/assets/apps/H5057CD3A/www/login.html

This file is typically loaded inside a WebView like this:

webView.loadUrl("file:///android_asset/apps/H5057CD3A/www/login.html");

📌 Summary

  • ✅ The app is a hybrid WebView (DCloud 5+ style)
  • login.html is the main UI entry point
  • ✅ Java MainActivity likely initializes the WebView

If you'd like to auto-generate a working MainActivity.java that loads login.html, just ask.

About

AoBoET Android (decompiled WebView-based app for BMS over Wi-Fi from aoboet.apk)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published