Home
last modified time | relevance | path

Searched refs:getVersionName (Results 1 – 6 of 6) sorted by relevance

/expo/packages/@expo/config-plugins/build/android/
H A DVersion.js7 exports.getVersionName = getVersionName;
66 function getVersionName(config) { function
71 const versionName = getVersionName(config);
H A DVersion.d.ts13 export declare function getVersionName(config: Pick<ExpoConfig, 'version'>): string | null;
H A DVersion.js.map1getVersionName","_config$version","version","versionName","pattern","getVersionCode","_config$andr…
/expo/packages/@expo/config-plugins/src/android/__tests__/
H A DVersion-test.ts4 getVersionName,
70 expect(getVersionName({})).toBe(null);
74 expect(getVersionName({ version: '1.2.3' })).toBe('1.2.3');
/expo/packages/@expo/config-plugins/src/android/
H A DVersion.ts59 export function getVersionName(config: Pick<ExpoConfig, 'version'>) { function
64 const versionName = getVersionName(config);
/expo/android/expoview/src/main/java/host/exp/exponent/
H A DConstants.java157 public static String getVersionName(Context context) { in getVersionName() method in Constants