uses-sdk:minSdkVersion 7 cannot be smaller than version 9 declared in library
You just need to update your minSdkVersion 7
to minSdkVersion 9
in your gradle file.
Its just mean that your application must not have minSdkVersion (minimum SDK version) lesser then the library minSdkVersion.
update your gradle file and build project again.