I asked a previous question which is apparently a duplicate of this question. I always thought that asterisks were the only way to denote wildcard matching in import statements.
What causes either of the import statements
import android.util.Log;
or
import android.os.Environment;
to be interpreted as patterns that could match multiple packages? Or is there some other definition of wildcard matching that I don't understand?
Please help!