Created
July 2, 2018 11:03
-
-
Save RoyiNamir/42e531b8ca57aa9e8baa038634230764 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {Injectable, NgZone} from '@angular/core'; | |
import {ReplaySubject} from "rxjs"; | |
import {isAndroid, isIOS} from "tns-core-modules/platform"; | |
let OnRouteToURL: ReplaySubject<string>; | |
if (isAndroid) | |
{ | |
OnRouteToURL = require('./activity').AndroidOnRouteToURL; | |
} | |
@Injectable() | |
export class DeepLinksService | |
{ | |
} | |
/*adb shell am start -W -a android.intent.action.VIEW -d "dlink://forgotPassword/111/555" com.davidshield.dsapp1*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment