Page 1 of 1

"Required" or "Used" options in Android setting [solved]

Posted: Sun May 22, 2016 1:01 pm
by Jellobus
Hi all, :D

What is exactly difference between "Required" and "Used" in the Application setting?

Best,

Louis

Re: "Required" or "Used" options in Android setting

Posted: Mon May 23, 2016 10:05 am
by MaxV
Declares a single hardware or software feature that is used by the application.
The purpose of a <uses-feature> declaration is to inform any external entity of the set of hardware and software features on which your application depends. The element offers a required attribute that lets you specify whether your application requires and cannot function without the declared feature, or whether it prefers to have the feature but can function without it. Because feature support can vary across Android devices, the <uses-feature> element serves an important role in letting an application describe the device-variable features that it uses

Re: "Required" or "Used" options in Android setting

Posted: Wed May 25, 2016 2:36 am
by Jellobus
Hi MaxV,

thanks alot for the detailed explanation.
the app is working only on the smartphone and ipod touch with touchscreens. so would it be better to choose "required" for the touchscreen rather than "used" ?

Cheers,

Louis

Re: "Required" or "Used" options in Android setting

Posted: Wed May 25, 2016 11:29 am
by MaxV
Touchscreen means that for your app using a mouse or mousepad is not the same.
Android device without touchscreen are really few, however they exists, look here: http://www.amazon.com/OEM-MK802-Android ... B008H3B736
So in the end, it is usually not needed.

Re: "Required" or "Used" options in Android setting[solved]

Posted: Thu May 26, 2016 7:30 am
by Jellobus
Hi MaxV,

That's very valuable information :) I never knew that Android device without touchscreen existed!

Thank a lot!

Louis