This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import "NativeDataPlugin.h" | |
#import <Cordova/CDVPluginResult.h> | |
@implementation NativeDataPlugin | |
- (void)init : (CDVInvokedUrlCommand *)command | |
{ | |
NSString * baseUrl = [command argumentAtIndex:0]; | |
NSString * token = [command argumentAtIndex:1]; | |
NSString * phoneDeviceId = [command argumentAtIndex:2]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// TodayViewController.swift | |
// NowWidget | |
// | |
// Created by appName on 23-01-17. | |
// | |
// | |
import UIKit | |
import NotificationCenter |