- Integrate ali_auth plugin as local package (previously pub dependency) - Fix AppCompatActivity ClassNotFoundException via proguard keep rules - Add dialog popup mode matching iOS style (white background, rounded corners) - Fix invisible login button by adding blue GradientDrawable background - Add Airhub logo to authorization dialog via logoImgPath - Fix auth page not closing after login by calling quitPage() on token success - Update .gitignore to exclude plugin examples, screenshots, docs and backups Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
44 lines
987 B
Objective-C
44 lines
987 B
Objective-C
//
|
|
// AliAuthEnum.好的.h
|
|
// Pods
|
|
//
|
|
// Created by Yau的MacBook on 2022/5/19.
|
|
// Copyright © 2022 Yau的MacBook. All rights reserved.
|
|
//
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
@interface AliAuthEnum : NSObject
|
|
+ (NSDictionary *)initData;
|
|
+ (NSDictionary *)keyPair;
|
|
@end
|
|
// FOUNDATION_EXPORT NSString * const StatusAll;
|
|
|
|
typedef NS_ENUM(NSUInteger, PNSBuildModelStyle) {
|
|
//全屏
|
|
PNSBuildModelStylePortrait,
|
|
PNSBuildModelStyleLandscape,
|
|
//PNSBuildModelStyleAutorotate,
|
|
|
|
//弹窗
|
|
PNSBuildModelStyleAlertPortrait,
|
|
PNSBuildModelStyleAlertLandscape,
|
|
// PNSBuildModelStyleAlertAutorotate,
|
|
|
|
//底部弹窗
|
|
PNSBuildModelStyleSheetPortrait,
|
|
|
|
//DIY 动画
|
|
PNSDIYAlertPortraitFade,
|
|
PNSDIYAlertPortraitDropDown,
|
|
// PNSDIYAlertPortraitBounce,
|
|
// PNSDIYPortraitFade,
|
|
// PNSDIYPortraitScale,
|
|
|
|
PNSBuildModelStyleGifBackground,
|
|
//other
|
|
PNSBuildModelStyleVideoBackground,
|
|
PNSBuildModelStylePicBackground,
|
|
};
|
|
|