Design an Android App to display All Closed Pull Requests from Github public repository of your own code.
Design Pattern: MVVM
Api that is being called Internally: https://api.github.com/repos/dhruvkaushal11/GithubV3MvvmAndroid/pulls?state=closed
Network Library Used: Retrofit
Image Laoding Library: Glide
Variables can be changed directly from App Level build.gradle
debug {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
buildConfigField "String", "BASE_URL", "\"https://api.github.com\""
buildConfigField "String", "REPO", "\"GithubV3MvvmAndroid\""
buildConfigField "String", "OWNER", "\"dhruvkaushal11\""
}