0
我正在上運行我的應用程序下面的錯誤發現屬性「域」沒有資源標識符:在包「機器人」
MyApp的\程序\編譯\ \中間體艙單\全\調試\ AndroidManifest.xml中 錯誤:(38)未找到包'android'中屬性'domain'的資源標識符。
有人請幫忙。提前致謝。
這是我的AndroidManifest.xml:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.trial.myapp">
<!--xmlns:android="http://schemas.android.com/apk/res/android"-->
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.INTERNET" />
<application
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme"
android:allowBackup="true"
android:backupAgent="MyApp_BackupAgent">
<meta-data android:name="com.google.android.backup.api_key"
android:value="API-KEY" />
<!-- for backuping to google drive starts here-->
<full-backup-content>
<include
android:domain="database"
android:path=".">
</include>
</full-backup-content>
<!-- for backuping to google drive ends here-->
<activity android:name=".MyApp_MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
首先,請勿在公共平臺上公開您的API密鑰。 –
@ M.Ashish謝謝你的評論.. – AR5
@Darpan ....感謝您的編輯。 – AR5