我在 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
文件都正确,为什么不生成?谢谢您的帮助 :)
德玛西亚99
手掌心
暮色呼如
相关分类