0
나는이 내 코드는 내가 계산 거리 프로젝트를 사용하지만 난을 만들 때 많은 프로젝트가있다안드로이드 :에 allowBackup는 = "true"로 오류 "true"로
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.dsadas.bottombardmo">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
"사실"에 android:allowBackup="true"
오류가 하나의 문제 프로젝트 다음에 매니페스트 파일에 오류가 생성됩니다.
<application android:allowBackup="true">
나를 당신의 라이브러리의 일부, false로 명시 적으로 설정 allowBackup
을 사용하여 적어도 하나의 존재 때문이다
라이브러리를 사용하고 있습니까? –