我有一个用 Unity 编写的儿童应用程序。最近,Google 要求将目标 API 更新为 33。我更新了它,我的应用程序成功通过了审核。然而,过了一段时间,我收到了...
我有一个用 Unity 编写的儿童应用。最近,Google 要求将目标 API 更新为 33。我更新了它,我的应用成功通过了审核。然而,过了一段时间,我收到一条通知,指出我的应用使用了禁止的标识符。消息指出:
\'在审核过程中,我们发现您的应用违反了家庭政策要求 ( https://support.google.com/googleplay/android-developer/answer/9893335#families-policy )。我们发现您的应用或应用中的 SDK 传输的标识符不符合我们的家庭政策。这些标识符可能包括但不限于 Android 广告 ID。例如,Android 广告 ID 传输的目的地可能包括但不限于 [cdp.cloud.unity3d.com (http://cdp.cloud.unity3d.com/)]。\'
但是,我自己不发送任何信息。我的项目中没有第三方 SDK,脚本也很少。我发送了大约 20 个不同的版本,进行了各种修改。以下是我尝试过的方法,但没有帮助:
-在代码中和通过包管理器禁用 Unity Analytics。-更新到 Unity 的最新 LTS 版本 (2022.3.37)。-在清单中指定。-未在清单中指定上述内容。-通过 Android Studio 构建。-删除了对 SystemInfo 的引用。-禁用 UnityConnectionSettings 中除购买之外的所有内容。-在 Unity 设置中禁用发送编辑器分析数据。
我可以采取进一步的措施来解决这个问题吗?
这是我尝试过的但没有帮助的方法:
-在代码中和通过包管理器禁用 Unity Analytics。-更新到 Unity 的最新 LTS 版本 (2022.3.37)。-在清单中指定。-未在清单中指定上述内容。-通过 Android Studio 构建。-删除了对 SystemInfo 的引用。-禁用 UnityConnectionSettings 中除购买之外的所有内容。-在 Unity 设置中禁用发送编辑器分析数据。-我可以采取进一步措施来解决这个问题吗?
此代码引发异常:from selenium import webdriverimport timedriver = webdriver.Chrome()driver.get('https://www.google.com')time.sleep(10)这是回溯:Traceback(最近
此代码引发异常:
from selenium import webdriver
import time
driver = webdriver.Chrome()
driver.get('https://www.google.com')
time.sleep(10)
以下是回溯:
Traceback (most recent call last):
File "/home/orangepi/.local/lib/python3.10/site-packages/selenium/webdriver/common/selenium_manager.py", line 134, in run
completed_proc = subprocess.run(args, capture_output=True)
File "/usr/lib/python3.10/subprocess.py", line 503, in run
with Popen(*popenargs, **kwargs) as process:
File "/usr/lib/python3.10/subprocess.py", line 971, in __init__
self._execute_child(args, executable, preexec_fn, close_fds,
File "/usr/lib/python3.10/subprocess.py", line 1863, in _execute_child
raise child_exception_type(errno_num, err_msg, err_filename)
OSError: [Errno 8] Exec format error: '/home/orangepi/.local/lib/python3.10/site-packages/selenium/webdriver/common/linux/selenium-manager'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/orangepi/.local/lib/python3.10/site-packages/selenium/webdriver/common/driver_finder.py", line 38, in get_path
path = SeleniumManager().driver_location(options) if path is None else path
File "/home/orangepi/.local/lib/python3.10/site-packages/selenium/webdriver/common/selenium_manager.py", line 103, in driver_location
output = self.run(args)
File "/home/orangepi/.local/lib/python3.10/site-packages/selenium/webdriver/common/selenium_manager.py", line 140, in run
raise WebDriverException(f"Unsuccessful command executed: {command}") from err
selenium.common.exceptions.WebDriverException: Message: Unsuccessful command executed: /home/orangepi/.local/lib/python3.10/site-packages/selenium/webdriver/common/linux/selenium-manager --browser chrome --output json
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/orangepi/Downloads/from selenium import webdriver.py", line 3, in <module>
driver = webdriver.Chrome()
File "/home/orangepi/.local/lib/python3.10/site-packages/selenium/webdriver/chrome/webdriver.py", line 45, in __init__
super().__init__(
File "/home/orangepi/.local/lib/python3.10/site-packages/selenium/webdriver/chromium/webdriver.py", line 49, in __init__
self.service.path = DriverFinder.get_path(self.service, options)
File "/home/orangepi/.local/lib/python3.10/site-packages/selenium/webdriver/common/driver_finder.py", line 41, in get_path
raise NoSuchDriverException(msg) from err
selenium.common.exceptions.NoSuchDriverException: Message: Unable to obtain driver for chrome using Selenium Manager.; For documentation on this error, please visit: https://www.selenium.dev/documentation/webdriver/troubleshooting/errors/driver_location
我不知道我哪里做错了:chrome 已安装;我尝试了一些教程,但没有成功。