fix: allow cleartext traffic#2009
fix: allow cleartext traffic#2009RohitKushvaha01 wants to merge 6 commits intoAcode-Foundation:mainfrom
Conversation
This comment has been minimized.
This comment has been minimized.
Greptile SummaryThis PR attempts to enable cleartext (HTTP) traffic in the Acode Android app by adding Key observations:
Confidence Score: 5/5Safe to merge — all remaining findings are minor style suggestions with no impact on correctness or security posture. The actual security posture is unchanged from before this PR since No files require special attention. Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[HTTP Request from App] --> B{API Level?}
B -->|API 24+| C[Network Security Config evaluated]
B -->|API < 24| D[android:usesCleartextTraffic flag]
C --> E{base-config\ncleartextTrafficPermitted=true}
E -->|All domains| F[✅ Cleartext Allowed]
D -->|usesCleartextTraffic=true| F
F --> G[HTTP traffic proceeds]
Reviews (4): Last reviewed commit: "." | Re-trigger Greptile |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
|
Preview Release for this, has been built. |
| </base-config> | ||
|
|
||
| <domain-config cleartextTrafficPermitted="true"> | ||
| <domain includeSubdomains="true">*</domain> |
There was a problem hiding this comment.
Removing this can cause something maybe security related, there was something happened in past
No description provided.