This Tracking app displays the usage statistics of mobile applications on an Android device. It utilizes the app_usage package to fetch app usage data.
- Fetches and displays app usage statistics for a specified time range.
- Shows the app name, usage time and Last used.
To run the app on your local machine, follow these steps:
-
Ensure that you have Flutter installed. For installation instructions, refer to the Flutter documentation.
-
Clone this repository to your local machine using Git or download the ZIP file.
-
Open the project in your preferred IDE (e.g., Android Studio, Visual Studio Code).
-
Install the required dependencies by running the following command in the project directory:
flutter pub get
-
Connect an Android device or start an Android emulator.
-
Run the app using the following command:
flutter run
The app requires the PACKAGE_USAGE_STATS permission to access app usage statistics. To grant this permission, follow these steps:
-
Open the
android/app/src/main/AndroidManifest.xmlfile. -
Add the following permission inside the
<manifest>tag:
<uses-permission android:name="android.permission.PACKAGE_USAGE_STATS" />
- Save the file.
This app uses the app_usage package to fetch app usage statistics.
For more information about the package, refer to its documentation on pub.dev.
This project is licensed under the MIT License