|
Post by Newuser- T on Jul 30, 2019 12:28:51 GMT
Hi Team, Trying to call rhomobile android application from URL Scheme . The url I am using to call is: rhomobile.com/com.xyz(vendor from build.yml).eApp is this correct. build.yml is : name: "Test" sdkversion: "6.1.11" version: 15.2 versionCode: 1 vendor: "xyz" build: "release" bbver: 4.6 rho_app_id: "eApp1" applog: "rholog.txt" android_title: 0 iphone: configuration: "Release" sdk: "iphoneos12.1" provisionprofile: "ccccccc-bbbb-eeee-ffff-hhhhhhhhh" codesignidentity: "iPhone" entitlements: BundleIdentifier: "eApp2" BundleURLScheme: "eApp" emulatortarget: "ipad" info_plist_data: NSAppTransportSecurity: NSAllowsArbitraryLoads: true android: URIScheme: eapp wp: productid: "9cf36260-a34d-012f-6039-001cc0dba25b" symbian: uid: 3964970291 android: "version:2.2" extensions: - json - rholang - zlib - openssl.so - openssl - digest - digest-sha1 - digest-sha2 - digest-md5 - fileutils - FWDModule - clipboard sdk: "/Users/itc2l_1/.rvm/gems/ruby-1.9.3-p551/gems/rhodes-6.1.16" capabilities: - pim - calendar - gps - camera - hardware_acceleration encrypt_database: "1" use_deprecated_encryption: "1"
|
|
|
Post by Vladimir Musulainen on Jul 30, 2019 17:38:51 GMT
Hi,
The URIScheme is modified in build.yml
--> URIScheme: eapp
So, for example, the link at html page must be look like <a href="eapp://rhomobile.com/com.vendor.appname">Open The App</a>
|
|
|
Post by Newuser- T on Jul 31, 2019 4:39:26 GMT
The documentation on your website is also not working
|
|
|
Post by Newuser- T on Jul 31, 2019 4:57:27 GMT
|
|
|
Post by Vladimir Musulainen on Jul 31, 2019 7:06:53 GMT
|
|
|
Post by Vladimir Musulainen on Jul 31, 2019 7:10:17 GMT
>rms.rhomobile.com/com.rhomobile.rhodessystemapisamples >is also not working
It is not required for opening the app by URL scheme. The app must be installed on the device before you tries to open it by URL scheme.
|
|
|
Post by Newuser- T on Jul 31, 2019 9:38:42 GMT
Referred this documents still not getting it worked using rhodes version 6.1.16 . Is their any change required in build.yml please check my build.yml attached above
|
|
|
Post by Vladimir Musulainen on Jul 31, 2019 12:11:47 GMT
<a href="eapp://rhomobile.com/com.xyz.test">Call Test App</a>
URIScheme: eapp is 'eapp' because it is modified at build.yml, see setting 'URIScheme: eapp' xyz - app vendor test - app name lowercased.
|
|