Я работал над приложением, которое я опубликовал вчера в магазине воспроизведения, но когда я открыл его сегодня утром, чтобы внести некоторые изменения, в файлах AndroidManifest.xml
, activity_main.xml
& styles.xml
было много ошибок .
Редактировать: вот файлы и ошибки
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<WebView
android:id="@+id/the_wv"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>
Ошибка:
Строки 2, 3 и 4: URI не зарегистрирован
Строки 5, 6 и 7: атрибут: xxxx здесь не разрешен
Строка 9: элемент WebView здесь не разрешен
styles.xml
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:statusBarColor">@color/mainColor</item>
</style>
</resources>
Ошибка:
- Строки 6-9: невозможно разрешить символ 'xxxxxx'
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.appname">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:screenOrientation="portrait"
android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
Ошибка:
Строка 2: URI не зарегистрирован
Строки 6, 7, 9, 10, 11 и 13: атрибут xxxxxx здесь не разрешен
Строка 14: Неразрешенный класс 'MainActivity'
Есть идеи, почему это может привести к внезапному выбрасыванию всех этих ошибок?