[android-developers] Re: Help! Force close after renaming package

2009-11-14 Thread FJMustak
I'm not exactly sure how to display the stack-trace in eclipse... But
here is exactly what I did:
- Using the Snake example that came with the 1.1 SDK, I replaced
com.example.android.snake with com.example.android.snake2 in the .java
files, and in the manifest.  I also renamed the directory from /com/
example/android/snake to /com/example/android/snake2
then I ran the package using a 1.6 AVD (G1)
I tried several of the Android 1.1 SDK examples, and most of them
worked fine after I renamed the package, the exceptions were
lunarlander and snake...


On Nov 13, 1:18 pm, TreKing treking...@gmail.com wrote:
 What does the stack-trace look like when it force-closes?

 -
 TreKing - Chicago transit tracking app for Android-powered 
 deviceshttp://sites.google.com/site/rezmobileapps/treking

 On Fri, Nov 13, 2009 at 5:52 AM, FJMustak fjmus...@gmail.com wrote:
  I have modified a sample app, and it works fine.  When I rename the
  package though, it force closes.  I have modified the package name in
  all the .java files, as well as the manifest, in addition to the
  physical directory structure.  I've even tried to create a project
  from scratch and copy the relevant code in.  Any ideas what could be
  causing this? Am I missing something?

  --
  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.comandroid-developers%2bunsubscr...@googlegroups.com
  For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
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


Re: [android-developers] Re: Help! Force close after renaming package

2009-11-14 Thread TreKing
To get the stack trace, just look at the LogCat view in eclipse when the
program crashes (sometimes the debugger stops at the crash point so you may
have to continue execution until it shows up).

Alternatively, run the DDMS tool a select your running AVD to see the
LogCat.

I haven't really looked at the examples in much depth, but aren't
LunarLander and Snake (the only) game projects? Maybe that has something to
do with it? Maybe try searching the entire project for the package name and
see if it's been hard-coded somehow? Getting the stack-trace from the LogCat
is definitely your best bet to get a lead though.

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking


On Sat, Nov 14, 2009 at 4:24 AM, FJMustak fjmus...@gmail.com wrote:

 I'm not exactly sure how to display the stack-trace in eclipse... But
 here is exactly what I did:
 - Using the Snake example that came with the 1.1 SDK, I replaced
 com.example.android.snake with com.example.android.snake2 in the .java
 files, and in the manifest.  I also renamed the directory from /com/
 example/android/snake to /com/example/android/snake2
 then I ran the package using a 1.6 AVD (G1)
 I tried several of the Android 1.1 SDK examples, and most of them
 worked fine after I renamed the package, the exceptions were
 lunarlander and snake...


 On Nov 13, 1:18 pm, TreKing treking...@gmail.com wrote:
  What does the stack-trace look like when it force-closes?
 
 
 -
  TreKing - Chicago transit tracking app for Android-powered deviceshttp://
 sites.google.com/site/rezmobileapps/treking
 
  On Fri, Nov 13, 2009 at 5:52 AM, FJMustak fjmus...@gmail.com wrote:
   I have modified a sample app, and it works fine.  When I rename the
   package though, it force closes.  I have modified the package name in
   all the .java files, as well as the manifest, in addition to the
   physical directory structure.  I've even tried to create a project
   from scratch and copy the relevant code in.  Any ideas what could be
   causing this? Am I missing something?
 
   --
   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.comandroid-developers%2bunsubscr...@googlegroups.com
 android-developers%2bunsubscr...@googlegroups.comandroid-developers%252bunsubscr...@googlegroups.com
 
   For more options, visit this group at
  http://groups.google.com/group/android-developers?hl=en

 --
 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.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


-- 
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

[android-developers] Re: Help! Force close after renaming package

2009-11-14 Thread FJMustak
Thanks for the help!  I looked at the LogCat view and it pointed me to
what I was missing... It was in the layout XML file.  Works now.

On Nov 14, 7:58 am, TreKing treking...@gmail.com wrote:
 To get the stack trace, just look at the LogCat view in eclipse when the
 program crashes (sometimes the debugger stops at the crash point so you may
 have to continue execution until it shows up).

 Alternatively, run the DDMS tool a select your running AVD to see the
 LogCat.

 I haven't really looked at the examples in much depth, but aren't
 LunarLander and Snake (the only) game projects? Maybe that has something to
 do with it? Maybe try searching the entire project for the package name and
 see if it's been hard-coded somehow? Getting the stack-trace from the LogCat
 is definitely your best bet to get a lead though.

 -
 TreKing - Chicago transit tracking app for Android-powered 
 deviceshttp://sites.google.com/site/rezmobileapps/treking

 On Sat, Nov 14, 2009 at 4:24 AM, FJMustak fjmus...@gmail.com wrote:
  I'm not exactly sure how to display the stack-trace in eclipse... But
  here is exactly what I did:
  - Using the Snake example that came with the 1.1 SDK, I replaced
  com.example.android.snake with com.example.android.snake2 in the .java
  files, and in the manifest.  I also renamed the directory from /com/
  example/android/snake to /com/example/android/snake2
  then I ran the package using a 1.6 AVD (G1)
  I tried several of the Android 1.1 SDK examples, and most of them
  worked fine after I renamed the package, the exceptions were
  lunarlander and snake...

  On Nov 13, 1:18 pm, TreKing treking...@gmail.com wrote:
   What does the stack-trace look like when it force-closes?

  -
   TreKing - Chicago transit tracking app for Android-powered deviceshttp://
  sites.google.com/site/rezmobileapps/treking

   On Fri, Nov 13, 2009 at 5:52 AM, FJMustak fjmus...@gmail.com wrote:
I have modified a sample app, and it works fine.  When I rename the
package though, it force closes.  I have modified the package name in
all the .java files, as well as the manifest, in addition to the
physical directory structure.  I've even tried to create a project
from scratch and copy the relevant code in.  Any ideas what could be
causing this? Am I missing something?

--
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.comandroid-developers%2bunsubscr...@googlegroups.com
  android-developers%2bunsubscr...@googlegroups.comandroid-developers%252bunsubscr...@googlegroups.com

For more options, visit this group at
   http://groups.google.com/group/android-developers?hl=en

  --
  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.comandroid-developers%2bunsubscr...@googlegroups.com
  For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
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