错误:Activity类{}不存在 [英] Error: Activity class {} does not exist

查看:153
本文介绍了错误:Activity类{}不存在的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的应用程序启动以及双方在Nexus 7和Nook平板电脑,但与下面的错误上的Kindle Fire无法启动:

My application launches well both on Nexus 7 and Nook Tablet, but doesn't start on Kindle Fire with the following error:

Error: Activity class {com.js.pathoflight/com.js.pathoflight.JSNativeActivity} does not exist.

下面是我的完整清单:

 <?xml version="1.0" encoding="utf-8"?>
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.js.pathoflight"
    android:versionCode="3"
    android:versionName="0.8.3">

<uses-sdk android:minSdkVersion="9" android:targetSdkVersion="18" />

<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

<application android:label="@string/app_name" 
    android:icon="@drawable/ic_launcher"
    android:allowBackup="true" 
    android:hasCode="true" >

    <activity android:name=".JSNativeActivity"
            android:label="@string/app_name"
            android:configChanges="orientation|keyboardHidden"
            android:theme="@android:style/Theme.NoTitleBar.Fullscreen">

        <meta-data android:name="android.app.lib_name"
                android:value="PathOfLight" />
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>

    </activity>

</application>
</manifest> 

这似乎是一个设备的问题,但我有相同的设备上运行,以及另一个(类似的)应用程序。
我该如何解决呢?

It seems like a device issue, but I have another (similar) application which runs on the same device well. How can I solve it?

推荐答案

真正的问题是,有与设备相同的包名称的另一个应用程序(我尝试了样品,并把它我真正的应用程序包的名字)!当我删除它,一切都变得工作的权利!

The real problem was that there were another application with the same package name on device (I tried a sample and gave it my real app package name)! When I removed it everything became working right!

这篇关于错误:Activity类{}不存在的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆