Keep Screen On

1.7.1 for iPhone, iPad
$0.99
0

0 Ratings

Update Date

2022-11-20

Size

8.6 MB

Screenshots for iPhone

iPhone
Keep Screen On Description
Very important : This application doesn't modify phone's setting to increase screen auto-lock time. It is just a small trick to keep screen on when running.

Tip: Pin to dock bar for best experience.

This app has the main function is to prevent your device from going to sleep mode, which is convenient for you while waiting for the xcode build is finished.

Step 1: Run the app (on your device).

Step 2: Use Xcode to build and deploy your application onto the device.

Step 3: App will prevent your device from falling into sleep mode and hide in the background when your application is deployed.

You can set the maximum timeout to avoid the case when your application fails to deploy , make the app stuck on waiting.

You can also set an alarm when your application has been deployed
Keep Screen On 1.7.1 Update
2022-11-20
- fixbug crash on new device
More Information
Price:
$0.99
Version:
1.7.1
Size:
8.6 MB
Genre:
Utilities
Update Date:
2022-11-20
Developer:
Duy Nguyen
Language:
English

Safe to Download

AppPure.com and the download link of this app are 100% safe. The download link of this app will be redirected to the official App Store site, thus the app is original and has not been modified in any way.

Got it
X
Share

Share this page with your friends if you find it useful

Facebook Linkedin Pinterest Tumblr Twitter Whatsapp Line
1.7.1 2022-11-20
- fixbug crash on new device
1.7.0 2021-11-02
- Add support to call from Shortcut automation. Now you can add automation to auto call Keep Screen On start when your app closes by using Shortcut automation.
1.6.0 2021-04-22
- optimize performance
- fixbug
1.5.1 2020-08-27
+ fixbug leak memory
1.4 2020-06-20
+ add more time out options
1.3 2019-10-06
+ fixbug
1.2 2019-10-04
+ fixbug on IOS 13
1.1 2019-07-26
(+) support open app from URL “KeepScreenOn://“
- This will help if you want to turn back to Keep Screen On after finishing your test.

- example code: AppDelegate.swift
#if DEBUG
func openKeepScreenOn()
{
let url = URL(string: "KeepScreenOn://")!

if #available(iOS 10.0, *) {
UIApplication.shared.open(url)
} else {
UIApplication.shared.openURL(url)
}
}
#endif
func applicationDidEnterBackground(_ application: UIApplication) {
#if DEBUG
openKeepScreenOn()
#endif
}
func applicationWillTerminate(_ application: UIApplication) {
#if DEBUG
openKeepScreenOn()
#endif
}
1.0 2019-04-01