I am trying to navigate to a Field Service Mobile entity from a deep link as Microsoft indicate in his documentation:
https://learn.microsoft.com/es-es/dynamics365/field-service/mobile-deeplink
I am using this:
TEST
It is opening the aplication in both Android and Windows OS, but only opens the app, not navigating to the entity.
Any help?
Thanks
try this to use below .................
href="fsmobile://open?msdyn_workorder;{work_order_id}">TEST
fsmobile://open?msdyn_workorder;
Related
I have deployed a simple web app and deployed to https://rockdove.centralindia.cloudapp.azure.com:82/. This page has the link to teams app sdk and also has initialized the teams app. im trying to load it inside teams app in my organization using this manifest file. i can upload and install the app but the app is not loading. The index file and manifest used for test is attached here.
Here are a few things to look at:
I don't think you can pass anything to microsoftTeams.initialize(), so remove the 'window' parameter
I've not tested whether the 'validDomains' allows custom ports, but it might not - try put the entry without the ':82', and then also remove entries 2 & 3, so it's only 'rockdove.centralindia.cloudapp.azure.com'
I would like to add a "User Feedback" link to my Xamarin Forms application and I am looking for some suggestions on where to start. If possible I don't want to have the user send me comments through email. I'm already using appcenter.ms and would like to use something like that or maybe there are web sites that users could use.
Would appreciate comments and suggestions on ways that this could be done.
https://instabug.com/platforms/xamarin
IOS Configuration
4- To start using Instabug in your iOS app, add the following line in the FinishedLaunching method inside the AppDelegate class.
Instabug.StartWithToken ("YOUR_APP_TOKEN_HERE", IBGInvocationEvent.Shake);
Android Configuration
5-To start using Instabug in your Android application, add the following line in the OnCreate method inside the MainApplication class.
new Instabug.Builder(this, YOUR_APP_TOKEN_HERE")
.SetInvocationEvent(InstabugInvocationEvent.Shake).Build();
https://ozaksut.com/how-to-integrate-instabug-for-your-xamarin-apps/
You can let the user submit comments or feature requests via a few useful services:
zendesk and their mobile sdk
intercom and their mobile sdk
you can integrate support forms or feature requests, activate on user action in the app and communicate via corresponding services administrative part, which includes all the tools, charts, analytics and automation (alerts, bots, etc).
I would like to create a Visual Studio project to my Dynamics site.
I'm using .NET and Javascript. My target is create a component (html + javascript/angular/...) and add this component into my dynamics page layout (or somewhere in dynamic site to see my UI).
My project has Back-end as well which using web API and get Dynamics CRM metadata by Client Object Model and send result to the component.
I finished my backend API and client HTML component. But I don't know how to install my app and show my component into my Dynamic site.
Could anyone share me some tutorials or demos related this?
To get you started... the general way to add things into CRM is via unmanaged or managed Solutions: https://msdn.microsoft.com/en-us/library/gg334576.aspx.
The solution that contains everything is called the Default Solution. You can get to it by going to Settings > Customizations > Customize the System.
You can put your JavaScript code into one or more web resources. Then add them to a form and register them on the OnLoad, OnSave, or individual field OnChange events.
C# code goes in as a Plugin Assembly or a Custom Workflow Assembly. To register those, use the Plugin Registration Tool, which is available in the SDK.
Once your plugins are registered, you can add them to a solution and port them to other systems.
I want to create a mobile application website (m.example.com). before I make the web using CodeIgniter framework (CI). like where a great solution to add m.example.com in Framwork CodeIgniter ??
thanks for the response has been simply and solutions
I get your point, But I suggest you to this link as reference
Mobile and desktop web app with codeigniter
I want to integrate Google tag manager in Xamarin.
For iOS, there is a documentation on how to do so when consuming Google analytics SDK.
However, there is no documentation at all for Android integration.
Any suggestions?
I don't think you need any Xamarin documentation for using Tag Manager with Xamarin.
Tag manager comes with Google Play Services, so you just need the Xamarin component for Google Play Services:
https://components.xamarin.com/view/googleplayservices
The documentation for Tag manager is here:
https://developers.google.com/tag-manager/android/v4/
As #Andrei suggested, I used in Google play services, although the configuration was not so trivial..
I have created a sample project you can find here to demonstrate how to use Google tag manager in Android.
In short, after you install the SDK, you should call these lines in the your mainActivity class:
var tagmanager = TagManagerClass.GetInstance(this);
var pendingResult = _tagmanager.LoadContainerPreferNonDefault("GTM-XXXXXX",
Resource.Raw.gtm_analytics);
pendingResult.SetResultCallback(new TagMnagerResultCallback(), 2, TimeUnit.Seconds);
And after the callback has been called, you can fire your events like this:
_tagmanager.DataLayer.PushEvent("openScreen", DataLayer.MapOf("screenName", "testScreen"));
You might want to check my post. I explained how to do enhanced ecommerce and if you think could be valuable.
Summary is:
Add Google tag Manager component
Go to Google tag manager web admin, pick android code and go to latest version published. There you should see an option to download a binary file
Name binary as you want and place it inside Raw folder
In Setup or main android class, implement the basic wire up pointing to downloaded Binary in Raw file (This is key)
Create app view event as documentation display, in Tag Manager portal
add basic open screen tracking and watch real time in Google analytics. It takes few minutes to see the data, first time could take up to 24 hours depending on your account
Check my blog post for further details and let me know if still have questions and I will put together the full implementation.
Cheers