I have a device with android that connects to wi-fi with a certificate. The certificate has a specific validity time. If the battery is removed or completely discharged, the time is reset. This results in the inability to connect to wi-fi and download the correct time. For security reasons, the settings are locked in the device and I would like to create an application that will set the time to a fixed time in the code. Then the phone will connect to the network and download the correct one. Do you have any other suggestions on how to solve it?
Is it possible to change the time with an android application?
196 Views Asked by Luc_Morningstar At
1
There are 1 best solutions below
Related Questions in ANDROID
- Creating global Class holder
- Flutter + Dart: Editing name of a tab shows up a black screen
- android-pdf-viewer Received status code 401 from server: Unauthorized
- Sdk 34 WRITE_EXTERNAL_STORAGE not working
- ussd reader in Recket Native module
- Incorrect display of LinearGradientBrush in IOS
- The Binary Version Of its metadata is 1.8.0, expected Version is 1.6.0 build error
- I can't make TextInput to auto expand properly in Android
- Creating multiple instances of a class with different initializing values in Flutter
- How to create a lottie animation
- making android analyze with coverity sast tool
- Flutter plugin development android src not opening after opening example
- I initialize my ViewModel in the Activity with several fragments as tabs, but the fragments(tabs) return null for the updated livedata
- Node.js Server + Socket.IO + Android Mobile Applicatoin XHR Polling Error...?
- How I can use the shared preferences class?
Related Questions in WIFI
- expression 'net.sniff.http.response' did not match any filter
- WiFiNINA with Raspberry Pi Pico SDK
- How to use WiFi and Ethernet at same time?
- how to tell If Device on WLAN are using internet?
- Connect wifi service with dbus-native
- Questions about having emulated Wifi EXACTLY match host wifi in android studio
- Is there a way to gather the SSIDs of the connected networks in the background?
- Pyrad client wifi connection failure
- Is there any way to get the WiFi contention window (CW) min and max value in Linux 80211 subsystem?
- Is that possible to send a file to a zebra printer to print it by a web application on a phone using just WI-FI?
- Fetching Wifi-Scanning location system setting on Android without deprecated functions
- ESP32 (ESP IDF) Fails to change to other STA config (generated by user) at runtime
- OSError: [Errno 1] EPERM connecting to WLAN on Raspberry Pi Pico W
- How to implement DPP (wifi easy connect) with out of band credentials
- Does ESP32 support WiFi Direct?
Related Questions in MOBILE-DEVICES
- How to change WooCommerce notice "info" background color on smaller screens?
- Sony Experia 5 Android Build.Class info
- Getting "JsonToWebElementConverter" exception when i am trying to connect with remote server to access the cloud devices
- Blocking YouTube video playback from specific links on iPads managed by Apple's MDM
- How can I configure Firebase Authentication to work with mobile devices?
- Android app not supported on some devices even though they are "supported" in the Play Console under supported devices
- Drag and Drop for mobile devices
- Screen arrow keys for mobile device do not work well
- Unity WebGL build to fullscreen on mobile devices
- Setting List at the bottom of the screen in JS
- svg text does not keep the same size as graphic on different devices
- Getting the information of a mobile device by connecting to it
- Strange behavior when I use addEventListener() on click. It only happens at mobile devices
- Web app mobile version after deploy is rendering with bugs
- Puppeteer: How to capture a screenshot with device frame?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
If I remember correctly you need a root device, plus the "SET_TIME" permission. that's a system permission so you can't do that in a Play Store app.
Then you can use the AlarmManager to set the time you want.
EDIT: How to set time to device programmatically
Geobits's answers this better than me in a really similar way.