今天,有一条消息出现在我的一个Android应用程序的Google Play中,该消息违反了Google的SMS或“通话记录”政策。
但是该应用只是图像和文本的简单列表视图,从来没有询问过权限!
这是我的清单:
<?xml version="1.0" encoding="utf-8"?>
<application
android:allowBackup="false"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".AesirActivity" />
<activity android:name=".SingleitemView" />
<activity android:name=".VanirActivity" />
<activity android:name=".BytostiActivity" />
</application>
我不了解发生了什么事,因为我未在应用中使用任何短信或电话。
gradle的依赖项:
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}