[android-developers] Re: Can't build after update to ADT 22 - library packages not resolved.

2013-06-14 Thread Nathan
On Friday, June 14, 2013 1:00:33 PM UTC-7, Lew wrote: > > > Isn't he talking about Java packages rather than application packages? > >> >> Yeah, I forgot to specify. Fixing the corrupted project missing the src path made it work, but I am sure I will be back here when the next ADT rolls out.

[android-developers] Re: Can't build after update to ADT 22 - library packages not resolved.

2013-06-14 Thread Lew
Jonathan S wrote: > each library has own unique package name. You have to set it separate from > other library and application. > > If library is com.example.lib and app is com.example.app > > you can't do com.example.app.R in the com.example.lib, it need to be > separate. > Isn't he talking ab

[android-developers] Re: Can't build after update to ADT 22 - library packages not resolved.

2013-06-13 Thread Nathan
I somehow corrupted the classpath file so that "src" was not one of the source folders, although gen was. It wasn't the first thing I was looking for. Nathan -- -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, se

[android-developers] Re: Can't build after update to ADT 22 - library packages not resolved.

2013-06-13 Thread Nathan
On Thursday, June 13, 2013 6:46:23 PM UTC-7, Jonathan S wrote: > > each library has own unique package name. You have to set it separate from > other library and application. > > If library is com.example.lib and app is com.example.app > > you can't do com.example.app.R in the com.example.lib, i

[android-developers] Re: Can't build after update to ADT 22 - library packages not resolved.

2013-06-13 Thread Jonathan S
each library has own unique package name. You have to set it separate from other library and application. If library is com.example.lib and app is com.example.app you can't do com.example.app.R in the com.example.lib, it need to be separate. On Thursday, June 13, 2013 9:18:45 PM UTC-4, Nathan