So my app is for free, does not use inapp billing, does not use any Google Dev API whatsoever. I still got warning like this:
These are all dependences I use:
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:support-v13:28.0.0'
implementation 'com.android.support:design:28.0.0'
implementation 'com.android.support:customtabs:28.0.0'
implementation 'com.android.support:multidex:1.0.3'
implementation 'com.android.support:preference-v7:28.0.0'
implementation 'com.android.support:appcompat-v7:28.0.0'
}
Its including all libraries projects I use, all together, there is nothing else only this. Which one of them can cause this warning? Or is it false positive?
And these are permissions my app uses:
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.READ_CALENDAR" />
I do not use internet access, no API key, no developer API, no remote server communication, no online communication whatsoever, no in-app billing.