279
questions
0
votes
0
answers
15
views
how to communicate (read and create) data with a mikrotik router from his hotspot?
I'm trying to read user profile(i created it) and create user in my router mikrotik from his hostpot. When i use fetch to read profil it return error ERR_CONNECTION_REFUSED. Below, my request to read ...
0
votes
0
answers
33
views
Can we share hotspot programmatically in our flutter application without turning on the device hotspot?
Actually, I am developing an app in which I have to share the connected network with other users on the app with the same name and password, so any user can connect to that network without password.
I ...
0
votes
0
answers
85
views
Custom Hotspot Configuration on Android 14 with Root Permissions
I’m working on an academic project where I need to modify the default behavior of the hotspot functionality on an Android device. My goal is to start a hotspot programmatically and configure it to ...
0
votes
1
answer
62
views
Can a third party app create a hotspot on Android?
Is it possible for a third party app to open a WiFi Hotspot on Android? Following is basically the crux of how I am doing this.
public void setWifiApEnabled(int channel) {
WifiConfiguration ...
-1
votes
1
answer
51
views
Where to find jdk sources for JNI_CreateJavaVM?
I'm trying to understand better how jvm works, and I was trying to find the main function that really interested me - the JNI_CreateJavaVM function. I wonder how it parses java bytecode, but I can't ...
0
votes
1
answer
235
views
How to send Wi-Fi Credentials to ESP32 using hotspot in flutter app
I have an iOT project.
Where I need to send home wifi credentials on iOT device.
Firstly, I have to connect the mobile app to the iOT device hotspot. Then send wifi credentials to the iOT device ...
1
vote
0
answers
35
views
How to apply border and change colour of border on ImageMap hotspots
I have rendered an image and provided hotspot with Image map defined. I've also added mouseover event listener to highlight the hotspot using focus().
My expectation is to have a border to be ...
0
votes
0
answers
165
views
How to create a login page with registration with Freeradius Dolaradius
I'm a beginner and I'm learning about FreeRADIUS and DaloRADIUS to implement authentication on a network. I would like to know how to create a personalized login page that allows new users to register,...
0
votes
0
answers
213
views
Creating a Software-Based Wi-Fi Hotspot on Windows Laptop Without Hosted Network Support
Question:
I'm attempting to create a software-based Wi-Fi hotspot on my Windows laptop without relying on a hosted network, as my laptop doesn't support it. I've explored various options, including ...
0
votes
0
answers
13
views
No connection even if it connected to hotspot
I have a problem with internet connection on my Ipad. I create a hotspot on my Android phone and connect to it on my iPad, but after a while, the connection stops working, and the pages on the iPad ...
1
vote
0
answers
304
views
Sharing Socks5 proxy over wifi
i have been trying to make a hotspot that get's it's traffic through a socks5 proxy to use that on my phone without having to install a socks5 client on the phone directly
First setup: i tried to ...
0
votes
1
answer
60
views
How to Turn on LocalOnlyHotspot using WifiNetworkSpecifier.Builder as WifiConfiguration is Deprecated?
Here is My code-
public void turnOnLocalOnlyHotspot(Context context) {
ConnectivityManager connectivityManager = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);
...
0
votes
0
answers
24
views
Does anyone know how to use the 'Create Space Time Cube' tool in Arcmap? it gives me an error and I don't understand why
I have point data at municipal level and am looking for information on how the input data should be structured to create a spatio-temporal cube of available data to visualise and analyse emerging ...
0
votes
0
answers
51
views
Turn on/off mobile hotspot in android higher 8 by programming
I want to turn on or off mobile hotspot via code. I read many tutorials, but I see that it only works with API version lower 26. And I see the function
wifiManager.setWifiApEnabled
It uses for ...
1
vote
1
answer
218
views
setWifiApEnabled: NoSuchMethod
I've been trying to follow this tutorial on how to programmatically configure and start a Wi-Fi hotspot on Android. Here's my main activity file:
package com.example.test;
import androidx.appcompat....