MainActivity NoClassDefFoundError

时间:2016-04-25 16:08:34

标签: android android-studio android-activity android-manifest

我似乎对无数的社区有类似的问题;但是,我似乎没有相同的症状(或者至少,我的Google-fu不允许我找到它)。

长话短说:该应用正在给我java.lang.RuntimeException: Unable to instantiate activity

根据我的理解,这只能由加载库的不正确顺序或错过AndroidManifest.xml中的文件引起。

这是我的AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.alexanderlyons.livingpokedex">

<uses-permission android:name="android.permission.INTERNET" />

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <activity android:name=".MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

Here is a link to my repository for those wanting to build it themselves.如果有人能够让我了解可能出现的问题。

注意:这可能是由于我的.gitignore,因为我最后一次建造,它在我的主塔上。我只是在远程计算机上遇到这个问题。

TL:DR - 我的MainActivity没有加载,它存在于AndriodManifest.xml中,我只使用gradles来加载文件,而不是本地jar。

1 个答案:

答案 0 :(得分:1)

您的问题可能是由不同的事情引起的,但最常见的是您加载了太多的库,方法太多。

您应该在应用中启用multidex,这是指南:

multidex

快速教程:

添加&#34; multiDexEnabled true&#34;你的gradle配置(例如,在目标sdk版本下)。

将此添加到您的依赖项:

dependencies {
  compile 'com.android.support:multidex:1.0.0'
}

并确保您的应用程序扩展了这个:

<application
        ...
        android:name="android.support.multidex.MultiDexApplication">
        ...
    </application>

通过代码或通过清单。

编辑:

使用构建工具22,sd版本22和目标22测试项目。另外,使用支持库22。+