Creating a smart android application banner

Is there any solution for Android devices like iOS 6 smart bank?

Here is the code for the smart banner

<meta name="apple-itunes-app" content="app-id=311507490, affiliate-data=partnerId=30&siteID=k1CkFsOh4nQ"/> 
+46
android android-layout ios ios6 android-widget
Oct 31
source share
3 answers

I needed this, so I created a jquery plugin to simulate a smart banner for Android and older versions of iOS.

http://jasny.github.com/jquery.smartbanner/#android

+77
Nov 09
source share

Starting with Chrome 44 Beta, you can click your application in Chrome for Android using your own application installation banner on your website. There are several criteria that must be met to enable it:

  • You will need a web application manifest file
  • You will need to serve your website using https
  • A user visited your site twice in two separate days in two weeks.

Read more about this in the official blog post from Google .

+16
Aug 17 '15 at 9:30
source share

You add the Google login button to your page with a special option, and then users can log in and specify which device will install your application directly from your site.

This is the most "officially supported" implementation that I know of:

https://developers.google.com/identity/sign-in/web/android-app-installs

From the link:

By adding the Google login button to your website, you can automatically offer your users to download the Android application on the air to their Android devices. To enable this feature, you must use the same Google Developers Console project for your clients on the Internet and Android, as well as configure the login button for the web application.

Your web application should use the Google login button to invite users of your website to download your application the first time they log in. This feature is activated by adding the apppackagename parameter to your login button.

+1
Jul 15 '15 at 3:00
source share



All Articles