Gboard integeration with a PWA? - progressive-web-apps

How do one integerate Gboard with a progressive web app.
My PWA is a chatting app, and I wanted to use the built in GBoard gifs and sticker into it.
Is it possible to do so, and how to do it ?

Related

How to load a flutter web app from Webflow?

I'm a flutter dev(switched to flutter from Native mobile apps), trying to build a full on website, so decided to build a hybrid of Flutter + Webflow - marketing home page in Webflow (because I've heard flutter web is not the best for SEO) and the core product pages in flutter.
When tapping on a link in the top menu on home page, it should open the web app built in flutter.
(there'll be a firebase authentication layer in between as well, and if it's an authenticated user, it can directly go to the flutter web app, without showing the home page).
I'm new to web development, so my knowledge in web is very limited. Looking for advice on how to implement it! Is it easy(or stupid)?

Adobe AIR Facebook login setup

I need to implement facebook login in Adobe AIR app for Desktop/Mobile.
I saw some docs on the code required for this.
My concern is, which platform should be selected in facebook apps console. Is it web ? Then what should be the web urls & where to place them ?
Well if you are building a mobile app, then you might want to select Android or iOS depending on the platform. If you are building the same app for both platforms then select any one of those and later under settings of your app dashboard you can click on Add Platform and add the other one. If your app has a canvas presence then you can add that as well later on. Regardless of what you pick initially, you can always add/edit platforms on your app dashboard.

Using google analytics for my iphone app?

I have a native iPhone app that is really only a UIWebView of a web application. I am planning on including google web analytics on the web app to track how mobile app users are using the application.
Are there any issues with this that you can see? Of course I won't get crash data, but I'm only looking for the number of UU's, page views, and clicks off the page.
Google Analytics for web should do fine. The problem is if your app is just an UIWebView, it'll probably be reject by Apple.

integrate app with native facebook iOS without using an iOS app

Im wondering if its possible to link my app with the native facebook iphone-app without using iOS at all.
It was pretty easy to create a mobile version and connect it with the m.facebook.com (so it appears in the broswer) through the Developer > Mobile Web URL but it doesnt work/recognize with the native app of facebook.
Is there a way to connect the native iOS FB to my app without creating an app? So it redirects automatically to the browser?
Im trying to avoid to create an iOS app.
Thanks a lot!
If the Application is linked to in news story or post then the App will open in in a browser.
For full integration you'll need a App.
(I don't have a iOS app to test, only pure web app and after posting the apps.facebook.com link to a wall, that link in App opened in the in built web browser).

It is possible to develop a facebook application using PhoneGap?

Basically, I'm doing some thesis.
A facebook application that is playable on Mobile Devices.
The idea is,
1. I'll create an application.
2. It will be playable on Facebook. http://apps.facebook.com/[name]
3. It will be accessible and playable on Mobile Web Browser through http://apps.facebook.com/[name]
If you have any idea on developing an application on facebook that is playable on Mobile Web Browser as well. It will be much appreciated if you shared it with me.
Things that I've researched so far:
1. Not all flash game are playable on Mobile Devices.
Flash-lite can't handle all apps, like Farmville.
2. Server-side games work pretty well. Mafia Wars and the like..
Solution I think so far:
HTML5 Canvas.
Problem:
I don't know what kind of framework that will work pretty well for the Desktop browser and Mobile Web Browser as well.
Thanks for reading.. ><
You can't run game or any other mobile web app on url http://apps.facebook.com/[name] because facebook will load you app in iframe and currenty facebook layout when displaying canvas apps is't made for phones only desktop.
I had the same problem recentry but it wasn't the game but some forum like app. My solution was to have the mobile app on domain myapp.com and when it's load I detect if device is mobile or desktop.
If it's a desktop browser I redirect user to fb canvas app on http://apps.facebook.com/name which runs the same app from the same domain myapp.com but uses different visual templates for displaying it self.
And if it's a mobile phone I leave user on myapp.com and display app with visual templates for mobile version.
So I have same app with two visual interfaces, one for desktop that runs inside facebook and one on mobile. And mobile version uses facebook connect to login user. Database in background is the same and basically everything is the same except interface.
And it work really well.