我在 Android Studio(3.1.3,内部版本 173.4819257)中处理我的应用程序时遇到了臭名昭著的 R 缺失问题。我尝试了许多解决方案,例如:清理和重建Gradle将项目与文件同步使缓存无效并重新启动更正我的XML文件中的所有错误和警告(包括布局和清单)关闭 Android Studio 并重新启动使包名和目录路径更短这是我的清单。我是Android开发的新手,所以我可能误解了一些东西。<?xml version="1.0" encoding="utf-8"?><manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" package="com.n.nomoko"> <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" android:fullBackupContent="true" tools:ignore="GoogleAppIndexingWarning"> <activity android:name=".MainActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <service android:name=".logic.ChallengeService" android:process=":defis" /> <activity android:name=".views.AccueilActivity" /> <activity android:name=".views.InscriptionActivity"> </activity> </application></manifest>另外,如果有帮助,这是我的存储库树。我的问题是:manifest关于我的包或路径是否有问题?R.java即使所有XML文件都正确,为什么不生成?谢谢您的帮助 :)
添加回答
举报
0/150
提交
取消