Hi i have a strange problem and cant see whats is not working. I have
developed an app, and i have been testing it on the phone by debugging
it and stepping through in eclipse. This works flawlessly (well it
doesnt crash)

My issue is when i go through the motions of
      Export Unsighed Apk
      Sign using jarsigner
      transfer to phone
      install.

Everything works except the application its self!

On first start up it says "Waiting for debugger"
"Application Torrent Droid (process zerofate.torrentDriod) is waiting
for the debugger to attach"

Some steps i have tried already
      Setting the debug flag to true;
      Setting the debug flag to false;
      removing all references to Log.i and the log class

here is my manifest

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android";
package="zerofate.torrentDroid" android:versionCode="2"
android:versionName="1.0.6">
    <application android:icon="@drawable/icon" android:label="@string/
app_name">
        <activity android:label="@string/app_name"
android:name="TorrentDroid">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category
android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity android:label="@string/app_name"
android:name="TorrentHandler">
            <intent-filter>
               <action android:name="android.intent.action.VIEW" />
               <category
android:name="android.intent.category.DEFAULT" />
               <data android:mimeType="application/x-bittorrent"/>
            </intent-filter>
        </activity>
    </application>
<uses-permission android:name="android.permission.INTERNET"></uses-
permission>

</manifest>

and the defaultactivity

public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        Intent intent = new Intent
("com.google.zxing.client.android.SCAN");
        startActivityForResult(intent, 0);

        View scan_anything = findViewById(R.id.Scan);
        scan_anything.setOnClickListener(mScanAnything);
    }

Many Thanks

Alec
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to