A library for generating native app code from JavaScript config through Expo config plugins
A configuration helper that enforces location and notification requirements in an Android manifest for an Expo-managed app.
Defaults treat notificationPermission as enabled and enableBackgroundLocation as disabled.
enableBackgroundLocation is true. @testexported: false, and an intent-filter action matching the supplied value. @testcom.example.maps.API_KEY is set to the provided API key string and updates the value on subsequent runs. @test@generates
export interface ManifestServiceOptions {
name: string;
action: string;
}
export interface ManifestRules {
enableBackgroundLocation?: boolean;
notificationPermission?: boolean;
apiKey: string;
service: ManifestServiceOptions;
}
export function applyAndroidManifestRules(
projectRoot: string,
rules: ManifestRules
): Promise<void>;Android project configuration utilities for reading/writing manifest files and managing permissions.
tessl i tessl/npm-expo--config-plugins@11.0.0docs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10