I tried importing a proto file named test1.proto to another proto file named test2.proto using the import statement
import "com/test/test1.proto";
But i get the following error
com/test/test1.proto: File not found.
test2.proto: Import "com/test/test1.proto" was not found or had errors.
I tried in many ways to find the cause of the import error but couldn't. So could someone please tell me the correct way of doing proto file imports in case there is something wrong with the above statement??