Android Code Snippet List Device Features

Sub Name: GetDeviceFeatures

Description: Returns a list of the available features on the current device

B4X:
Dim p as Phone
Dim sb As StringBuilder
sb.Initialize
p.Shell("pm list features",Null,sb,Null)
MsgBox(sb.ToString,"Features")

Dependencies: Phone

Tags: device, features, properties
 
Top