We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68af9eb commit 9a1b964Copy full SHA for 9a1b964
src/@ionic-native/plugins/play-install-referrer/index.ts
@@ -0,0 +1,17 @@
1
+import { Injectable } from '@angular/core';
2
+import { Plugin, Cordova, IonicNativePlugin } from '@ionic-native/core';
3
+
4
+@Plugin({
5
+ pluginName: 'PlayInstallReferrer',
6
+ plugin: 'cordova-plugin-play-installreferrer',
7
+ pluginRef: 'installReferrer',
8
+ repo: 'https://github.com/swayangjit/cordova-plugin-play-installreferrer',
9
+ platforms: ['Android'],
10
+})
11
+@Injectable()
12
+export class PlayInstallReferrer extends IonicNativePlugin {
13
+ @Cordova()
14
+ getReferrer(): Promise<any> {
15
+ return;
16
+ }
17
+}
0 commit comments