我正在运行android 3.4.1,我所做的只是使缓存无效并立即重新启动,我收到了错误gradle同步问题,并且此
错误:无法解析C:\ Users \ J.Robinson \ AndroidStudioProjects \ App \ app \ src \ main \ AndroidManifest.xml中的XML [row,col]处的ParseError:[17,64] 消息:预期的开始或结束标记
我已经将Google堆栈堆叠了一个半小时,似乎没有任何反应。我该如何解决?
Manifest.XML
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.jstudios.curbyourmeme">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="App"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="app"
android:theme="@style/AppTheme.NoActionBar">
android:screenOrientation="portrait"
android:configChanges="orientation|keyboardHidden">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
答案 0 :(得分:0)
删除行中的>符号
android:theme =“ @ style / AppTheme.NoActionBar”>
这是导致错误的原因