google_ads_deferred_deep_link 1.0.0 copy "google_ads_deferred_deep_link: ^1.0.0" to clipboard
google_ads_deferred_deep_link: ^1.0.0 copied to clipboard

PlatformAndroid

Flutter Plugin for Google Ads Deferred Deep Link. Your app users can now be navigated to an appropriate page when they first download and open your app from Google Ads.

google_ads_deferred_deep_link #

Google Ads Deferred Deep Link plugin for Flutter

Prerequisite #

  1. Read the origin docs of Google Ads Deferred Deep Link
  2. If possible, contact your business partner of Advertisement from both your orgnization and Google Ads.

Getting Started #

In your flutter project add the dependency:

dependencies:
  ...
  firebase_core:
  firebase_analytics:
  google_ads_deferred_deep_link:

For help getting started with Flutter development, view the online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

Enable the feature in your app #

Modify your application manifest by adding the following metadata tag to your application tag.

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.myawesome.app">

    <uses-permission android:name="android.permission.INTERNET" />

    <application
     android:name=".MainActivity">

     <!-- Value to be added to enable deferred deep links -->
     <meta-data android:name="google_analytics_deferred_deep_link_enabled" android:value="true"/>

       <activity
            android:name=".MainActivity" >
       </activity>

    </application>

</manifest>

Usage #

import google_ads_deferred_deep_link.dart

import package:google_ads_deferred_deep_link/google_ads_deferred_deep_link.dart
GoogleAdsDeferredDeepLink _gaddl = GoogleAdsDeferredDeepLink();
_gaddl.deferredDeepLinkStream.listen((event) {
  print('Got google ads deferred deep link: ${event?.deepLink}');
}
_gaddl.startFetch();
2
likes
130
pub points
51%
popularity

Publisher

verified publisherweicongcong.com

Flutter Plugin for Google Ads Deferred Deep Link. Your app users can now be navigated to an appropriate page when they first download and open your app from Google Ads.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on google_ads_deferred_deep_link