galaxy_store_in_app_review 0.1.0 copy "galaxy_store_in_app_review: ^0.1.0" to clipboard
galaxy_store_in_app_review: ^0.1.0 copied to clipboard

PlatformAndroid

This is a library that wraps the Galaxy Store Review Broadcast provided by the Samsung Galaxy Store for easy use in Flutter.

galaxy_store_in_app_review #

pub package

This is a library that wraps the Galaxy Store Review Broadcast provided by the Samsung Galaxy Store for easy use in Flutter. Much inspired by britannio/in_app_review.

Galaxy Store In App Review

Android App Configuration #

Due to package visibility changes in Android 11 (API level 30) and above, apps can no longer query package information from other installed apps by default. To enable the Galaxy Store in-app review functionality, you must explicitly declare the Galaxy Store package in your AndroidManifest.xml.

Add the following configuration to your AndroidManifest.xml:

<manifest>
  <queries>
    <package android:name="com.sec.android.app.samsungapps" />
  </queries>
</manifest>
copied to clipboard

Usage #

requestReview() #

import 'package:galaxy_store_in_app_review/galaxy_store_in_app_review.dart';

if (await GalaxyStoreInAppReview.isAvailable()) {
    GalaxyStoreInAppReview.requestReview();
}
copied to clipboard

openStoreListing() #

import 'package:galaxy_store_in_app_review/galaxy_store_in_app_review.dart';

GalaxyStoreInAppReview.openStoreListing();
copied to clipboard

Disclaimer #

This is an early project. Please let me know if there is a problem.

2
likes
160
points
40
downloads

Publisher

unverified uploader

Weekly Downloads

2024.08.04 - 2025.02.16

This is a library that wraps the Galaxy Store Review Broadcast provided by the Samsung Galaxy Store for easy use in Flutter.

Repository (GitHub)

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on galaxy_store_in_app_review