A library for generating native app code from JavaScript config through Expo config plugins
A utility that keeps an Android manifest aligned with project requirements while routing non-blocking issues through warnings.
fallbackXml is provided, initialize from the fallback, persist it, and continue using the parsed result. @testminSdkVersion is below minSdkVersion, raise an Android warning and update it to the required version. @test<application> node contains a <meta-data android:name="com.example.feature.ENABLED" android:value="true">; add it when missing and warn when the previous value was not "true". @test@generates
export interface ManifestSafetyOptions {
manifestPath: string;
fallbackXml?: string;
minSdkVersion: number;
}
export interface ManifestSafetyResult {
updated: boolean;
warnings: string[];
}
export async function ensureManifestSafety(
options: ManifestSafetyOptions
): Promise<ManifestSafetyResult>;Provides manifest XML helpers, validation utilities, and warning aggregation support.
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