I have an app which I am trying to turn into a library and create 2 new apps that consume it. I have to move all code differences between the 2 apps out of the library and into the separate apps due to the fact that I sold source code to the owner of the app. This way I can give them them library and their app. I am running into a bit of a problem tho. In at least one of my activities the UI behavior is somewhat different, in this class the CustomerListActivty. So I started to move the CustomerListActivity out into each respective app, but the problem came when other activities in the library project were trying to invoke the CustomerListActivity via startActivity(new Intent(SomeClass.this, CustomerListActivity.class));. Obviously the library no longer knew what CustomerListAcitivity was so I got compiler errors. I am at a loss on how to solve this problem. I think I need some way to refer the activity other than by class name.
Thank you for any and all help! Aaron -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

