简体   繁体   中英

cordova app launch native app with custom parameter

I've an Android and iOS app with source code. These 2 apps are created by another vendor. I need to use my cordova app to pass in some custom parameters to thesw 2 apps and launch it.

for cordova app, how do we launch native app with parameter ?

Use intent to launch the Android app while use Custom URL Scheme to start the iOS one. Both of them can take parameter.

1 As you have the source code the two apps, you need to edit the androidManifest.xml and info.plist respectively, allowing the native apps to recognize your intention.

2 change the source code for each platform, making them do something special with the parameters.

reference link Android https://developer.android.com/guide/components/intents-filters.html

iOS https://developer.apple.com/library/content/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/Inter-AppCommunication/Inter-AppCommunication.html

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM