install-expo-modules 0.5.0 → 0.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,5 @@
1
+ import { ConfigPlugin } from '@expo/config-plugins';
2
+ export declare function shouldUpdateAgpVersionAsync(projectRoot: string, targetVersion: string): Promise<boolean>;
3
+ export declare const withAndroidGradlePluginVersion: ConfigPlugin<{
4
+ androidAgpVersion: string;
5
+ }>;
@@ -2,6 +2,7 @@ export interface VersionInfo {
2
2
  expoSdkVersion: string;
3
3
  iosDeploymentTarget: string;
4
4
  reactNativeVersionRange: string;
5
+ androidAgpVersion?: string;
5
6
  }
6
7
  export declare const ExpoVersionMappings: VersionInfo[];
7
8
  export declare function getDefaultSdkVersion(projectRoot: string): VersionInfo;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "install-expo-modules",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "Tools to install expo-modules for existing react-native projects",
5
5
  "main": "build",
6
6
  "scripts": {