Fixed
Status Update
Comments
no...@gmail.com <no...@gmail.com> #2
It seems that it's an Android Studio/Android Gradle plugin issue. "installreferrer:1.1" after added to a project automatically adds these permissions:
* android.permission.READ_EXTERNAL_STORAGE
* android.permission.READ_PHONE_STATE
* android.permission.WRITE_EXTERNAL_STORAGE
although they are missing from library's AndroidManifest.
When inspecting in "Merged manifest" tool, "jump to declaration" jumps to applications debug AndroidManifest.
When clicking "remove" from "Merged manifest" it inserts:
```
<null
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
tools:node="remove" />
```
Android Studio: 3.5.3
Android Gradle plugin: 3.5.3
macOS 10.14.6
* android.permission.READ_EXTERNAL_STORAGE
* android.permission.READ_PHONE_STATE
* android.permission.WRITE_EXTERNAL_STORAGE
although they are missing from library's AndroidManifest.
When inspecting in "Merged manifest" tool, "jump to declaration" jumps to applications debug AndroidManifest.
When clicking "remove" from "Merged manifest" it inserts:
```
<null
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
tools:node="remove" />
```
Android Studio: 3.5.3
Android Gradle plugin: 3.5.3
macOS 10.14.6
[Deleted User] <[Deleted User]> #3
A workaround, while waiting for an official fix, is to add this to your app's manifest:
<!--https://issuetracker.google.com/issues/146115244 -->
<!-- Remove unnecessary permissions added by install referrer -->
<uses-permission
android:name="android.permission.READ_PHONE_STATE"
tools:node="remove" />
<uses-permission
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
tools:node="remove" />
<uses-permission
android:name="android.permission.READ_EXTERNAL_STORAGE"
tools:node="remove" />
Of course, you shouldn't include a "remove" entry for any of these permissions which your app is already using and needs.
<!--
<!-- Remove unnecessary permissions added by install referrer -->
<uses-permission
android:name="android.permission.READ_PHONE_STATE"
tools:node="remove" />
<uses-permission
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
tools:node="remove" />
<uses-permission
android:name="android.permission.READ_EXTERNAL_STORAGE"
tools:node="remove" />
Of course, you shouldn't include a "remove" entry for any of these permissions which your app is already using and needs.
dl...@atlassian.com <dl...@atlassian.com> #4
The reason the library is adding READ_PHONE_STATE is because it doesn't have <uses-sdk> in its manifest anymore (in 1.0 it defined minSdk=8 and targetSdk=22). Because it doesn't define a targetSdk, the tools assume the targetSdk=1.
A targetSdk=1 causes the tools to automatically add READ_PHONE_STATE. You can see the effects in the manifest merger logs:
uses-permission#android.permission.READ_PHONE_STATE
IMPLIED from /Users/<redacted>/trello-app/src/debug/AndroidManifest.xml:2:1-13:12 reason: com.android.installreferrer has a targetSdkVersion < 4
I've run into this issue before with another library, if you want another example:https://github.com/JakeWharton/ProcessPhoenix/issues/9
A targetSdk=1 causes the tools to automatically add READ_PHONE_STATE. You can see the effects in the manifest merger logs:
uses-permission#android.permission.READ_PHONE_STATE
IMPLIED from /Users/<redacted>/trello-app/src/debug/AndroidManifest.xml:2:1-13:12 reason: com.android.installreferrer has a targetSdkVersion < 4
I've run into this issue before with another library, if you want another example:
ja...@okcupid.com <ja...@okcupid.com> #5
How do you solve for it then? Are you using downgraded version 1.0 or overriding permission in manifest?
dl...@atlassian.com <dl...@atlassian.com> #6
We are simply sticking with 1.0 for the time being, but if we had to update, we'd override the permission in the manifest.
on...@obss.tech <on...@obss.tech> #7
It's look like nobody from google interest with this issue. So why do you remove a working useful solution (install_referrer intent) and try to chance it with non-testable, problematic library?
al...@google.com <al...@google.com>
ch...@google.com <ch...@google.com>
Ja...@trader.ca <Ja...@trader.ca> #8
Note: this is still an issue in the 1.1.1 release, which is on
li...@google.com <li...@google.com>
vi...@google.com <vi...@google.com> #10
Assigning this to jaslack@ since I have moved teams.
li...@google.com <li...@google.com> #11
Status update: the new artifacts were approved and we will soon push 1.1.2 with the fix.
zs...@gmail.com <zs...@gmail.com> #12
I can confirm that it's fixed in 1.1.2. Thanks for the reporter and the team for the fix.
ja...@google.com <ja...@google.com> #13
Thanks. Closing as fixed. Thanks for verifying.
Description
According to blog post (
Because of that we have to use this Play Install Referrer Library.
But I faced with two problems,
1) We cannot test it, only change is upload to google play. Could you add some test functionalities and share how to in documantation?
2) the latest version of the library (v1.1) automatically add an permission android.permission.READ_PHONE_STATE and it warns us on google play when want to upload. Is this permission really needed? Could you remove it?
Thanks,
Have a nice day