gitextract_gf_rhgn_/ ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── build.gradle ├── gradle/ │ └── wrapper/ │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── scripts/ │ └── install-snapshot.sh └── src/ ├── main/ │ ├── groovy/ │ │ └── org/ │ │ └── robolectric/ │ │ └── gradle/ │ │ ├── Configuration.groovy │ │ └── RobolectricPlugin.groovy │ └── resources/ │ └── META-INF/ │ └── gradle-plugins/ │ └── org.robolectric.properties └── test/ ├── groovy/ │ └── org/ │ └── robolectric/ │ └── gradle/ │ ├── ExtendedAndroid.groovy │ ├── ExtendedAndroidLibrary.groovy │ ├── ExtendedAppPlugin.groovy │ ├── ExtendedLibraryPlugin.groovy │ └── RobolectricPluginTest.groovy └── resources/ └── META-INF/ └── gradle-plugins/ ├── extended-android-library.properties └── extended-android.properties