Play 商店预发布:仅限于支持 ArCore 的设备,即使 "com.google.ar.core" 设置为 "optional"

Play Store Pre-launch: limited to devices that support ArCore even though "com.google.ar.core" is set to "optional"

将 ArCore 支持添加到应用程序并在清单文件中将 com.google.ar.core 设置为 optional 后(如下所示),我发现 Play 商店预启动测试似乎只 运行 在支持 ArCore 的设备上。还有其他人看到了吗?

    <meta-data android:name="com.google.ar.core" android:value="optional" />

所以,问题是我仍然将 android.hardware.camera.ar 设置为必需....当我更新如下时,预期的设备列表现在显示为受支持。

 <uses-feature android:name="android.hardware.camera.ar" android:required="false"/>