I had a project that worked fully in Eclipse, but after compiling it with ant to use Proguard to obfuscate the code, the whole project fell apart.
The project consists of one package containing two main activities and 4 auxiliary classes for processing databases, etc. After using ant, the actions work fine, but Eclipse cannot find helper classes and will not create. Even if I import classes explicitly, I get an error
The import com.ts.routeTracking.DataHelper cannot be resolved, while additional class references get an error DataHelper cannot be resolved to a type.
How can I get Eclipse and ant to work together?
source
share