A library for generating native app code from JavaScript config through Expo config plugins
Build a plugin that updates Android project identity, string resources, and Gradle defaults based on provided options.
applicationId, updates the Android package identifier in the manifest and the applicationId in the app-level Gradle config. @testapp_name string resource and ensures the main application label references it. @test@generates
export type AndroidBrandingOptions = {
applicationId?: string;
displayName: string;
versionCode: number;
versionName: string;
extraStrings?: Record<string, string>;
};
export interface AppConfig {
name?: string;
android?: Record<string, unknown>;
[key: string]: unknown;
}
export default function applyAndroidBranding(config: AppConfig, options: AndroidBrandingOptions): AppConfig;Provides helpers for Android manifest editing, string resources, and Gradle settings.
@satisfied-by
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