Android App sharedUserid

Hi

In the VIM1S System Permissions for APP doc it says

Declare UID as a System Process

The third-party application’s AndroidManifest.xml must include:
android:sharedUserid=“android.uid.system”

when i add this to my AndroidManifestFile:

<application
android:sharedUserid=“android.uid.system”
android:allowBackup=“true”
android:icon=“@mipmap/ic_launcher”

Android studio gives me the following error:

ERROR: /app/src/main/AndroidManifest.xml:19:5-67:19: AAPT: error: attribute android:sharedUserid not found.

Does this attribute have to go in a special place or something?

Many thanks

@billysdomain

Placed within the manifest tag, not the application tag:
As follows:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns: android=" http://schemas.android.com/apk/res/android "
android:sharedUserId="android.uid.system"
xmlns:tools=" http://schemas.android.com/tools ">
......
</manifest>

Thanks, that’s the ticket