Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
A
android_vendor_lineage
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Merge Requests
3
Merge Requests
3
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Analytics
Analytics
Code Review
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
e
os
android_vendor_lineage
Commits
48ce03f9
Commit
48ce03f9
authored
Jun 18, 2020
by
Romain Hunault
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'default-permissions' into 'v1-oreo'
Default permissions - maps and contacts See merge request
!33
parents
e955138a
2a11569b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
53 additions
and
0 deletions
+53
-0
config/common.mk
config/common.mk
+4
-0
config/permissions/eos-permissions.xml
config/permissions/eos-permissions.xml
+49
-0
No files found.
config/common.mk
View file @
48ce03f9
...
...
@@ -96,6 +96,10 @@ PRODUCT_COPY_FILES += \
vendor/lineage/config/permissions/org.lineageos.android.xml:system/etc/permissions/org.lineageos.android.xml
\
vendor/lineage/config/permissions/privapp-permissions-lineage.xml:system/etc/permissions/privapp-permissions-lineage.xml
# Pre-granted permissions
PRODUCT_COPY_FILES
+=
\
vendor/lineage/config/permissions/eos-permissions.xml:system/etc/default-permissions/eos-permissions.xml
# Include Lineage audio files
include
vendor/lineage/config/lineage_audio.mk
...
...
config/permissions/eos-permissions.xml
0 → 100644
View file @
48ce03f9
<?xml version='1.0' encoding='utf-8' standalone='yes' ?>
<!--
This file contains permissions to be granted by default. Default
permissions are granted to special platform components and to apps
that are approved to get default grants. The special components
are apps that are expected to work out-of-the-box as they provide
core use cases. Granting these permissions could prevent issues on
some ROMs or non-clean installations.
-->
<exceptions>
<exception
package=
"com.android.contacts"
>
<!-- Calendar -->
<permission
name=
"android.permission.READ_CALENDAR"
fixed=
"false"
/>
<permission
name=
"android.permission.WRITE_CALENDAR"
fixed=
"false"
/>
<!-- Contacts -->
<permission
name=
"android.permission.READ_CONTACTS"
fixed=
"false"
/>
<permission
name=
"android.permission.WRITE_CONTACTS"
fixed=
"false"
/>
<permission
name=
"android.permission.GET_ACCOUNTS"
fixed=
"false"
/>
<!-- Phone -->
<permission
name=
"android.permission.READ_PHONE_STATE"
fixed=
"false"
/>
<permission
name=
"android.permission.CALL_PHONE"
fixed=
"false"
/>
<permission
name=
"android.permission.READ_CALL_LOG"
fixed=
"false"
/>
<permission
name=
"android.permission.WRITE_CALL_LOG"
fixed=
"false"
/>
<permission
name=
"android.permission.ADD_VOICEMAIL"
fixed=
"false"
/>
<permission
name=
"android.permission.USE_SIP"
fixed=
"false"
/>
<permission
name=
"android.permission.PROCESS_OUTGOING_CALLS"
fixed=
"false"
/>
<!-- SMS -->
<permission
name=
"android.permission.SEND_SMS "
fixed=
"false"
/>
<permission
name=
"android.permission.RECEIVE_SMS"
fixed=
"false"
/>
<permission
name=
"android.permission.READ_SMS"
fixed=
"false"
/>
<permission
name=
"android.permission.RECEIVE_WAP_PUSH"
fixed=
"false"
/>
<permission
name=
"android.permission.RECEIVE_MMS"
fixed=
"false"
/>
<permission
name=
"android.permission.READ_CELL_BROADCASTS"
fixed=
"false"
/>
<!-- Storage -->
<permission
name=
"android.permission.READ_EXTERNAL_STORAGE"
fixed=
"false"
/>
<permission
name=
"android.permission.WRITE_EXTERNAL_STORAGE"
fixed=
"false"
/>
</exception>
<exception
package=
"com.generalmagic.magicearth"
>
<!-- Location -->
<permission
name=
"android.permission.ACCESS_FINE_LOCATION"
fixed=
"false"
/>
<permission
name=
"android.permission.ACCESS_COARSE_LOCATION"
fixed=
"false"
/>
</exception>
</exceptions>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment