We detected user data transmitted off device that you have not disclosed in your app’s Data safety form as user data collected.
You must ensure that your app’s Data safety section accurately reflects your app’s data collection, sharing, and handling practices. This includes data collected and handled through any third-party libraries or SDKs used in your app. When available, we’ve included details on SDKs that contain code similar to the code in your APK that may be sending user data off device. You can check if your app uses any of these SDKs, but note that this list of SDKs may not be exhaustive. You must review and account for all data collected and shared by your app.
Your app may face additional enforcement actions, if you do not resolve this issue by March 11, 2023. Issue details
We found an issue in the following area(s):
SPLIT_BUNDLE 2: Policy Declaration - Data Safety Section: Personal Info Data Type - Email Address
Action required: Submit an updated app for review Here's what to do to help get your app on Google Play:
Make sure to read the applicable policies or requirements listed below:
Data safety section in Google Play User Data policy
Make appropriate changes to your app (if possible), and be sure to address the issue described above. You may also want to check your app's store listing for compliance, if applicable.
Double-check that your app is compliant with all other Developer Program Policies. If you made changes to your app bundle, store listing, or APK, please sign in to your Play Console and submit the update(s).
EDIT
I never collected any type of data nor used any ad framework,
but in one class I used :->
binding.sendFA.setOnClickListener {
val feedbackMsg = binding.feedbackMsgFA.text.toString() + "\n" + binding.emailFA.text.toString()
val subject = binding.topicFA.text.toString()
val userName = "123456789@gmail.com" //changed
val pass = "123456789" //changed
val cm = this.getSystemService(Context.CONNECTIVITY_SERVICE) as ConnectivityManager
if(feedbackMsg.isNotEmpty() && subject.isNotEmpty() && (cm.activeNetworkInfo?.isConnectedOrConnecting == true)){
Thread{
try {
///
//
/
.
}}}
is I have to re-update my app and remove this function OR I have to change my data safety form.
any help would be highly appreciated.