Created
September 29, 2025 08:47
-
-
Save Gianguyen1234/1ba9b939502773b76b03e319f4b965dd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| flowchart LR | |
| A["Spring Boot Backend"] --> B["Enable CORS (WebConfig)"] | |
| A2["Android Frontend"] --> C["AndroidManifest"] | |
| C --> C1["Allow Internet Permission"] | |
| C --> C2["android:usesCleartextTraffic='true'"] | |
| C --> C3["android:name='.BankingApp'"] | |
| A2 --> D["MainActivity"] | |
| D --> D1["@AndroidEntryPoint"] | |
| A2 --> E["Application Class"] | |
| E --> E1["@HiltAndroidApp | |
| class BankingApp : Application()"] | |
| A2 --> F["AppModule"] | |
| F --> F1["Provide baseUrl: http://10.0.2.2:8080/"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment