Merge change 483 into donut
* changes: API_CHANGE: external_storage: Add SDCARD_WRITE permission with associated strings
This commit is contained in:
@@ -848,6 +848,17 @@
|
|||||||
visibility="public"
|
visibility="public"
|
||||||
>
|
>
|
||||||
</field>
|
</field>
|
||||||
|
<field name="SDCARD_WRITE"
|
||||||
|
type="java.lang.String"
|
||||||
|
transient="false"
|
||||||
|
volatile="false"
|
||||||
|
value=""android.permission.SDCARD_WRITE""
|
||||||
|
static="true"
|
||||||
|
final="true"
|
||||||
|
deprecated="not deprecated"
|
||||||
|
visibility="public"
|
||||||
|
>
|
||||||
|
</field>
|
||||||
<field name="SEND_SMS"
|
<field name="SEND_SMS"
|
||||||
type="java.lang.String"
|
type="java.lang.String"
|
||||||
transient="false"
|
transient="false"
|
||||||
@@ -1283,6 +1294,17 @@
|
|||||||
visibility="public"
|
visibility="public"
|
||||||
>
|
>
|
||||||
</field>
|
</field>
|
||||||
|
<field name="STORAGE"
|
||||||
|
type="java.lang.String"
|
||||||
|
transient="false"
|
||||||
|
volatile="false"
|
||||||
|
value=""android.permission-group.STORAGE""
|
||||||
|
static="true"
|
||||||
|
final="true"
|
||||||
|
deprecated="not deprecated"
|
||||||
|
visibility="public"
|
||||||
|
>
|
||||||
|
</field>
|
||||||
<field name="SYSTEM_TOOLS"
|
<field name="SYSTEM_TOOLS"
|
||||||
type="java.lang.String"
|
type="java.lang.String"
|
||||||
transient="false"
|
transient="false"
|
||||||
@@ -58025,7 +58047,7 @@
|
|||||||
type="float"
|
type="float"
|
||||||
transient="false"
|
transient="false"
|
||||||
volatile="false"
|
volatile="false"
|
||||||
value="0.0010f"
|
value="0.001f"
|
||||||
static="true"
|
static="true"
|
||||||
final="true"
|
final="true"
|
||||||
deprecated="not deprecated"
|
deprecated="not deprecated"
|
||||||
|
|||||||
@@ -366,6 +366,23 @@
|
|||||||
android:label="@string/permlab_readPhoneState"
|
android:label="@string/permlab_readPhoneState"
|
||||||
android:description="@string/permdesc_readPhoneState" />
|
android:description="@string/permdesc_readPhoneState" />
|
||||||
|
|
||||||
|
<!-- ================================== -->
|
||||||
|
<!-- Permissions for sdcard interaction -->
|
||||||
|
<!-- ================================== -->
|
||||||
|
<eat-comment />
|
||||||
|
|
||||||
|
<!-- Group of permissions that are related to SD card access. -->
|
||||||
|
<permission-group android:name="android.permission-group.STORAGE"
|
||||||
|
android:label="@string/permgrouplab_storage"
|
||||||
|
android:description="@string/permgroupdesc_storage" />
|
||||||
|
|
||||||
|
<!-- Allows an application to write to the SD card -->
|
||||||
|
<permission android:name="android.permission.SDCARD_WRITE"
|
||||||
|
android:permissionGroup="android.permission-group.STORAGE"
|
||||||
|
android:label="@string/permlab_sdcardWrite"
|
||||||
|
android:description="@string/permdesc_sdcardWrite"
|
||||||
|
android:protectionLevel="normal" />
|
||||||
|
|
||||||
<!-- ============================================ -->
|
<!-- ============================================ -->
|
||||||
<!-- Permissions for low-level system interaction -->
|
<!-- Permissions for low-level system interaction -->
|
||||||
<!-- ============================================ -->
|
<!-- ============================================ -->
|
||||||
|
|||||||
@@ -335,6 +335,11 @@
|
|||||||
<string name="permgroupdesc_developmentTools">Features only needed for
|
<string name="permgroupdesc_developmentTools">Features only needed for
|
||||||
application developers.</string>
|
application developers.</string>
|
||||||
|
|
||||||
|
<!-- Title of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
|
||||||
|
<string name="permgrouplab_storage">Storage</string>
|
||||||
|
<!-- Description of a category of application permissions, listed so the user can choose whether they want to allow the application to do this. -->
|
||||||
|
<string name="permgroupdesc_storage">Access the SD card.</string>
|
||||||
|
|
||||||
<!-- Permissions -->
|
<!-- Permissions -->
|
||||||
|
|
||||||
<!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
|
<!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
|
||||||
@@ -1045,6 +1050,11 @@
|
|||||||
<string name="permdesc_writeDictionary">Allows an application to write new words into the
|
<string name="permdesc_writeDictionary">Allows an application to write new words into the
|
||||||
user dictionary.</string>
|
user dictionary.</string>
|
||||||
|
|
||||||
|
<!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
|
||||||
|
<string name="permlab_sdcardWrite">write to SD card</string>
|
||||||
|
<!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
|
||||||
|
<string name="permdesc_sdcardWrite">Allows an application to write to the SD card.</string>
|
||||||
|
|
||||||
<!-- The order of these is important, don't reorder without changing Contacts.java --> <skip />
|
<!-- The order of these is important, don't reorder without changing Contacts.java --> <skip />
|
||||||
<!-- Phone number types from android.provider.Contacts. This could be used when adding a new phone number for a contact, for example. -->
|
<!-- Phone number types from android.provider.Contacts. This could be used when adding a new phone number for a contact, for example. -->
|
||||||
<string-array name="phoneTypes">
|
<string-array name="phoneTypes">
|
||||||
|
|||||||
@@ -54,6 +54,10 @@
|
|||||||
<group gid="log" />
|
<group gid="log" />
|
||||||
</permission>
|
</permission>
|
||||||
|
|
||||||
|
<permission name="android.permission.SDCARD_WRITE" >
|
||||||
|
<group gid="sdcard_rw" />
|
||||||
|
</permission>
|
||||||
|
|
||||||
<!-- The group that /cache belongs to, linked to the permission
|
<!-- The group that /cache belongs to, linked to the permission
|
||||||
set on the applications that can access /cache -->
|
set on the applications that can access /cache -->
|
||||||
<permission name="android.permission.ACCESS_CACHE_FILESYSTEM" >
|
<permission name="android.permission.ACCESS_CACHE_FILESYSTEM" >
|
||||||
|
|||||||
Reference in New Issue
Block a user