When adding installreferrer 1.1, Google automatically plus the following permissions to AndroidManifest.xml file. - android.permission.READ_PHONE_STATE
- android.permission.WRITE_EXTERNAL_STORAGE
- android.permission.READ_EXTERNAL_STORAGE
Google Play Install Referrer library may cause the issue, so if your game doesn’t use the relevant permissions, add the tools:node=”remove” settings as follows. If Google updates the relevant libraries, Solution Architect part will let you know. | <uses-permission android:name="android.permission.READ_PHONE_STATE" tools:node="remove" /> <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" tools:node="remove" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" tools:node="remove" /> |
If the error “Namespace ‘tools’ is not bound..” is occurred after adding the above settings, add xmlns:tools="http://schemas.android.com/tools" in <manifest> tag.
|