用户获取未包含在清单

时间:2015-06-04 11:09:38

标签: android permissions

我刚刚发布了一个在其清单文件中有两个权限的应用(用于展示横幅广告)。 “android.permission.INTERNET”和“android.permission.ACCESS_NETWORK_STATE”。为了测试我尝试从游戏市场安装我的应用程序,发现该应用程序需要身份,位置,照片/媒体/文件!我的清单文件中没有这样的权限,我不需要它们。尝试使用类似manifest.xml(互联网,网络状态)的其他应用程序,他们正在安装,没有任何特殊权限。 考虑到新的内容分级证书系统,我可能会遇到问题,因为在问卷中我标记了不需要用户位置。 为什么它需要我没有要求的权限? 我正在使用android studio和build.gradle:

 android {
    compileSdkVersion 22
    buildToolsVersion "22.0.1"

    defaultConfig {
        applicationId "com.appName"
        minSdkVersion 15
        targetSdkVersion 22
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

repositories {
    maven {
        url "https://jitpack.io"
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.github.PhilJay:MPAndroidChart:v2.1.0'
    compile 'com.melnykov:floatingactionbutton:1.3.0'
    compile 'com.mcxiaoke.volley:library:1.0.+'
    compile 'com.nispok:snackbar:2.10.2'
    compile 'com.android.support:cardview-v7:22.2.0'
    compile 'com.android.support:recyclerview-v7:22.2.0'
    compile 'uk.co.chrisjenx:calligraphy:2.1.0'
    compile 'com.google.android.gms:play-services:7.5.0'
    compile 'com.android.support:appcompat-v7:22.2.0'
    compile 'com.github.markushi:android-ui:1.2'
    compile 'com.afollestad:material-dialogs:0.7.3.1'
}

的Manifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          xmlns:tools="http://schemas.android.com/tools"
          package="com.AppPackage" >

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

    <application
        android:name=".MyApplication"
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme"
        >
        <activity
            android:name=".MainActivity"

            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.google.android.gms.ads.AdActivity"
            android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" />

        <meta-data
            android:name="com.google.android.gms.version"
            android:value="@integer/google_play_services_version" />

        <activity android:name=".Prefs_Activity" >
        </activity>
        <activity
            android:name=".Guide_Activity"
            android:label="@string/title_activity_" >
        </activity>
        <activity
            android:name=".Picker_Activity"
            android:label="@string/title_activity_" >
        </activity>
    </application>

</manifest>

更新

感谢CommonsWare的回答,我找到了“manifest-merger-release-report.txt”,以及谁使用这些权限。这些是地图和钱包API。 我已将游戏服务与此分开:

    compile 'com.google.android.gms:play-services:7.5.0'

到此(我现在需要的全部):

    compile 'com.google.android.gms:play-services-analytics:7.5.0'
    compile 'com.google.android.gms:play-services-plus:7.5.0'
    compile 'com.google.android.gms:play-services-ads:7.5.0'
    compile 'com.google.android.gms:play-services-appindexing:7.5.0'

结果:

  • 删除了不必要的权限
  • apk尺寸缩小至500kb
  • 开始认真对待API分离

Play Market apk update screenshot

1 个答案:

答案 0 :(得分:9)

  

为什么它需要我没有问过的权限?

因为您正在加载11个库,并且其中一个或多个要求这些权限。特别是,您要加载com.google.android.gms:play-services,这需要很多权限。例如,Play服务具有融合位置API和Google地图,两者都需要位置数据。

清单合并报告应写入您项目或模块的build/outputs/apk/(例如,在传统Android Studio项目的app/中)。您可以使用它来尝试确定其他权限的来源。然后,停止使用这些库,或切换到其他东西。对于Play服务,而不是加载所有 Play服务,只加载您需要的部分。 the documentation中介绍了这一点(请参阅“将API选择性地编译到可执行文件中”部分)。