I have a watch view app that says I'm requesting permissions for contacts ... but I don’t know. I can’t understand why this is ...
I have billing in the application and I get access to data that matches Google ... and also Google Analytics.
Here is a list of permissions in my manifest:
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="com.android.vending.BILLING" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.READ_INTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="com.google.android.permission.PROVIDE_BACKGROUND" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
Here is a list of the Play Store permissions for this application:
In-app purchases
Identity
find accounts on the device
Contacts
find accounts on the device
Location
precise location (GPS and network-based)
approximate location (network-based)
Photos/Media/Files
modify or delete the contents of your USB storage
read the contents of your USB storage
Storage
modify or delete the contents of your USB storage
read the contents of your USB storage
Other
receive data from Internet
full network access
view network connections
run at startup
prevent device from sleeping
use accounts on the device
Application Dependencies:
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
wearApp project(':Wearable')
testCompile 'junit:junit:4.12'
compile 'com.google.android.support:wearable:1.3.0'
compile 'com.google.android.gms:play-services:8.3.0'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
compile 'com.google.android.gms:play-services-analytics:8.3.0'
compile files('libs/httpclient-4.5.1.jar')
compile files('libs/apache-httpcomponents-httpclient.jar')
compile files('libs/apache-httpcomponents-httpclient-cache.jar')
compile files('libs/apache-httpcomponents-httpcore.jar')
compile files('libs/apache-httpcomponents-httpmime.jar')
compile files('libs/GoogleConversionTrackingSdk-2.2.4.jar')
compile files('libs/feedback_v6.jar')
}
Dependence on wear:
dependencies {
compile 'com.google.android.support:wearable:1.3.0'
compile 'com.google.android.gms:play-services:8.3.0'
compile 'com.android.support:support-v13:23.1.0'
compile 'com.google.android.gms:play-services-analytics:8.3.0'
}
source
share