appsmanager 1.2.7 copy "appsmanager: ^1.2.7" to clipboard
appsmanager: ^1.2.7 copied to clipboard

appsmanager package help to connect your app with https://appsmanager.tech/.

Apps Manager #

Apps Manager is a Flutter package that simplifies app management using the Apps Manager server

Features #

  1. Monitor App Installs
  2. Monitor App Sessions
  3. Real-Time App Analytics
  4. Send Push Notifications
  5. Facebook and Admob Ads Controls
    • Update Placements ID
    • Update AdUnit ID
  6. Uploads Contents for Content Apps

Platform Support #

Feature Android iOS macOS Web Linux Windows
Apps Manager

Getting Started #

Apps Manager

How To Use #

Add this to public in order to be accesible any where in your code

String appID = "80";
late Future<List<UploadedContents>> futureContents;

Call this fuction in order to init the appsmanager to connects with your App and be able to get Ads IDs and records every sessions and new installs if new user

  void adsmanagerInit() async {
    processFacrbookAds(appID);
    processGoogleAdmobAds(appID);
    await appsManagerinit(appID);
    print(admobAppOpen);
    print(facebookBanner);
  }

To get contents you uploads via Apps Manager

//All - means all contents uploaded
//But you can filter with category
  @override
  void initState() {
    super.initState();
    futureContents = fetchAppsManagerContents(appID, "All");
    //futureContents = fetchAppsManagerContents(appID, "category_name");
  }

Usage #

Here are some common use cases for Apps Manager:

Monitoring App Installs and Sessions #

Apps Manager automatically tracks app installs and sessions. You can view these metrics in real-time on the AppsManager dashboard.

Real-Time Analytics #

Get insights into how your app is performing with real-time analytics. This includes user engagement metrics and usage patterns.

Push Notifications #

Send targeted push notifications to your users directly from the AppsManager dashboard.

Ads Management #

Easily manage your Facebook and Admob ad placements. Update Placement IDs and AdUnit IDs without the need to release a new app version.

Content Uploads #

If your app provides content to users, you can upload and manage this content through the AppsManager server.

Support #

For more information, visit our website or contact our support team at support@appsmanager.tech.

Creadits #

  1. B.I.G
  2. Apps Manager
  3. Youtube
2
likes
150
pub points
16%
popularity

Publisher

verified publisherappsmanager.tech

appsmanager package help to connect your app with https://appsmanager.tech/.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (license)

Dependencies

hive, hive_flutter, http

More

Packages that depend on appsmanager