gpt4 book ai didi

java - Android 应用因侵犯用户隐私而从 Play 商店下架

转载 作者:行者123 更新时间:2023-12-02 02:04:21 45 4
gpt4 key购买 nike

我的 Android 应用最近因侵犯隐私而从 Play 商店中删除,但我没有明确使用任何收集用户信息的工具。

我尝试评论一些我怀疑的库并重新提交应用程序,但由于同样的原因该应用程序仍然被拒绝!

我的应用程序 gradle 文件如下所示:

buildscript {
repositories {
maven { url 'https://maven.fabric.io/public' }
}

dependencies {
classpath 'io.fabric.tools:gradle:1.27.1'
}
}
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
apply plugin: 'com.neenbedankt.android-apt'

repositories {
maven { url 'https://maven.fabric.io/public' }
}

android {
compileSdkVersion 28
buildToolsVersion '26.0.1'

defaultConfig {
applicationId 'com.ferrometal12'
targetSdkVersion 28
versionCode 3
versionName '0.1.3'
ndk {
abiFilters 'armeabi-v7a', 'x86'
}
multiDexEnabled true
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
// Deprecated. Used by net.openid:appauth
manifestPlaceholders = [
'appAuthRedirectScheme': 'host.exp.exponent'
]
manifestPlaceholders = [onesignal_app_id: "ONE_SIGNAL_ID",
onesignal_google_project_number: "REMOTE"]
}
dexOptions {
javaMaxHeapSize System.getenv("DISABLE_DEX_MAX_HEAP") ? null : "8g"
keepRuntimeAnnotatedClasses false
}
productFlavors {
// Define separate dev and prod product flavors.
dev {
// dev utilizes minSDKVersion = 21 to allow the Android gradle plugin
// to pre-dex each module and produce an APK that can be tested on
// Android Lollipop without time consuming dex merging processes.
minSdkVersion 21
}
devRemoteKernel {
minSdkVersion 21
}
dev19 {
// For debugging / development on older SDK versions. Increases build
// time so use 'dev' if not running on older SDKs.
minSdkVersion 19
}
prod {
// The actual minSdkVersion for the application.
minSdkVersion 19
}
}
buildTypes {
debug {
debuggable true
}
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
zipAlignEnabled true
}
}
signingConfigs {
debug {
storeFile file('../debug.keystore')
}
}
lintOptions {
abortOnError false
}
packagingOptions {
pickFirst "**"
}
}


task exponentPrebuildStep(type: Exec) {
workingDir '../'
if (System.getProperty('os.name').toLowerCase().contains('windows')) {
commandLine 'cmd', '/c', '.\\detach-scripts\\prepare-detached-build.bat'
} else {
commandLine './detach-scripts/prepare-detached-build.sh'
}
}
preBuild.dependsOn exponentPrebuildStep


dependencies {
// compile project(':react-native-onesignal')
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:multidex:1.0.1'
// Our dependencies
compile 'com.android.support:appcompat-v7:26.0.1'
// Our dependencies from ExpoView
// DON'T ADD ANYTHING HERE THAT ISN'T IN EXPOVIEW. ONLY COPY THINGS FROM EXPOVIEW TO HERE.
compile 'com.android.support:appcompat-v7:26.0.1'
compile 'com.facebook.android:facebook-android-sdk:4.7.0'
compile('com.facebook.android:audience-network-sdk:4.22.1') {
exclude module: 'play-services-ads'
}
provided 'org.glassfish:javax.annotation:3.1.1'
compile 'com.jakewharton:butterknife:7.0.1'
compile 'de.greenrobot:eventbus:2.4.0'
compile 'com.amplitude:android-sdk:2.9.2'
// Be careful when upgrading! Upgrading might break experience scoping. Check with Jesse. See Analytics.resetAmplitudeDatabaseHelper
compile 'com.squareup.picasso:picasso:2.5.2'
compile('com.google.android.gms:play-services-gcm:9.8.0') {
force true // added force true due onesignal conflict, it wasnt before adding onesignal
}
compile('com.google.android.gms:play-services-analytics:9.8.0') {
force true // added force true due onesignal conflict, it wasnt before adding onesignal
}
compile('com.google.android.gms:play-services-maps:9.8.0') {
force true // added force true due onesignal conflict, it wasnt before adding onesignal
}
compile('com.google.android.gms:play-services-auth:9.8.0') {
force true // added force true due onesignal conflict, it wasnt before adding onesignal
}
compile('com.google.android.gms:play-services-location:9.8.0') {
force true // added force true due onesignal conflict, it wasnt before adding onesignal
}
compile('com.google.android.gms:play-services-ads:9.8.0') {
force true // added force true due onesignal conflict, it wasnt before adding onesignal
}
apt 'com.raizlabs.android:DBFlow-Compiler:2.2.1'
compile 'com.raizlabs.android:DBFlow-Core:2.2.1'
compile 'com.raizlabs.android:DBFlow:2.2.1'
compile 'com.madgag.spongycastle:core:1.53.0.0'
compile 'com.madgag.spongycastle:prov:1.53.0.0'
debugCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.4-beta1'
// debugCompile 'com.squareup.leakcanary:leakcanary-android:1.4-beta1'
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.4-beta1'
compile 'com.facebook.device.yearclass:yearclass:1.0.1'
compile 'commons-io:commons-io:1.3.2'
compile 'me.leolin:ShortcutBadger:1.1.4@aar'
compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
compile 'com.theartofdev.edmodo:android-image-cropper:2.4.7'
compile 'com.yqritc:android-scalablevideoview:1.0.1'
compile 'commons-codec:commons-codec:1.10'
compile 'com.segment.analytics.android:analytics:4.3.0'
compile 'com.google.zxing:core:3.2.1'
compile 'net.openid:appauth:0.4.1'
compile 'com.airbnb.android:lottie:2.2.0'
// compile 'io.branch.sdk.android:library:2.6.1' commented this line privacy policy concerns
compile('io.nlopez.smartlocation:library:3.2.11') {
transitive = false
}
compile 'com.android.support:exifinterface:26.0.1'
compile 'com.squareup.okhttp3:okhttp:3.4.1'
compile 'com.squareup.okhttp3:okhttp-urlconnection:3.4.1'
compile 'com.squareup.okhttp3:okhttp-ws:3.4.1'
compile 'com.squareup.okio:okio:1.9.0'
// Testing
androidTestCompile 'com.android.support.test.espresso:espresso-core:3.0.1'
// We use a modified build of com.android.support.test:runner:1.0.1. Explanation in maven-test/README
androidTestCompile 'com.android.support.test:runner:1.0.1'
androidTestCompile 'com.android.support:support-annotations:27.0.2'
androidTestCompile 'com.google.code.findbugs:jsr305:3.0.0'
androidTestCompile 'com.android.support.test.uiautomator:uiautomator-v18:2.1.1'
androidTestCompile 'com.azimolabs.conditionwatcher:conditionwatcher:0.2'
compile 'com.facebook.android:facebook-android-sdk:[4,5)'
compile('host.exp.exponent:expoview:26.0.0@aar') {
transitive = true
}
}

// This has to be down here for some reason
apply plugin: 'com.google.gms.google-services'

我收到的来自谷歌的消息说:

Your app is using the Branch IO SDK, which is uploading users Installed Packages information to https://api.branch.io/v1/applist without a prominent disclosure

该应用程序是使用 React Native 构建的!

知道如何才能找到我在哪里使用该库,以便我可以删除它!

最佳答案

删除:

com.segment.analytics.android:analytics:4.3.0,

它应该有效。

关于java - Android 应用因侵犯用户隐私而从 Play 商店下架,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57363594/

45 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com