install-expo-modules
Version:
Tools to install expo-modules for existing react-native projects
12 lines (11 loc) • 532 B
TypeScript
import { ConfigPlugin } from '@expo/config-plugins';
export declare function shouldUpdateAgpVersionAsync(projectRoot: string, targetVersion: string): Promise<boolean>;
export declare const withAndroidGradlePluginVersion: ConfigPlugin<{
androidAgpVersion: string;
}>;
export declare const withAndroidModulesProjectBuildGradle: ConfigPlugin;
export declare function updateAndroidProjectBuildGradle({ contents, isGroovy, sdkVersion, }: {
contents: string;
isGroovy: boolean;
sdkVersion: string | undefined;
}): string;