├── .gitignore ├── LICENSE ├── README.md ├── art ├── gitty.gif ├── landscape.png ├── portrait.png └── portrait2.png ├── example ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── github │ │ └── paolorotolo │ │ └── gitty_reporter_example │ │ └── ApplicationTest.java │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── github │ │ └── paolorotolo │ │ └── gitty_reporter_example │ │ ├── GittyReporterExample.java │ │ ├── GittyReporterNoGuestExample.java │ │ ├── GittyReporterNoLoginExample.java │ │ └── MainActivity.java │ └── res │ ├── layout │ └── activity_main.xml │ ├── menu │ └── menu_main.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── mipmap-xxxhdpi │ └── ic_launcher.png │ ├── values-w820dp │ └── dimens.xml │ └── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── library ├── .gitignore ├── build.gradle ├── maven-push.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── github │ │ └── paolorotolo │ │ └── gitty_reporter │ │ └── ApplicationTest.java │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── github │ │ └── paolorotolo │ │ └── gitty_reporter │ │ ├── GittyReporter.java │ │ └── reportIssue.java │ └── res │ ├── drawable-hdpi │ ├── gittyreporter_ic_arrow_forward_black_18dp.png │ ├── gittyreporter_ic_done_white_256dp_1x.png │ ├── gittyreporter_ic_mood_bad_black_24dp.png │ └── gittyreporter_ic_send_white_18dp.png │ ├── drawable-ldrtl-hdpi │ └── gittyreporter_ic_send_white_18dp.png │ ├── drawable-ldrtl-mdpi │ └── gittyreporter_ic_send_white_18dp.png │ ├── drawable-ldrtl-xhdpi │ └── gittyreporter_ic_send_white_18dp.png │ ├── drawable-ldrtl-xxhdpi │ └── gittyreporter_ic_send_white_18dp.png │ ├── drawable-ldrtl-xxxhdpi │ └── gittyreporter_ic_send_white_18dp.png │ ├── drawable-mdpi │ ├── gittyreporter_ic_arrow_forward_black_18dp.png │ ├── gittyreporter_ic_done_white_256dp_1x.png │ ├── gittyreporter_ic_mood_bad_black_24dp.png │ └── gittyreporter_ic_send_white_18dp.png │ ├── drawable-xhdpi │ ├── gittyreporter_ic_arrow_forward_black_18dp.png │ ├── gittyreporter_ic_done_white_256dp_1x.png │ ├── gittyreporter_ic_mood_bad_black_24dp.png │ └── gittyreporter_ic_send_white_18dp.png │ ├── drawable-xxhdpi │ ├── gittyreporter_ic_arrow_forward_black_18dp.png │ ├── gittyreporter_ic_done_white_256dp_1x.png │ ├── gittyreporter_ic_mood_bad_black_24dp.png │ └── gittyreporter_ic_send_white_18dp.png │ ├── drawable-xxxhdpi │ ├── gittyreporter_ic_arrow_forward_black_18dp.png │ ├── gittyreporter_ic_done_white_256dp_1x.png │ ├── gittyreporter_ic_mood_bad_black_24dp.png │ └── gittyreporter_ic_send_white_18dp.png │ ├── layout │ └── gitty_reporter_layout.xml │ ├── values-large │ └── dimens.xml │ ├── values-v19 │ └── styles.xml │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/README.md -------------------------------------------------------------------------------- /art/gitty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/art/gitty.gif -------------------------------------------------------------------------------- /art/landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/art/landscape.png -------------------------------------------------------------------------------- /art/portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/art/portrait.png -------------------------------------------------------------------------------- /art/portrait2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/art/portrait2.png -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /example/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/example/build.gradle -------------------------------------------------------------------------------- /example/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/example/proguard-rules.pro -------------------------------------------------------------------------------- /example/src/androidTest/java/com/github/paolorotolo/gitty_reporter_example/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/example/src/androidTest/java/com/github/paolorotolo/gitty_reporter_example/ApplicationTest.java -------------------------------------------------------------------------------- /example/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/example/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/src/main/java/com/github/paolorotolo/gitty_reporter_example/GittyReporterExample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/example/src/main/java/com/github/paolorotolo/gitty_reporter_example/GittyReporterExample.java -------------------------------------------------------------------------------- /example/src/main/java/com/github/paolorotolo/gitty_reporter_example/GittyReporterNoGuestExample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/example/src/main/java/com/github/paolorotolo/gitty_reporter_example/GittyReporterNoGuestExample.java -------------------------------------------------------------------------------- /example/src/main/java/com/github/paolorotolo/gitty_reporter_example/GittyReporterNoLoginExample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/example/src/main/java/com/github/paolorotolo/gitty_reporter_example/GittyReporterNoLoginExample.java -------------------------------------------------------------------------------- /example/src/main/java/com/github/paolorotolo/gitty_reporter_example/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/example/src/main/java/com/github/paolorotolo/gitty_reporter_example/MainActivity.java -------------------------------------------------------------------------------- /example/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/example/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /example/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/example/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /example/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/example/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/example/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/example/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/example/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/example/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/example/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /example/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/example/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /example/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/example/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/example/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/gradlew.bat -------------------------------------------------------------------------------- /library/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/library/build.gradle -------------------------------------------------------------------------------- /library/maven-push.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/library/maven-push.gradle -------------------------------------------------------------------------------- /library/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/library/proguard-rules.pro -------------------------------------------------------------------------------- /library/src/androidTest/java/com/github/paolorotolo/gitty_reporter/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/library/src/androidTest/java/com/github/paolorotolo/gitty_reporter/ApplicationTest.java -------------------------------------------------------------------------------- /library/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/library/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /library/src/main/java/com/github/paolorotolo/gitty_reporter/GittyReporter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/library/src/main/java/com/github/paolorotolo/gitty_reporter/GittyReporter.java -------------------------------------------------------------------------------- /library/src/main/java/com/github/paolorotolo/gitty_reporter/reportIssue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/library/src/main/java/com/github/paolorotolo/gitty_reporter/reportIssue.java -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/gittyreporter_ic_arrow_forward_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/library/src/main/res/drawable-hdpi/gittyreporter_ic_arrow_forward_black_18dp.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/gittyreporter_ic_done_white_256dp_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/library/src/main/res/drawable-hdpi/gittyreporter_ic_done_white_256dp_1x.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/gittyreporter_ic_mood_bad_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/library/src/main/res/drawable-hdpi/gittyreporter_ic_mood_bad_black_24dp.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/gittyreporter_ic_send_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/library/src/main/res/drawable-hdpi/gittyreporter_ic_send_white_18dp.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-ldrtl-hdpi/gittyreporter_ic_send_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/library/src/main/res/drawable-ldrtl-hdpi/gittyreporter_ic_send_white_18dp.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-ldrtl-mdpi/gittyreporter_ic_send_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/library/src/main/res/drawable-ldrtl-mdpi/gittyreporter_ic_send_white_18dp.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-ldrtl-xhdpi/gittyreporter_ic_send_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/library/src/main/res/drawable-ldrtl-xhdpi/gittyreporter_ic_send_white_18dp.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-ldrtl-xxhdpi/gittyreporter_ic_send_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/library/src/main/res/drawable-ldrtl-xxhdpi/gittyreporter_ic_send_white_18dp.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-ldrtl-xxxhdpi/gittyreporter_ic_send_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/library/src/main/res/drawable-ldrtl-xxxhdpi/gittyreporter_ic_send_white_18dp.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/gittyreporter_ic_arrow_forward_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/library/src/main/res/drawable-mdpi/gittyreporter_ic_arrow_forward_black_18dp.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/gittyreporter_ic_done_white_256dp_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/library/src/main/res/drawable-mdpi/gittyreporter_ic_done_white_256dp_1x.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/gittyreporter_ic_mood_bad_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/library/src/main/res/drawable-mdpi/gittyreporter_ic_mood_bad_black_24dp.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/gittyreporter_ic_send_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/library/src/main/res/drawable-mdpi/gittyreporter_ic_send_white_18dp.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/gittyreporter_ic_arrow_forward_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/library/src/main/res/drawable-xhdpi/gittyreporter_ic_arrow_forward_black_18dp.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/gittyreporter_ic_done_white_256dp_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/library/src/main/res/drawable-xhdpi/gittyreporter_ic_done_white_256dp_1x.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/gittyreporter_ic_mood_bad_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/library/src/main/res/drawable-xhdpi/gittyreporter_ic_mood_bad_black_24dp.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/gittyreporter_ic_send_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/library/src/main/res/drawable-xhdpi/gittyreporter_ic_send_white_18dp.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/gittyreporter_ic_arrow_forward_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/library/src/main/res/drawable-xxhdpi/gittyreporter_ic_arrow_forward_black_18dp.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/gittyreporter_ic_done_white_256dp_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/library/src/main/res/drawable-xxhdpi/gittyreporter_ic_done_white_256dp_1x.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/gittyreporter_ic_mood_bad_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/library/src/main/res/drawable-xxhdpi/gittyreporter_ic_mood_bad_black_24dp.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/gittyreporter_ic_send_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/library/src/main/res/drawable-xxhdpi/gittyreporter_ic_send_white_18dp.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxxhdpi/gittyreporter_ic_arrow_forward_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/library/src/main/res/drawable-xxxhdpi/gittyreporter_ic_arrow_forward_black_18dp.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxxhdpi/gittyreporter_ic_done_white_256dp_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/library/src/main/res/drawable-xxxhdpi/gittyreporter_ic_done_white_256dp_1x.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxxhdpi/gittyreporter_ic_mood_bad_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/library/src/main/res/drawable-xxxhdpi/gittyreporter_ic_mood_bad_black_24dp.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxxhdpi/gittyreporter_ic_send_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/library/src/main/res/drawable-xxxhdpi/gittyreporter_ic_send_white_18dp.png -------------------------------------------------------------------------------- /library/src/main/res/layout/gitty_reporter_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/library/src/main/res/layout/gitty_reporter_layout.xml -------------------------------------------------------------------------------- /library/src/main/res/values-large/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/library/src/main/res/values-large/dimens.xml -------------------------------------------------------------------------------- /library/src/main/res/values-v19/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/library/src/main/res/values-v19/styles.xml -------------------------------------------------------------------------------- /library/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/library/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /library/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/library/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /library/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/library/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /library/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolorotolo/GittyReporter/HEAD/library/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':library', ':example' 2 | --------------------------------------------------------------------------------