summaryrefslogtreecommitdiff
path: root/plugins/nl.x-services.plugins.insomnia/src/ios/Insomnia.m
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/nl.x-services.plugins.insomnia/src/ios/Insomnia.m')
-rwxr-xr-xplugins/nl.x-services.plugins.insomnia/src/ios/Insomnia.m32
1 files changed, 0 insertions, 32 deletions
diff --git a/plugins/nl.x-services.plugins.insomnia/src/ios/Insomnia.m b/plugins/nl.x-services.plugins.insomnia/src/ios/Insomnia.m
deleted file mode 100755
index 7eca3b07..00000000
--- a/plugins/nl.x-services.plugins.insomnia/src/ios/Insomnia.m
+++ /dev/null
@@ -1,32 +0,0 @@
-#import "Insomnia.h"
-#import <Cordova/CDV.h>
-
-@implementation Insomnia
-
-- (void) keepAwake:(CDVInvokedUrlCommand*)command {
- NSString *callbackId = command.callbackId;
-
- // Acquire a reference to the local UIApplication singleton
- UIApplication* app = [UIApplication sharedApplication];
-
- if (![app isIdleTimerDisabled]) {
- [app setIdleTimerDisabled:true];
- }
- CDVPluginResult* result = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK];
- [self.commandDelegate sendPluginResult:result callbackId:callbackId];
-}
-
-- (void) allowSleepAgain:(CDVInvokedUrlCommand*)command {
- NSString *callbackId = command.callbackId;
-
- // Acquire a reference to the local UIApplication singleton
- UIApplication* app = [UIApplication sharedApplication];
-
- if([app isIdleTimerDisabled]) {
- [app setIdleTimerDisabled:false];
- }
- CDVPluginResult* result = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK];
- [self.commandDelegate sendPluginResult:result callbackId:callbackId];
-}
-
-@end \ No newline at end of file