Я не могу понять, что происходит.Помогите мне, пожалуйста!
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.myapplication">
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.SEND_SMS" />
<uses-permission android:name="android.permission.INTERNET" />
<!--
The ACCESS_COARSE/FINE_LOCATION permissions are not required to use
Google Maps Android API v2, but you must specify either coarse or fine
location permissions for the 'MyLocation' functionality.
-->
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<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:name=".Login">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".menuFor" />
<activity android:name=".RegistrationActivity" />
<activity android:name=".PasswordActivity" />
<activity android:name=".ProfileActivity" />
<activity android:name=".UpdateProfile" />
<activity android:name=".UpdatePassword" />
<activity android:name=".Offers" />
<activity android:name=".Dtp" />
<activity android:name=".Alk" />
<activity android:name=".Kur" />
<activity android:name=".Hoo" />
<activity android:name=".Kra" />
<activity android:name=".Pot" />
<activity android:name=".Mus" />
<activity android:name=".Par" />
<activity android:name=".Dra" />
<activity android:name=".Oru" />
<activity android:name=".Nap" />
<activity android:name=".TrackMe" />
<activity android:name=".Drugie" />
<activity android:name=".News" />
<activity android:name=".Formas" />
<!--
The API key for Google Maps-based APIs is defined as a string resource.
(See the file "res/values/google_maps_api.xml").
Note that the API key is linked to the encryption key used to sign the APK.
You need a different API key for each encryption key, including the release key that is used to
sign the APK for publishing.
You can define the keys for the debug and release targets in src/debug/ and src/release/.
-->
<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="@string/google_maps_key" />
<activity android:name=".Consulting" />
<activity android:name=".FirstLaw" />
<activity android:name=".SecondLaw" />
<activity android:name=".ThirdLaw" />
<activity android:name=".FourthLaw" />
<activity android:name=".Shu" />
<activity android:name=".Police"></activity>
</application>
</manifest>
Моя проблема:
Ошибка привязки ресурса Android Вывод: C: \ invincibe.kz \ app \build \ промежуточные \ merged_manifests \ debug \ processDebugManifest \ merged \ AndroidManifest.xml: 40: ошибка: строка ресурса / title_activity_list_view_items (также известный как com.example.myapplication: строка / title_activity_list_view_items) не найдена.C: \ invincibe.kz \ app \ build \ middleates \ merged_manifests \ debug \ processDebugManifest \ merged \ AndroidManifest.xml: 40: ошибка: стиль ресурса / AppTheme.NoActionBar (он же com.example.myapplication: style / AppTheme.NoActionBar) ненайденный.ошибка: не удалось обработать манифест.
Команда: C: \ invincible \ caches \ transforms-1 \ files-1.1 \ aapt2-3.2.1-4818971-windows.jar \ 51d476bdeab86e4f58aea05e9b3241b0 \ aapt2-3.2.1-4818971-windows \ aapt2.exe ссылка -I \ C: \ qogamguard \ платформы \ android-28 \ android.jar \ --manifest \ C: \ invincibe.kz \ app \ build \ промежуточные \ merged_manifests \ debug \ processDebugManifest \ merged \AndroidManifest.xml \ -o \ C: \ invincibe.kz \ app \ build \ промежуточные \ процессируемые_ресурсы \ debug \ processDebugResources \ out \ resources-debug.ap_ \ -R \ @C: \ invincibe.kz \ app \ build \ промежуточные звенья\ incremental \ processDebugResources \ resources-list-for-resources-debug.ap_.txt \ --auto-add-overlay \ --java \ C: \ invincibe.kz \ app \ build \ generate \ not_namespaced_r_class_sources \ debug \ processDebugResources \r \ --custom-package \ com.example.myapplication \ -0 \ apk \ --output-text-символы \ C: \ invincibe.kz \ app \ build \ промежуточные \ символы \ debug \ R.txt \ -no-version-vectors Демон: AAPT2 aapt2-3.2.1-4818971-windows Демон # 0
И мой strings.xml:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">QogamGuard</string>
</resources>
My styles.xml:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<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>
</style>
</resources>
что происходит?Можете ли вы помочь мне, пожалуйста?