作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我刚刚在 android studio 中创建了一个新项目。全新的项目。没有 Activity 。只有一个名为 MyApplication 的 java 类。我用“应用程序”扩展了那个类,所以它是应用程序的一个子类。现在我去修改我的 list 文件以添加
android:name=".MyApplication"
当然,当然,gradle 的大神们被激怒了,给我发来这个诅咒:
om.my_name.the_project_name.MyApplication' 不可分配给 'android.app.Application' less... (Ctrl+F1)
请帮我解决为什么会出现这个错误!
完整 list 代码:
<?xml version="1.0" encoding="utf-8"?>
<!-- To auto-complete the email text field in the login form with the user's emails -->
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.READ_PROFILE" />
<uses-permission android:name="android.permission.READ_CONTACTS" />
<application
android:name=".MyApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".LoginActivity"
android:label="@string/app_name"
android:windowSoftInputMode="adjustResize|stateVisible" >
</activity>
</application>
最佳答案
对于 list 中的所有 Activity ,我只是在一个看似随机的点上的现有项目中遇到了这个错误。在清理/重建之后,然后使缓存无效并重新启动,执行 Gradle 重新同步最终使错误消失。
对于这个项目,我使用的是 Gradle 1.5 和目标 SDK 23,但这可能没有什么区别。
关于java - android fully_qualified_classname 不可分配给 'android.app.application',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30821389/
我是一名优秀的程序员,十分优秀!