FLUTTER ECOSYSTEM

Maksimka101/app_install_date

一个帮助获取应用安装日期的 Flutter 插件

app_install_date 项目封面
Stars
5
Forks
7
最近推送(UTC)
2024年12月23日
项目状态
未归档
Zemlianikin Max GitHub avatar
GITHUB User

Zemlianikin Max ↗

Flutter/Full-Stack developer
语言C++CMakeDartRubySwiftKotlinHTMLCObjective-C

此仓库发布的插件

使用的依赖

依赖清单 5 项
  • flutter{"sdk":"flutter"}
  • path_provider^2.0.13
  • flutter_lints开发依赖>=2.0.1 <6.0.0
  • flutter_test开发依赖{"sdk":"flutter"}
  • lints开发依赖>=1.0.1 <6.0.0

原始 README

以下为英文项目原文快照,最新内容请访问 GitHub。

展开 / 收起项目 README

A flutter plugin that helps to get date of the app installation

[!NOTE] This plugin most likely works but is not actively maintained. If you face any issues, please create a pull request

How to use:

late String installDate;
// Platform messages may fail, so we use a try/catch 
try {
    final DateTime date = await AppInstallDate().installDate;
    installDate = date.toString();
} catch (e, st) {
    installDate = 'Failed to load install date';
}

How it works

Android

On android it is using the PackageManager to get install date from the package info

IOS and MacOS

On these platforms it is using application document directory's creation date. This method is also used in native development