[android-developers] Re: I get "Unable to resolve static field" error

2009-05-20 Thread Dan Griffin
Hello, SDK 1.5 changed the way that 'Java Build Path/Projects' works in the eclipse ADT plugin. (see http://osdir.com/ml/AndroidDevelopers/2009-05/msg00192.html). Previously in eclipse, marking a project to depend on another lead to the compiled .class files from the dependency to be included i

[android-developers] Re: I get "Unable to resolve static field" error

2009-05-11 Thread Rakoun
I don't try to communicate between Project1 and Project2 or to send data from Project2 to Project1. I just want to use a class from Project1 in Project2. Before I update to 1.5 it worked. Rakoun /°\ On 11 mai, 03:08, Raphael wrote: > Different applications run in distinct VMs. You can't just ac

[android-developers] Re: I get "Unable to resolve static field" error

2009-05-11 Thread Raphael
Different applications run in distinct VMs. You can't just access data directly. The Android way of sharing data between activities is to send an Intent. R/ On Sun, May 10, 2009 at 7:23 PM, Rakoun wrote: > > Bonsoir tout le monde, > > I investigated more and I notice that. > If I create a proj

[android-developers] Re: I get "Unable to resolve static field" error

2009-05-10 Thread Rakoun
Bonsoir tout le monde, I investigated more and I notice that. If I create a project, named "Project1" with one Activiy and with a class name A that have a Uri pulic static field and if I create another project named "Project2" that reference "Project1", if in "Project2" I try to assign A.myuri to

[android-developers] Re: I get "Unable to resolve static field" error

2009-05-10 Thread Rakoun
Bonsoir tout le monde, I investigated more and I notice that. If I create a project, named "Project1" with one Activiy and with a class name A that have a Uri pulic static field and if I create another project named "Project2" that reference "Project1", if in "Project2" I try to assign A.myuri to