despite the fact that my app has nothing to do with users data security (a simple credit calculation app), every time I publish it on the Google Play console, I get this message:
build.gradle(:app):
plugins {
id 'com.android.application'
}
android {
namespace '***************************'
compileSdk 34
defaultConfig {
applicationId "***********************************e"
minSdk 24
targetSdk 34
versionCode 8
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
//buildToolsVersion '30.0.3'
buildFeatures {
viewBinding true
}
}
dependencies {
implementation 'com.google.android.gms:play-services-ads:22.6.0'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.11.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
}
Please, tell me where do you see the user data breach, and help me how to solve this problem. thanks to all

The problem is directly related to the SDK version used:
Instead of version 34, use version 33 of the SDK (of course in the build.gradle(app) file) and of course the dependency
com.google.android.gms:play-services-ads:22.3.0instead ofcom.google.android.gms:play-services-ads:22.6.0. And that’s it. Do not hesitate to put your solutions. Thank you all.