forked from aliyun/alibabacloud-push-flutter-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
51 additions
and
11 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,4 +34,5 @@ example/android/.idea/ | |
example/android/.gradle/ | ||
example/build/ | ||
.idea/ | ||
.vscode/ | ||
.vscode/ | ||
|
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,7 +39,7 @@ android { | |
} | ||
|
||
defaultConfig { | ||
minSdkVersion 16 | ||
minSdkVersion 19 | ||
} | ||
} | ||
|
||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
#import <Flutter/Flutter.h> | ||
|
||
static NSString* const KEY_CODE = @"code"; | ||
static NSString* const KEY_ERROR_MSG = @"errorMsg"; | ||
static NSString *const KEY_CODE = @"code"; | ||
static NSString *const KEY_ERROR_MSG = @"errorMsg"; | ||
|
||
static NSString* const CODE_SUCCESS = @"10000"; | ||
static NSString* const CODE_PARAMS_ILLEGAL = @"10001"; | ||
static NSString* const CODE_FAILED = @"10002"; | ||
static NSString* const CODE_NO_NET = @"10003"; | ||
static NSString *const CODE_SUCCESS = @"10000"; | ||
static NSString *const CODE_PARAMS_ILLEGAL = @"10001"; | ||
static NSString *const CODE_FAILED = @"10002"; | ||
|
||
static NSString *const CODE_NO_NET = @"10003"; | ||
|
||
@interface AliyunPushPlugin : NSObject <FlutterPlugin> | ||
@property FlutterMethodChannel *channel; | ||
@end | ||
|
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
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