Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8313043
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T20:21:54+00:00 2026-06-08T20:21:54+00:00

I have a test project which uses OI FileManager . I added that project

  • 0

I have a test project which uses OI FileManager. I added that project to my test project as an Android library, then I call an Activitity in the library. It shows error:

E/AndroidRuntime( 1359): FATAL EXCEPTION: main
E/AndroidRuntime( 1359): android.content.ActivityNotFoundException: Unable to find explicit activity class {com.androidcoretest/org.openintents.filemanager.FileManagerActivity}; have you declared this activity in your AndroidManifest.xml?
E/AndroidRuntime( 1359):    at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1404)
E/AndroidRuntime( 1359):    at android.app.Instrumentation.execStartActivity(Instrumentation.java:1378)
E/AndroidRuntime( 1359):    at android.app.Activity.startActivityForResult(Activity.java:2817)
E/AndroidRuntime( 1359):    at android.app.Activity.startActivity(Activity.java:2923)
E/AndroidRuntime( 1359):    at com.androidcoretest.FileExplorerTest$1.onClick(FileExplorerTest.java:24)
E/AndroidRuntime( 1359):    at android.view.View.performClick(View.java:2408)
E/AndroidRuntime( 1359):    at android.view.View$PerformClick.run(View.java:8816)
E/AndroidRuntime( 1359):    at android.os.Handler.handleCallback(Handler.java:587)
E/AndroidRuntime( 1359):    at android.os.Handler.dispatchMessage(Handler.java:92)
E/AndroidRuntime( 1359):    at android.os.Looper.loop(Looper.java:123)
E/AndroidRuntime( 1359):    at android.app.ActivityThread.main(ActivityThread.java:4627)
E/AndroidRuntime( 1359):    at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 1359):    at java.lang.reflect.Method.invoke(Method.java:521)
E/AndroidRuntime( 1359):    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
E/AndroidRuntime( 1359):    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
E/AndroidRuntime( 1359):    at dalvik.system.NativeStart.main(Native Method)

When I add full path of that Activity in the Manifest, it generates another error.

   <activity
        android:label="@string/app_name"
        android:name="org.openintents.filemanager.FileManagerActivity" >    
    </activity>

It shows:

E/AndroidRuntime( 1393): FATAL EXCEPTION: main
E/AndroidRuntime( 1393): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.androidcoretest/org.openintents.filemanager.FileManagerActivity}: android.content.ActivityNotFoundException: Unable to find explicit activity class {com.androidcoretest/org.openintents.distribution.EulaActivity}; have you declared this activity in your AndroidManifest.xml?
E/AndroidRuntime( 1393):    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2663)
E/AndroidRuntime( 1393):    at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2679)
E/AndroidRuntime( 1393):    at android.app.ActivityThread.access$2300(ActivityThread.java:125)
E/AndroidRuntime( 1393):    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2033)
E/AndroidRuntime( 1393):    at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime( 1393):    at android.os.Looper.loop(Looper.java:123)
E/AndroidRuntime( 1393):    at android.app.ActivityThread.main(ActivityThread.java:4627)
E/AndroidRuntime( 1393):    at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 1393):    at java.lang.reflect.Method.invoke(Method.java:521)
E/AndroidRuntime( 1393):    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
E/AndroidRuntime( 1393):    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
E/AndroidRuntime( 1393):    at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime( 1393): Caused by: android.content.ActivityNotFoundException: Unable to find explicit activity class {com.androidcoretest/org.openintents.distribution.EulaActivity}; have you declared this activity in your AndroidManifest.xml?
E/AndroidRuntime( 1393):    at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1404)
E/AndroidRuntime( 1393):    at android.app.Instrumentation.execStartActivity(Instrumentation.java:1378)
E/AndroidRuntime( 1393):    at android.app.Activity.startActivityForResult(Activity.java:2817)
E/AndroidRuntime( 1393):    at android.app.Activity.startActivity(Activity.java:2923)
E/AndroidRuntime( 1393):    at org.openintents.distribution.EulaOrNewVersion.startForwardActivity(EulaOrNewVersion.java:127)
E/AndroidRuntime( 1393):    at org.openintents.distribution.EulaOrNewVersion.showEula(EulaOrNewVersion.java:69)
E/AndroidRuntime( 1393):    at org.openintents.distribution.DistributionLibrary.showEulaOrNewVersion(DistributionLibrary.java:53)
E/AndroidRuntime( 1393):    at org.openintents.filemanager.FileManagerActivity.onCreate(FileManagerActivity.java:312)
E/AndroidRuntime( 1393):    at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
E/AndroidRuntime( 1393):    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2627)
E/AndroidRuntime( 1393):    ... 11 more
W/ActivityManager(   59):   Force finishing activity com.androidcoretest/org.openintents.filemanager.FileManagerActivity

I would say this is a bug of Eclipse. Eclipse and ADT recently have many bugs on building process: ClassNotFound and ActivityNotFound.

Update:
My code just use one line:

            final Intent intent = new Intent(FileExplorerTest.this, FileManagerActivity.class);
            startActivity(intent);

Actually I have 3 projects. 2 library projects and 1 test project. Library “OI File Manager” uses Library “OI Distribution”, then the test project C uses library “IO File Manager”.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T20:21:59+00:00Added an answer on June 8, 2026 at 8:21 pm

    Ensure you are linking the OI FileManager projects as a library rather than external jar. go to Project properties > Android > Library, then click add library.

    Then as you are doing define the activity in your project manifest (however with ADT 20 i think this is automatic)

    <activity
            android:label="@string/app_name"
            android:name="org.openintents.filemanager.FileManagerActivity" >    
        </activity>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a class library project which uses a namespace (e.g., Cosmos.Creator.Util). I then
I have a test project in my appharbor solution which uses the connectionstring located
I have a unit test which depends on some code that uses MEF. When
I have a test project in which I needs to load an XLSX file.
I have to test some things on a project which has been developed by
I have created a unit test in my c# project which builds into a
I have a test project, with an App.config that sets up default values for
I have a unit test project in Visual Studio 2010 (.NET 4) that utilizes
I have a project which uses Apache Xmlbeans for databinding. Currently it is very
I've been working on a project which uses SPNEGO to have Single Sign On

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.