I cannot name the operation from the jar file

I have a scenario like this: I have a main project with a jar file (a secondary project that gives some information to the main one). I created a jar file following this tuto and then add the jar file to the main project under / libs and then add it to the build path.

Fatal Exception is thrown when I call action from jar file

This is logCat

03-22 12:47:09.509: D/AndroidRuntime(13341): Shutting down VM
03-22 12:47:09.509: W/dalvikvm(13341): threadid=1: thread exiting with uncaught exception (group=0x40018578)
03-22 12:47:09.529: E/AndroidRuntime(13341): FATAL EXCEPTION: main
03-22 12:47:09.529: E/AndroidRuntime(13341): android.content.ActivityNotFoundException: Unable to find explicit activity class {com.XXX.YYY/com.XXX.YYY.Subscription}; have you declared this activity in your AndroidManifest.xml?
03-22 12:47:09.529: E/AndroidRuntime(13341):    at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1405)
03-22 12:47:09.529: E/AndroidRuntime(13341):    at android.app.Instrumentation.execStartActivity(Instrumentation.java:1379)
03-22 12:47:09.529: E/AndroidRuntime(13341):    at android.app.Activity.startActivityForResult(Activity.java:2827)
03-22 12:47:09.529: E/AndroidRuntime(13341):    at com.example.principal.Principal$1.onClick(Principal.java:40)
03-22 12:47:09.529: E/AndroidRuntime(13341):    at android.view.View.performClick(View.java:2485)
03-22 12:47:09.529: E/AndroidRuntime(13341):    at android.view.View$PerformClick.run(View.java:9080)
03-22 12:47:09.529: E/AndroidRuntime(13341):    at android.os.Handler.handleCallback(Handler.java:587)
03-22 12:47:09.529: E/AndroidRuntime(13341):    at android.os.Handler.dispatchMessage(Handler.java:92)
03-22 12:47:09.529: E/AndroidRuntime(13341):    at android.os.Looper.loop(Looper.java:130)
03-22 12:47:09.529: E/AndroidRuntime(13341):    at android.app.ActivityThread.main(ActivityThread.java:3687)
03-22 12:47:09.529: E/AndroidRuntime(13341):    at java.lang.reflect.Method.invokeNative(Native Method)
03-22 12:47:09.529: E/AndroidRuntime(13341):    at java.lang.reflect.Method.invoke(Method.java:507)
03-22 12:47:09.529: E/AndroidRuntime(13341):    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:867)
03-22 12:47:09.529: E/AndroidRuntime(13341):    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:625)
03-22 12:47:09.529: E/AndroidRuntime(13341):    at dalvik.system.NativeStart.main(Native Method)

      

This is how I call the activity in the main project

final Intent intent = new Intent();

        Button juego1Btn = (Button) findViewById(R.id.juego1Btn);

        juego1Btn.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub
                /*Intent intent = new Intent(getBaseContext(), Subscription.class);
                startActivity(intent);*/
                intent.setAction(Intent.ACTION_MAIN);
                intent.setClassName("com.XXX.YYY", "com.XXX.YYY.Subscription");
                intent.putExtra("code", codigo);
                intent.putExtra("keyword", keyword);
                startActivityForResult(intent, 1);
            }
        });

      

and this is the manifesto

<activity
            android:name="com.XXX.YYY.Subscription"
            android:label="@string/app_name">
</activity>

      

Any idea why I have this Exception ??

Many thanks!!!

+1


a source to share


2 answers


The problem was how I created the library using this step by step, it works great http://es.slideshare.net/ajdgeniz/como-hacer-un-archivo-jar-en-eclipse



Thanks everyone

0


a source


First, there com.XXX.YYY.Subscription

must be com.telecoming.sms_payment.Subscription

if your code is to be believed.

Second, don't build Intent

this way, as yours <activity>

doesn't claim support ACTION_MAIN

. Replace the code with the following:



    Button juego1Btn = (Button) findViewById(R.id.juego1Btn);

    juego1Btn.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {
            Intent intent = new Intent(WhateverYourActivityClassIsWhereYouAreRightNow.this, Subscription.class);
            intent.putExtra("code", codigo);
            intent.putExtra("keyword", keyword);
            startActivityForResult(intent, 1);
        }
    });

      

(replacing WhateverYourActivityClassIsWhereYouAreRightNow

with the name Activity

that this code is in)

+1


a source







All Articles