Lightning:WorkspaceAPI not working in Salesforce mobile app - salesforce-lightning

I have an Aura component with Lightning:WorkspaceAPI written inside that.
As expected it's working fine in Lightning Experience, but not in Salesforce mobile app.
Is there any alternative we can make it working in mobile app as well ?
Please help me out on this.

Related

Iconic's ability to support complex web applications

Ionic was built with mobile in mind - creating a good mobile experience using web technologies. You start out with a web app, so there is the possibility to use it for all 3 platforms. However I’ve never seen anything that resembles a complex web application that uses iconic for both the web and mobile. Will it support the ability to use 3rd party controls such as complex grid controls that may only be used on the web and not in the mobile apps. I’m trying to decide if we use ionic just for mobile and have a completely separate code base for our web application. Any invites would be greatly appreciated!
Basically everything that works on the web also works on mobile devices built with Ionic.
Ionic creates a WebView where javascript code runs. you can use capacitor or cordova to manage native functionality.
So if you have web developers you can do anything you could do as "Mobile Web" but in an app.
Now you can also choose whether to use react, angular or vue.
For example using Ionic with react you can use the VirtualDom and develop exactly as if you were using react on the web.
Instead, using for example React Native you will be forced to use a set of react components (or write new ones) but you will not have the VirtualDom available.
However you can also integrate native code, which Ionic doesn't support.
There are a lot of articles online that cover the subject by comparing competitors:
From Ionic
So yes, you can use all javascript libraries!

MediaDevices.getUserMedia() on IOS, android native app by ionic?

I've made voicecalling/videocalling/screensharing app for browser by webRTC/node.js/socket.io
And making PWA application for mobile users by ionic now.
Then, I can get user's (video and so on) track using MediaDevices.getUserMedia() on basic browser app and pwa
But unable to get on IOS, android native app created by ionic.
Maybe, I guess this is since MediaDevices is webAPI, and ionic is not supposed to translate for that. But I'm not sure, I have really limited knowledge about this.
does someone know there is possible way? Or simply it is impossible with ionic?
Thank you very much

How to integrate Salesforce in iphone app?

can any one help me in integrating salesforce in my app.I have made account in sales force and also created the remote-acces key.Can anyone tell how to ad objects ,dashboards etc in the iPhone app.I also want to know how to access the data on salesforce .for e.g. i want to get all the custom objects in salesforce and also want to create custom objects from iPhone app.Can anyone guide me in this respect.Any help is appreciated.
There are many ways to do it. I advice you to read carefully and choose the best way to do it.
Here are some links to read about it:
Making Salesforce and PayPal Work Together
SDK Project
Good Documentation and code
Salesforce provides mobiles SDK for iPhone, Android & hybrid platforms.
This SDK has samples on how to start with. There are lot of documentations available.
Basically the SDK helps to authenticate with Salesforce using oAuth, communicating with the objects using RestKit.
Refer the following URLs to start with..
Download the mobile SDK from the following URL.
https://github.com/forcedotcom/SalesforceMobileSDK-iOS
There is a discussion forum
http://boards.developerforce.com/t5/Mobile/bd-p/mobile
API docs
http://forcedotcom.github.com/SalesforceMobileSDK-iOS/Documentation/SalesforceSDK/index.html
Ref:
http://wiki.developerforce.com/page/Mobile_SDK

How to add code in mobile application build in netbeans

I have made a mobile application using net-beans, now i want to add my code in that application but its not working, this is my first mobile application please help me out.

Which tools is easy and good to design app for android and iPhone?

I would like to design a app for android and iPhone. App will consist of min 10 text pages and search function at the top. which tool is better for designing such a app.
Thanks for help in advance.
If you're trying to create an app that will work on both platforms, the only real choice is to create an HTML5 Web Application (skinned for mobile devices) that can work offline.
If you need some guidance, I would check out:
Mobile HTML5 - Tutorial: Your First Mobile HTML5 App
The second part of the tutorial discusses how to make your app available offline.
Titanium Appcelerator seems to be a good way to do that