Home > The Newbie Zone > Questions and Answers

[MOBILE]What is a "Generic Android" Device? (7)


12-28-2014 06:55 AM #1 phlong (Member)
[MOBILE]What is a "Generic Android" Device?

I had the idea to display the Phone Modell parameter on my next landing page. However, I checked the parameter stats in Voluum and saw this:
Click image for larger version. 

Name:	h44T4nJ.png 
Views:	69 
Size:	18.4 KB 
ID:	5038
What does Generic Android mean? I don't think it's appealling for the visitor if he reads something like "Hello Generic Android User". I couldn't find anything about "Generic Android" on Google.

Thanks!

-Phlong


12-28-2014 08:19 AM #2 zeno (Administrator)

It means that no specific device could be identified in the database used.

Not uncommon in countries where they have lots of random handsets, especially knock-offs. The Android market is very fragmented (you're unlikely to ever get "Generic iOS device").


12-28-2014 08:34 AM #3 phlong (Member)

I understand, ok. I'll test and see how it has an impact on the user's behaviour on the LP.
Thanks zeno!


12-28-2014 12:15 PM #4 bbrock32 (Administrator)

There isn't much to do about these so just ignore for now.


12-28-2014 01:05 PM #5 archieaff (Member)

You could use an "if" statement on your landing page to show different text to Generic Android users (for example, "Hello Android User" instead of "Hello Generic Android User").


12-28-2014 01:15 PM #6 phlong (Member)

Quote Originally Posted by archieaff View Post
You could use an "if" statement on your landing page to show different text to Generic Android users (for example, "Hello Android User" instead of "Hello Generic Android User").
Very good idea! I'll take a look into this definitely.


12-28-2014 04:53 PM #7 craigm (Veteran Member)

Code:
		<script>
			function getURLParameter(name) {
			    var str = decodeURI(
			        (RegExp(name + '=' + '(.+?)(&|$)').exec(location.search)||[,null])[1] || ''
			    );

			    if(str.substring(0,7).localeCompare('Generic') == 0){
			    	return 'Android';
			    }

			    return str;
			}
		</script>


Home > The Newbie Zone > Questions and Answers