926 questions
Advice
0
votes
2
replies
108
views
How to distinguish interface names of Hotspot and WiFi?
I have been working on a 1v1 Android game. In one of the game modes, one phone acts as the server and turns on it's Hotspot, whereas the other phone (the client) connects to the Hotspot of the server ...
Score of 0
1 answer
347 views
How to set Ethernet down by default in Android AOSP code
By default, Android bring up an ethernet interface through addInterface() in EthernetTracker.java. That is, When a ethernet cable is connected, it will bring up that interface and set Ip automatically....
Score of 2
1 answer
289 views
What is the difference between OEM_PAID and OEM_PRIVATE networks in Android [closed]
I see OEM_PAID and OEM_PRIVATE networks in android.
I see below info in PANS documentation.
OEM_PAID Used primarily for apps that can be routed on both OEM and non-OEM networks.
OEM_PRIVATE Used ...
Score of 1
0 answers
35 views
How to solve AndroidNetworking usees error
I am learning Android development, and then I found an error with Android networking uses.
I add this implementation (com.github.amitshekhariitbhu.Fast-Android-Networking:android-networking:1.0.4"...
Score of 0
0 answers
17 views
Android Studio App crashes sometimes when trying to get data from local webserver [duplicate]
I am currently trying to build my first app with android studio.
I am trying to access data from a webserver
My code is:
class MainActivity : AppCompatActivity() {
override fun onCreate(...
Score of 0
1 answer
229 views
Is It Technically Challenging to Implement L2TP in an Android App?
I just switched from iOS to Android and found out that with the release of Android 12, Google removed support for L2TP VPN protocol. I’ve been searching for third-party VPN apps that still support ...
Score of 2
0 answers
200 views
SSE stops receiving data after 5 minutes on mobile network (OKHttp Android)
I'm using SSE (Server-Sent Events) in an Android app with OkHttp. After 5 minutes of idle time, the connection stops receiving data on mobile networks, but works fine on WiFi. No errors or callbacks ...
Score of 1
0 answers
185 views
Force Android to use mobile data even if other network interfaces are available?
I have an Android device that's used for mobile testing. This device has cell connectivity and is separately connected to the local network over ethernet (which is used for ADB).
How can I configure ...
Score of 2
1 answer
146 views
"Connecting to VM Service at ws://127.0.0.1:50268/yZ6Ui9WuIGw=/ws "error
I am trying to run my flutter application on android virtual device using vs code but when I run the code it shows following error
I/xample.chalbha(11197): Waiting for a blocking GC ProfileSaver
and ...
Score of 1
0 answers
124 views
How to connect ipv6 through DHCP via WIFI android?
I need to connect ipv6 through WIFI.
But below code works without turning on WIFI. Let me know how to get ipv6 by turning on WIFI. I am bit confused and can you please guide me.
public String ...
Score of 2
1 answer
1484 views
frida-server being targeted by port scan?
Whenever I install and start frida-server, I have a banking app that behaves weirdly. After some research, I discovered some app may be able to do a port scan on the device running frida-server at the ...
Score of 0
1 answer
139 views
Track application id or package name using DatagramPacket in android
I open a socket and track network calls in the Android application. Currently, I can view the hostname and IP address of the coming network traffic using the DatagramPacket class. Is it possible to ...
Score of 2
1 answer
492 views
What is HttpEngine in android.net.http
I noticed there are new class in the android.net.http package. Some of them are added in API 34, also in the S Extensions 7. I encountered the HttpEngine class in the package, the summary says that
...
Score of 5
0 answers
4571 views
android.net.ConnectivityManager$TooManyRequestsException
Note: Don't mark this as duplicate as this existing answer does not solved my query android.net.ConnectivityManager$TooManyRequestsException in android while network call
Update Wed 28 Jun : Found ...
Score of 0
0 answers
336 views
How can I find which http (not https) requests my Android app is making and know the domain they are of the request?
My app is required to have the cleartextTrafficPermitted="true" attribute, which is a problem because some third party libraries think that means they can use http instead of https.
I've ...