Skip to content

Commit 229961b

Browse files
committed
Remove JWT implementation and related files
- Deleted the JWTCoding.h and JWTCoding.m files, which contained the main JWT interface for encoding and decoding. - Removed JWT.h, Map.modulemap, JWTBase64Coder.h, JWTBase64Coder.m, JWTDeprecations.h, JWTErrorDescription.h, and JWTErrorDescription.m files, which included various supplementary functionalities and error handling for JWT. - Eliminated the LICENSE and README.md files associated with the JWT library. - Updated package.json to add a script for pod installation in the iOS project directory.
1 parent b1a074f commit 229961b

55 files changed

Lines changed: 49 additions & 6619 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

ios/CodePush.xcodeproj/project.pbxproj

Lines changed: 40 additions & 327 deletions
Large diffs are not rendered by default.

ios/CodePush/Base64/Base64/MF_Base64Additions.h

Lines changed: 0 additions & 34 deletions
This file was deleted.

ios/CodePush/Base64/Base64/MF_Base64Additions.m

Lines changed: 0 additions & 252 deletions
This file was deleted.

ios/CodePush/Base64/README.md

Lines changed: 0 additions & 47 deletions
This file was deleted.

ios/CodePush/CodePushUpdateUtils.m

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
#import "CodePush.h"
22
#include <CommonCrypto/CommonDigest.h>
3+
4+
#if __has_include(<JWT/JWT.h>)
5+
#import <JWT/JWT.h>
6+
#elif __has_include(<JWT.h>)
7+
#import <JWT.h>
8+
#else
39
#import "JWT.h"
10+
#endif
411

512
@implementation CodePushUpdateUtils
613

0 commit comments

Comments
 (0)