Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
e
os
eDrive
Commits
8960c879
Commit
8960c879
authored
Apr 14, 2020
by
Mohit Mali
Browse files
- Fixed `no Data usage control option visible in Oreo`
- Removed sharedUserId flag
parent
c33e3129
Pipeline
#49622
passed with stage
in 2 minutes and 41 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
app/src/main/AndroidManifest.xml
View file @
8960c879
...
...
@@ -7,20 +7,21 @@ http://www.gnu.org/licenses/gpl.html
-->
<!-- @author Vincent Bourgmayer -->
<manifest
xmlns:android=
"http://schemas.android.com/apk/res/android"
package=
"foundation.e.drive"
android:sharedUserId=
"android.uid.system"
>
package=
"foundation.e.drive"
>
<uses-permission
android:name=
"android.permission.INTERNET"
/>
<uses-permission
android:name=
"android.permission.READ_EXTERNAL_STORAGE"
/>
<uses-permission
android:name=
"android.permission.WRITE_EXTERNAL_STORAGE"
/>
<uses-permission
android:name=
"android.permission.ACCESS_NETWORK_STATE"
/>
<uses-permission
android:name=
"android.permission.RECEIVE_BOOT_COMPLETED"
/>
<!-- needed for PersistedJob -->
<uses-permission
android:name=
"android.permission.GET_ACCOUNTS"
/>
<uses-permission
android:name=
"android.permission.READ_SYNC_SETTINGS"
/>
<uses-permission
android:name=
"android.permission.RECEIVE_BOOT_COMPLETED"
/>
<!-- needed for PersistedJob -->
<uses-permission
android:name=
"android.permission.GET_ACCOUNTS"
/>
<uses-permission
android:name=
"android.permission.READ_SYNC_SETTINGS"
/>
<uses-permission
android:name=
"android.permission.KILL_BACKGROUND_PROCESSES"
/>
<permission
android:name=
"android.permission.FORCE_STOP_PACKAGES"
<permission
android:name=
"android.permission.FORCE_STOP_PACKAGES"
android:permissionGroup=
"android.permission-group.SYSTEM_TOOLS"
android:protectionLevel=
"signature"
/>
android:protectionLevel=
"signature"
/>
<application
android:allowBackup=
"true"
...
...
@@ -29,55 +30,64 @@ http://www.gnu.org/licenses/gpl.html
android:roundIcon=
"@mipmap/ic_eelo_round"
>
<!-- Providers -->
<provider
android:authorities=
"foundation.e.drive.providers.MediasSyncProvider"
android:name=
".providers.MediasSyncProvider"
android:
label=
"Pictures and
vide
os
"
android:
authorities=
"foundation.e.drive.providers.MediasSyncPro
vide
r
"
android:enabled=
"true"
android:exported=
"true"
/>
android:exported=
"true"
android:label=
"Pictures and videos"
/>
<provider
android:authorities=
"foundation.e.drive.providers.SettingsSyncProvider"
android:name=
".providers.SettingsSyncProvider"
android:
label=
"Application settings
"
android:
authorities=
"foundation.e.drive.providers.SettingsSyncProvider
"
android:enabled=
"true"
android:exported=
"true"
/>
android:exported=
"true"
android:label=
"Application settings"
/>
<!-- Services -->
<service
android:name=
".services.InitializerService"
<service
android:name=
".services.InitializerService"
android:enabled=
"true"
android:exported=
"true"
>
<intent-filter>
<action
android:name=
"drive.services.InitializerService"
/>
</intent-filter>
</service>
<service
android:name=
".services.ResetService"
<service
android:name=
".services.ResetService"
android:enabled=
"true"
android:exported=
"true"
>
<intent-filter>
<action
android:name=
"drive.services.ResetService"
/>
</intent-filter>
</service>
<service
android:name=
".jobs.ScannerJob"
<service
android:name=
".jobs.ScannerJob"
android:permission=
"android.permission.BIND_JOB_SERVICE"
/>
<service
android:name=
".services.ObserverService"
android:enabled=
"true"
/>
<service
android:name=
".services.OperationManagerService"
/>
<service
android:name=
".services.ObserverService"
android:enabled=
"true"
/>
<service
android:name=
".services.OperationManagerService"
/>
<!-- Receivers -->
<receiver
android:name=
".receivers.BootCompleteReceiver"
<receiver
android:name=
".receivers.BootCompleteReceiver"
android:enabled=
"true"
>
<intent-filter>
<action
android:name=
"android.intent.action.BOOT_COMPLETED"
/>
</intent-filter>
</receiver>
<receiver
android:name=
".receivers.BatteryStateReceiver"
android:enabled=
"true"
>
<receiver
android:name=
".receivers.BatteryStateReceiver"
android:enabled=
"true"
>
<intent-filter>
<action
android:name=
"android.intent.action.BATTERY_LOW"
/>
<action
android:name=
"android.intent.action.BATTERY_OKAY"
/>
<action
android:name=
"android.intent.action.BATTERY_LOW"
/>
<action
android:name=
"android.intent.action.BATTERY_OKAY"
/>
</intent-filter>
</receiver>
<receiver
android:name=
".receivers.PackageEventReceiver"
android:enabled=
"true"
>
<receiver
android:name=
".receivers.PackageEventReceiver"
android:enabled=
"true"
>
<intent-filter>
<action
android:name=
"android.intent.action.MY_PACKAGE_REPLACED"
/>
<action
android:name=
"android.intent.action.MY_PACKAGE_REPLACED"
/>
</intent-filter>
</receiver>
</application>
...
...
Write
Preview
Supports
Markdown
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