OSDN Git Service

docs: Fix return info for support lib checkSelfPermission()
authorAndrew Solovay <asolovay@google.com>
Wed, 19 Aug 2015 20:44:56 +0000 (13:44 -0700)
committerAndrew Solovay <asolovay@google.com>
Wed, 19 Aug 2015 20:44:56 +0000 (13:44 -0700)
Docs incorrectly said the method returns a boolean. In fact,
it (like the framework version) returns an int constant.

See first comment for doc stage location.

bug: 23331110
Change-Id: I2b4ccdc56dc0cff414c4d21e3916e8e7a0b0e909

docs/html/preview/features/runtime-permissions.jd

index 8ab7619..62e49b9 100644 (file)
@@ -916,8 +916,11 @@ $ adb pm revoke &lt;package_name&gt; &lt;permission_name&gt;
   </dt>
 
   <dd>
-    Returns <code>true</code> if the app has the specified permission, whether
-    or not the device is using the M Preview.
+    Returns {@link android.content.pm.PackageManager#PERMISSION_GRANTED
+    PERMISSION_GRANTED} if the app has the specified permission, whether
+    or not the device is using the M Preview. If the app does not have the
+    specified permission, returns {@link
+    android.content.pm.PackageManager#PERMISSION_DENIED PERMISSION_DENIED}.
   </dd>
 
   <dt>