Can Adobe Target be integrated with Contentful somehow? - testing

Contentful only suggest Optimizely, but this is not an option for us.
Contentful - AB tests with Optimizely
Thank you in advance!

You should be able to use Adobe Target with Contentful. You will have to create an app for Adobe Target with App Framework to integrate it with Contentful since there is no app available in the Marketplace.

Related

Can we use a signle ionic-4 app for mobile and desktops

I am developing an ionic-4 app, Ionic provides cross platform apps but I am a bit confused and my confusion is can I use a single ionic-4 application for mobiles(e.g. Android and IOS) and desktops browsers(Chrome, firefox etc.) as website. Is it possible by using ionic version 4.
Yes, Ionic 4 provides a single code for the execution of multiple platforms.
Ionic Doc
here is help for you. You can check everything.
Yes, you can use Ionic for Android, IOS and Browser. Once the coding is done, you can add any platform to make its build. For example, if you add Android platform then you can take an Android build(APK).Before that you need to setup an environment for that . For example, you need Android studio for taking Android build and Xcode for taking IOS build. It's all depends on the platform that you use.
Please go through Ionic documentation and Youtube tutorials to get a correct picture.
Thank you

Passing $mixpanel_distinct_id to Branch.io in their Web integration

For iOS and Android Branch.io SDK's there's a way to pass the mixpanel_distinct_id.
Mixpanel have a Web integration too. How can this be done when integrating Branch for Web?
Joon from Branch here. The method setRequestMetadataKey is only available on mobile platforms as conversions such as install, open, reinstall, etc.. only occur in App.

How to navigate from one html page to another in IBM MobileFirst?

1)I need to navigate from one page to another in IBM mobile First app as soon as I click the button.
2)Is there any document that clearly explains how to develop an app using eclipse (IBM mobile first 8.0)?
Can anyone please help me
Eclipse Java EE IDE for Web Developers.
Version: Mars.2 Release (4.5.2)
Build id: 20160218-0600
Windows 7
1) To learn how to develop a hybrid Angular app in MobileFirst 8.0, please see this lab. There is no longer the MobileFirst hybrid, and will be moving toward Cordova, Ionic, Angular.
https://mobilefirstplatform.ibmcloud.com/labs/developers/8.0/intro/
2) To develop an app with eclipse in MobileFirst 8.0, please follow this blogpost. There's a plugin you can download from Eclipse marketplace.
https://mobilefirstplatform.ibmcloud.com/blog/2016/06/17/ibm-mobilefirst-studio-8-0-plugin-for-eclipse-now-available/
MobileFirst is a Single-page application (SPA).
There are several ways to navigate in a single-page application. Usually it will depend on the framework you are using to build your application such as jQuery, AngularJS, Ionic etc.
Simple Javascript worked for me
window.location("your html page path");

AIR Google Play Services library classes missing apk

I am working on a test app to test an ane I have built with Google Play Services included. I had things working fine, but recently I updated the version of the Google Play Services library I was using, and now when I built the project in Adobe Flash CC, it seems to be stripping out the Google Play Services classes from the apk. When I decompile the apk I can see they are missing. When I put back the old version of GPlay, I can see it doesn't strip them out.
This post mentions a tool within the AIR needs updating (dx.jar) and this post seems to have the same message. I did update that file but it did not fix the issue.
Thanks!
The problem will be with the AIR SDK. You need to update the dx.jar in your AIR SDK, I've logged an issue with Adobe about this but they haven't updated the build tools as yet so we have to do it manually:
Have a look here for the details: http://airnativeextensions.com/knowledgebase/tutorial/5
It's important that you have a recent version of the Android SDK installed and updated for this to work.
Also rather than packaging the Google Play Libraries into your ANE I suggest you use a shared ANE, like this one:
https://github.com/distriqt/ANE-googleplayservices
Otherwise you can cause conflicts with other ANE's that use the Google Play Library.

Google Cloud Messaging service in flex mobile project

I,m in process of developing GCM service in flex mobile project. I want to clear some things initialy.
1- I came up to some tutorials that help in achieving the task, but they require me to download their native extension (.ane file) and add it to the project lib and use it to achieve the task. what is this .ane file used for?
2- can i use the GCM service in flex mobile project without such .ane file?
kindly help
I suppose you need an ANE - unless Adobe extends flash.notifications one day to support Android too.
Az Alex said, you need an ANE because Adobe road map says that they will consentrate mainly on the Air itself and developers should build the extensions themselves... http://www.adobe.com/devnet/flashplatform/whitepapers/roadmap.html
for a GCM extension, I would suggest you to take a look at http://myappsnippet.com/gcm which supports custom notification icons and sounds...