Skip to content
This repository was archived by the owner on Feb 7, 2019. It is now read-only.

Commit db11a38

Browse files
author
WorkMac
committed
increase deployment target version to 8.0
1 parent 9c6cfb4 commit db11a38

8 files changed

Lines changed: 568 additions & 568 deletions

File tree

native-src/ios/PushPlugin.xcodeproj/project.pbxproj

Lines changed: 492 additions & 492 deletions
Large diffs are not rendered by default.
Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3-
<plist version="1.0">
4-
<dict>
5-
<key>CFBundleDevelopmentRegion</key>
6-
<string>en</string>
7-
<key>CFBundleExecutable</key>
8-
<string>$(EXECUTABLE_NAME)</string>
9-
<key>CFBundleIdentifier</key>
10-
<string>com.ddimitrov.$(PRODUCT_NAME:rfc1034identifier)</string>
11-
<key>CFBundleInfoDictionaryVersion</key>
12-
<string>6.0</string>
13-
<key>CFBundleName</key>
14-
<string>$(PRODUCT_NAME)</string>
15-
<key>CFBundlePackageType</key>
16-
<string>FMWK</string>
17-
<key>CFBundleShortVersionString</key>
18-
<string>1.0</string>
19-
<key>CFBundleSignature</key>
20-
<string>????</string>
21-
<key>CFBundleVersion</key>
22-
<string>$(CURRENT_PROJECT_VERSION)</string>
23-
<key>NSPrincipalClass</key>
24-
<string></string>
25-
</dict>
26-
</plist>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>CFBundleDevelopmentRegion</key>
6+
<string>en</string>
7+
<key>CFBundleExecutable</key>
8+
<string>$(EXECUTABLE_NAME)</string>
9+
<key>CFBundleIdentifier</key>
10+
<string>com.telerik.$(PRODUCT_NAME:rfc1034identifier)</string>
11+
<key>CFBundleInfoDictionaryVersion</key>
12+
<string>6.0</string>
13+
<key>CFBundleName</key>
14+
<string>$(PRODUCT_NAME)</string>
15+
<key>CFBundlePackageType</key>
16+
<string>FMWK</string>
17+
<key>CFBundleShortVersionString</key>
18+
<string>1.0</string>
19+
<key>CFBundleSignature</key>
20+
<string>????</string>
21+
<key>CFBundleVersion</key>
22+
<string>$(CURRENT_PROJECT_VERSION)</string>
23+
<key>NSPrincipalClass</key>
24+
<string></string>
25+
</dict>
26+
</plist>
Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
1-
#import <Foundation/Foundation.h>
2-
#import <UIKit/UIApplication.h>
3-
4-
@interface Push : NSObject <UIApplicationDelegate>
5-
{
6-
NSDictionary *notificationMessage;
7-
BOOL isInline;
8-
}
9-
10-
@property (nonatomic, strong) NSDictionary *notificationMessage;
11-
@property BOOL isInline;
12-
@property (nonatomic, retain) NSDictionary *launchNotification;
13-
14-
+ (instancetype)sharedInstance;
15-
16-
-(void)register:(NSMutableDictionary *)options;
17-
-(void)unregister;
18-
-(void)areNotificationsEnabled;
19-
-(void)registerUserNotificationSettings:(NSDictionary*)options;
20-
-(void)setApplicationIconBadgeNumber:(NSMutableDictionary *)options;
21-
-(void)didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken;
22-
-(void)didFailToRegisterForRemoteNotificationsWithError:(NSError *)error;
23-
-(void)notificationReceived;
24-
-(void)success:(NSString *)eventName WithMessage:(NSString *)message;
25-
-(void)success:(NSString *)eventName WithDictionary:(NSMutableDictionary *)userInfo;
26-
-(void)fail:(NSString *)eventName WithMessage:(NSString *)message withError:(NSError *)error;
27-
@end
1+
#import <Foundation/Foundation.h>
2+
#import <UIKit/UIApplication.h>
3+
4+
@interface Push : NSObject <UIApplicationDelegate>
5+
{
6+
NSDictionary *notificationMessage;
7+
BOOL isInline;
8+
}
9+
10+
@property (nonatomic, strong) NSDictionary *notificationMessage;
11+
@property BOOL isInline;
12+
@property (nonatomic, retain) NSDictionary *launchNotification;
13+
14+
+ (instancetype)sharedInstance;
15+
16+
-(void)register:(NSMutableDictionary *)options;
17+
-(void)unregister;
18+
-(void)areNotificationsEnabled;
19+
-(void)registerUserNotificationSettings:(NSDictionary*)options;
20+
-(void)setApplicationIconBadgeNumber:(NSMutableDictionary *)options;
21+
-(void)didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken;
22+
-(void)didFailToRegisterForRemoteNotificationsWithError:(NSError *)error;
23+
-(void)notificationReceived;
24+
-(void)success:(NSString *)eventName WithMessage:(NSString *)message;
25+
-(void)success:(NSString *)eventName WithDictionary:(NSMutableDictionary *)userInfo;
26+
-(void)fail:(NSString *)eventName WithMessage:(NSString *)message withError:(NSError *)error;
27+
@end
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#import <Foundation/Foundation.h>
2-
#import "Push.h"
3-
4-
@interface PushManager : NSObject
5-
@end
1+
#import <Foundation/Foundation.h>
2+
#import "Push.h"
3+
4+
@interface PushManager : NSObject
5+
@end
Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
#import <UIKit/UIKit.h>
2-
3-
//! Project version number for PushPlugin.
4-
FOUNDATION_EXPORT double PushPluginVersionNumber;
5-
6-
//! Project version string for PushPlugin.
7-
FOUNDATION_EXPORT const unsigned char PushPluginVersionString[];
8-
9-
// In this header, you should import all the public headers of your framework using statements like #import <PushPlugin/PublicHeader.h>
10-
11-
#import <Push.h>
1+
#import <UIKit/UIKit.h>
2+
3+
//! Project version number for PushPlugin.
4+
FOUNDATION_EXPORT double PushPluginVersionNumber;
5+
6+
//! Project version string for PushPlugin.
7+
FOUNDATION_EXPORT const unsigned char PushPluginVersionString[];
8+
9+
// In this header, you should import all the public headers of your framework using statements like #import <PushPlugin/PublicHeader.h>
10+
11+
#import <Push.h>
1212
#import <PushManager.h>
-2 Bytes
Binary file not shown.

platforms/ios/PushPlugin.framework/PushPlugin

100644100755
48.1 KB
Binary file not shown.

platforms/ios/PushPlugin.framework/_CodeSignature/CodeResources

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@
66
<dict>
77
<key>Headers/Push.h</key>
88
<data>
9-
ceIyzx+3TaWJFB07vlEBkAj4OQQ=
9+
jvS3k3DIaqEsomyLBVgeFR07gYc=
1010
</data>
1111
<key>Headers/PushManager.h</key>
1212
<data>
13-
Zfsy3QnRt9N9hGnCzfHU9Ijd0+o=
13+
d95Fh/vTDm2MkfSPt5nD0zMZWn0=
1414
</data>
1515
<key>Headers/PushPlugin.h</key>
1616
<data>
17-
3lSwShy51gpGi7TnUE8tyxeIA7s=
17+
LySoYEsAzpK2asnf2zLlenP8k0U=
1818
</data>
1919
<key>Info.plist</key>
2020
<data>
21-
xBsAtJajif7EtfJ8p9yFq4RdkXU=
21+
dcLbL0n4gOIi2N7BOeR4Ott9FvM=
2222
</data>
2323
<key>Modules/module.modulemap</key>
2424
<data>
@@ -29,15 +29,15 @@
2929
<dict>
3030
<key>Headers/Push.h</key>
3131
<data>
32-
ceIyzx+3TaWJFB07vlEBkAj4OQQ=
32+
jvS3k3DIaqEsomyLBVgeFR07gYc=
3333
</data>
3434
<key>Headers/PushManager.h</key>
3535
<data>
36-
Zfsy3QnRt9N9hGnCzfHU9Ijd0+o=
36+
d95Fh/vTDm2MkfSPt5nD0zMZWn0=
3737
</data>
3838
<key>Headers/PushPlugin.h</key>
3939
<data>
40-
3lSwShy51gpGi7TnUE8tyxeIA7s=
40+
LySoYEsAzpK2asnf2zLlenP8k0U=
4141
</data>
4242
<key>Modules/module.modulemap</key>
4343
<data>

0 commit comments

Comments
 (0)