How to get to the mobile App builder page on Bluemix? - ibm-cloud

I'm new to Bluemix but I've seen on several videos some folks easily using Bluemix to create their app screen just dropping whatever they find useful on it. But I logged on and I looked everywhere for this page and I can't find it. Does anyone knows how to get there?This image shows the place where I want to go.
Thank you all!

Mobile App Builder is no longer integrated into the Bluemix Developer Experience. It's been replaced with starter apps that allow users to get started quickly integrating Watson and other Bluemix services into their projects.
If you would like access to the legacy App Builder tools, they are available here.

Related

How Do I Track the Install Source from within an Ionic App?

Marketing specialists keep instructing my client to setup the analytics so that it can track where the user is being referred from so that we can optimize the advertising campaigns.
When I ask them how to setup the tracking correctly they send me to a link for the native Android & iOS google analytics libraries and provide the settings. I respond in kind stating that our app is not built using the native SDK's it is built using the Ionic Framework. They then have no response for this.
I have Google Analytics implemented as well as Facebook analytics. Both systems are actively tracking data. But apparently it is still not tracking the source of which advertising campaign the user originated from and / or installed the app from.
I've tried to find an example of this somewhere and talked to numerous people but from what I can tell it is not possible using the Ionic Framework.
Can anyone provide some insight into this? If this is not possible it seems like a rather large issue with the Ionic Platform that should be made more visible.
Thank you!

how to create google home app

I am new to google home. I had an experience in Amazon Alexa custom skill development. In Alexa, I had deployed my codebase in lambda function and also test my custom skill using actual Alexa device register with my email id.
So, Now I need to develop similar skill in google home device. Till now, I didn't get any good tutorials.
Is it possible to create & test Google Home app like Alexa skill?
The steps you go through to develop a Google Home action or app are very similar to creating an Alexa skill. There are a couple of differences, but logically they are the same.
If you use a NLP system such as Dialogflow (which is strongly suggested), you build the suggested phrases that the system responds to and the Intents they correspond to. You would specify your webhook as part of building these phrases. If you don't wish to use an NLP, you can specify the initial Intent phrases using the Actions SDK and specifying the configuration as part of a .json file. Other actions you'd do in the Alexa console are similar to what you'd do in the Assistant console.
You can deploy your Action on any public server that accepts HTTPS connections. This can include AWS Lambda with an AWS API Gateway trigger, or a Firebase Function, or a web server you more directly control that has a valid SSL certificate. This webhook would get a JSON body and needs to send back a valid JSON response. Google has libraries for node.js to help with this.
Google has a relatively full-featured simulator which you can use to test your Action. Once it is available in the simulator, it is also immediately available on every device attached to that account. You can permit other accounts to the project as well and, once they have activated it through the simulator, it is available on all their devices as well.
A full set of documentation is available at https://developers.google.com/actions/. It includes links to sample code, and you can find more step-by-step codelabs at https://codelabs.developers.google.com/?cat=Assistant
If you're familiar with how to develop skills for Alexa you might want to check out the jovo-framework. It makes it pretty easy to create skills that work for both Amazon Alexa and Google Home.
Here is a good starter template and walk-through that will get you going. https://github.com/rmtuckerphx/ask-cli-jovo-starter

How to add MQA (Mobile Quality Assurance) to an existing MobileFirst hybrid app?

I need to add the MQA feedback tool to an existing hybrid app being develop with IBM MobileFirst.
Here is what I have done and what I need to do.
Done:
Downloaded the MQA sdk for MobileFirst JavaScript Hybrid SDK MFPComponent-JS-3.0.13
Created a Bluemix account and a MQA app
added IOS platform
Added MQA as an application component using Eclipse (not sure if this is the correct way to do it)
Creted a UI with a feedback form (rate experience, subject, comments, include my id in my feedback, submit button)
In this UI I created a toggle for enabling "Shake to see this screen".
Need help to:
check if the MQA library was added correctly. How can I test it?
How can I make the submit button click event send the feedback data (UI form) to the MQA server? (any source code please?) I need to see the data in the MQA manager site.
Thanks in advance
You need to first follow the provided Getting Started tutorials, which will guide you through setting up the SDK and making sure that MQA is properly working in the application, including example code.
After that, once you get it working, you can come back with concrete questions on things that do not work.
See here: https://developer.ibm.com/mobilefirstplatform/documentation/getting-started-7-2/quality-assurance/native-ios/

how to populate information from sales force dynamically to application

We need to create questions and related options in sales force and need to populate them in my application as well (question and multiple options together). I searched a lot in google,but no related information regarding this.
Any help could be appreciated.
Thanks
To consume data from Salesforce from your iOS application you should start taking a look at the Salesforce Mobile SDK.
A good place to read and get started with iOS and SF integration is the Salesforce mobile guides
You may find information on the same site about Salesforce integration with other mobile platforms as well.

Google Drive vs Google Doc for iOS?

I have an iOS app that uses the Google Docs List API to access and download spreadsheet data. I've done a basic test with upgrading my Google Docs account to Google Drive, and everything still seems to be working okay.
Based on the answer for this question Google Document List API and Google Drive SDK it looks like things will continue to work for awhile.
Are there any steps that mobile devs should be taking now to move to the new API? My main concern is that most of the developer docs so far are related to web apps and not mobile apps so requirements like registering for the chrome web store don't seem to fit. For example:
"Warning: Apps will not have any API access to files unless the app has been installed in Chrome Web Store. To test an app during development, you must first create a listing and install it."
Any guidance or suggestions would be appreciated.
Check this answer for the rationale behind the Chrome Web Store installation: https://stackoverflow.com/a/10476737/186674
Also, we are considering removing the installation requirement for the development and testing phase, we should have some updates soon.
iOS apps using the Documents List API should now update to using the Google Drive API and the newer Google APIs Client Library for Objective-C.
The new API and library are quite a bit easier to use and more efficient than are the older GData alternatives.