My app has only one declared permission in the manifest, and that is for internet to display ads.
<uses-permission
android:name = "android.permission.INTERNET" />
For some reason, the play store gives the message that my app needs permission for identity and contacts:
Those are the permissions shown on the play store website. When downloading the app on a phone it only says it needs identity. My question is, why are all of these permissions stated, even though all I am using is Internet for the ads?
Thanks so much,
Ruchir
EDIT:
Build.Gradle file:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "com.CurlyBrace.ruchir.TileTap"
minSdkVersion 16
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
compile 'com.google.android.gms:play-services:8.3.0'
}
PS: Just saying I don't know much about what this file does, so an explanation would also be nice!