Skip to content Skip to sidebar Skip to footer

Can I Query The Android Market To Return Apps With Specific Permissions?

Is it possible to query the Android Market to return apps with a specific set of permissions? This would be a HUGE help to me. I've heard of an open-source API project in the work

Solution 1:

You got it right.. http://groups.google.com/group/android-market-api helps you to get the set of permission. The structure will be as following text:

Response : app {
  id: 
  title: 
  appType: 
  creator: 
  version: 
  rating: 
  ratingsCount: 
  ExtendedInfo {
    description: 
    downloadsCount: 
    permissionId: 
    permissionId: 
    installSize: 
    packageName: 
    category: 
    downloadsCountText: 
    contactWebsite:
    screenshotsCount: 
    promoText: 
    19: 
    28: 
    36: 
    37: 
  }
  creatorId: 
  packageName: 
  versionCode: 
}

Post a Comment for "Can I Query The Android Market To Return Apps With Specific Permissions?"