mx-jpush-expo
Version:
Expo 集成极光推送(JPush)一体化解决方案,支持 iOS/Android 厂商通道
12 lines • 641 B
TypeScript
/**
* Android app/build.gradle 配置
* 添加 JPush 依赖和 manifestPlaceholders
*/
import { ExpoConfig } from 'expo/config';
import { ResolvedJPushPluginProps, VendorChannelConfig } from '../types';
export declare function applyAndroidAppBuildGradle(contents: string, vendorChannels?: VendorChannelConfig, packageName?: string, appKey?: string, channel?: string): string;
/**
* 配置 Android build.gradle
*/
export declare function withAndroidAppBuildGradle(config: ExpoConfig, props: Pick<ResolvedJPushPluginProps, 'packageName' | 'appKey' | 'channel' | 'vendorChannels'>): ExpoConfig;
//# sourceMappingURL=appBuildGradle.d.ts.map