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