Skip to content

Instantly share code, notes, and snippets.

@cylim
Last active April 8, 2019 03:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cylim/913af77ad96c8e016e60284b61796d50 to your computer and use it in GitHub Desktop.
Save cylim/913af77ad96c8e016e60284b61796d50 to your computer and use it in GitHub Desktop.
Exit Manager for React Native ios
#import <React/RCTBridgeModule.h>
@interface ExitManager : NSObject <RCTBridgeModule>
@end
#import "ExitManager.h"
@implementation ExitManager
RCT_EXPORT_MODULE();
// Exported Mehod Name for the ExitManager module
RCT_EXPORT_METHOD(exitApp)
{
exit(0);
};
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment