Method: AppInfo::Android#tablet?

Defined in:
lib/app_info/android.rb

#tablet?Boolean

TODO:

find a way to detect, no way!

Returns false always false.



59
60
61
62
63
64
65
66
# File 'lib/app_info/android.rb', line 59

def tablet?
  # Not works!
  # resource.first_package
  #         .entries('bool')
  #         .select{|e| e.name == 'isTablet' }
  #         .size >= 1
  false
end