Questions tagged «google-developers-console»

10
如何从Google Developers Console删除项目
似乎Google服务越来越难管理。现在,我想删除先前在另一个测试帐户中创建的项目ID。 假设我可以在另一个帐户中重新创建它。这样做的主要原因是,已在此测试帐户中连接/创建了Google+应用,当有人遇到登录凭据时,将显示电子邮件地址。 Google表示有可能(https://developers.google.com/console/help/): 删除项目 从控制台删除项目会释放项目本身使用的所有资源。请注意,要删除一个项目,您必须首先在该项目上禁用计费。此外,请注意,删除项目所需的时间可能会因项目中使用的服务数量或种类而异。 当我转到帐单时,它表明尚未设置帐单配置文件。

20
警告您的Apk使用需要隐私政策的权限:(android.permission.READ_PHONE_STATE)
在清单中未添加android.permission.READ_PHONE_STATE。允许。 为什么当我上传新的apk版本时出现错误,错误如下。 您的应用具有一个版本号为1的apk,该APK请求以下权限:android.permission.READ_PHONE_STATE。在APK中使用这些权限的应用必须设置隐私政策。 我已附上我的Google Play商店帐户的屏幕截图。 我的清单文件。 <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.my.package.name"> <uses-permission android:name="android.permission.INTERNET" /> <application android:name=".utils.PreferenceManager" android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:largeHeap="true" android:supportsRtl="true" android:theme="@style/AppTheme"> <activity android:name=".SplashScreen" android:screenOrientation="portrait"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name=".MainActivity" android:screenOrientation="portrait" /> <activity android:name=".CategoryListActivity" android:screenOrientation="portrait" /> <activity android:name=".ImagesActivity" android:screenOrientation="portrait" /> </application> </manifest>
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.