A universal module that gets native application information such as its ID, app name, and build version at runtime
Overall
score
98%
Build a React Native utility that tracks and analyzes how long users have had an app installed on their device. This utility should help developers understand user retention by providing information about installation duration.
@generates
/**
* Gets the number of days since the app was first installed
* @returns Promise resolving to the number of days (rounded down to nearest whole number)
*/
export async function getDaysSinceInstall(): Promise<number>;
/**
* Categorizes the user based on how long they've had the app installed
* @returns Promise resolving to "new", "regular", or "loyal"
*/
export async function getUserTenureCategory(): Promise<"new" | "regular" | "loyal">;Provides access to app installation information.
Install with Tessl CLI
npx tessl i tessl/npm-expo-application