├── Retrofit GET using JSON └── RetrofitJSON │ ├── .gitignore │ ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── tabian │ │ │ └── com │ │ │ └── retrofitjson │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── tabian │ │ │ │ └── com │ │ │ │ └── retrofitjson │ │ │ │ ├── MainActivity.java │ │ │ │ ├── RedditAPI.java │ │ │ │ └── model │ │ │ │ ├── Data.java │ │ │ │ ├── Feed.java │ │ │ │ └── children │ │ │ │ ├── Children.java │ │ │ │ └── Data.java │ │ └── res │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── tabian │ │ └── com │ │ └── retrofitjson │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── Retrofit POST using JSON └── RetrofitJSON ├── .gitignore ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── gradle.xml ├── misc.xml ├── modules.xml └── runConfigurations.xml ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── tabian │ │ └── com │ │ └── retrofitjson │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── tabian │ │ │ └── com │ │ │ └── retrofitjson │ │ │ ├── MainActivity.java │ │ │ ├── RedditAPI.java │ │ │ └── model │ │ │ ├── Data.java │ │ │ ├── Feed.java │ │ │ └── children │ │ │ ├── Children.java │ │ │ └── Data.java │ └── res │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── tabian │ └── com │ └── retrofitjson │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /Retrofit GET using JSON/RetrofitJSON/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit GET using JSON/RetrofitJSON/.gitignore -------------------------------------------------------------------------------- /Retrofit GET using JSON/RetrofitJSON/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit GET using JSON/RetrofitJSON/.idea/compiler.xml -------------------------------------------------------------------------------- /Retrofit GET using JSON/RetrofitJSON/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit GET using JSON/RetrofitJSON/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Retrofit GET using JSON/RetrofitJSON/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit GET using JSON/RetrofitJSON/.idea/gradle.xml -------------------------------------------------------------------------------- /Retrofit GET using JSON/RetrofitJSON/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit GET using JSON/RetrofitJSON/.idea/misc.xml -------------------------------------------------------------------------------- /Retrofit GET using JSON/RetrofitJSON/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit GET using JSON/RetrofitJSON/.idea/modules.xml -------------------------------------------------------------------------------- /Retrofit GET using JSON/RetrofitJSON/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit GET using JSON/RetrofitJSON/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Retrofit GET using JSON/RetrofitJSON/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Retrofit GET using JSON/RetrofitJSON/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit GET using JSON/RetrofitJSON/app/build.gradle -------------------------------------------------------------------------------- /Retrofit GET using JSON/RetrofitJSON/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit GET using JSON/RetrofitJSON/app/proguard-rules.pro -------------------------------------------------------------------------------- /Retrofit GET using JSON/RetrofitJSON/app/src/androidTest/java/tabian/com/retrofitjson/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit GET using JSON/RetrofitJSON/app/src/androidTest/java/tabian/com/retrofitjson/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /Retrofit GET using JSON/RetrofitJSON/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit GET using JSON/RetrofitJSON/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Retrofit GET using JSON/RetrofitJSON/app/src/main/java/tabian/com/retrofitjson/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit GET using JSON/RetrofitJSON/app/src/main/java/tabian/com/retrofitjson/MainActivity.java -------------------------------------------------------------------------------- /Retrofit GET using JSON/RetrofitJSON/app/src/main/java/tabian/com/retrofitjson/RedditAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit GET using JSON/RetrofitJSON/app/src/main/java/tabian/com/retrofitjson/RedditAPI.java -------------------------------------------------------------------------------- /Retrofit GET using JSON/RetrofitJSON/app/src/main/java/tabian/com/retrofitjson/model/Data.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit GET using JSON/RetrofitJSON/app/src/main/java/tabian/com/retrofitjson/model/Data.java -------------------------------------------------------------------------------- /Retrofit GET using JSON/RetrofitJSON/app/src/main/java/tabian/com/retrofitjson/model/Feed.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit GET using JSON/RetrofitJSON/app/src/main/java/tabian/com/retrofitjson/model/Feed.java -------------------------------------------------------------------------------- /Retrofit GET using JSON/RetrofitJSON/app/src/main/java/tabian/com/retrofitjson/model/children/Children.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit GET using JSON/RetrofitJSON/app/src/main/java/tabian/com/retrofitjson/model/children/Children.java -------------------------------------------------------------------------------- /Retrofit GET using JSON/RetrofitJSON/app/src/main/java/tabian/com/retrofitjson/model/children/Data.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit GET using JSON/RetrofitJSON/app/src/main/java/tabian/com/retrofitjson/model/children/Data.java -------------------------------------------------------------------------------- /Retrofit GET using JSON/RetrofitJSON/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit GET using JSON/RetrofitJSON/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Retrofit GET using JSON/RetrofitJSON/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit GET using JSON/RetrofitJSON/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Retrofit GET using JSON/RetrofitJSON/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit GET using JSON/RetrofitJSON/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Retrofit GET using JSON/RetrofitJSON/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit GET using JSON/RetrofitJSON/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Retrofit GET using JSON/RetrofitJSON/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit GET using JSON/RetrofitJSON/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Retrofit GET using JSON/RetrofitJSON/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit GET using JSON/RetrofitJSON/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Retrofit GET using JSON/RetrofitJSON/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit GET using JSON/RetrofitJSON/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Retrofit GET using JSON/RetrofitJSON/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit GET using JSON/RetrofitJSON/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Retrofit GET using JSON/RetrofitJSON/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit GET using JSON/RetrofitJSON/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Retrofit GET using JSON/RetrofitJSON/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit GET using JSON/RetrofitJSON/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Retrofit GET using JSON/RetrofitJSON/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit GET using JSON/RetrofitJSON/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Retrofit GET using JSON/RetrofitJSON/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit GET using JSON/RetrofitJSON/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Retrofit GET using JSON/RetrofitJSON/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit GET using JSON/RetrofitJSON/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Retrofit GET using JSON/RetrofitJSON/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit GET using JSON/RetrofitJSON/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Retrofit GET using JSON/RetrofitJSON/app/src/test/java/tabian/com/retrofitjson/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit GET using JSON/RetrofitJSON/app/src/test/java/tabian/com/retrofitjson/ExampleUnitTest.java -------------------------------------------------------------------------------- /Retrofit GET using JSON/RetrofitJSON/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit GET using JSON/RetrofitJSON/build.gradle -------------------------------------------------------------------------------- /Retrofit GET using JSON/RetrofitJSON/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit GET using JSON/RetrofitJSON/gradle.properties -------------------------------------------------------------------------------- /Retrofit GET using JSON/RetrofitJSON/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit GET using JSON/RetrofitJSON/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Retrofit GET using JSON/RetrofitJSON/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit GET using JSON/RetrofitJSON/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Retrofit GET using JSON/RetrofitJSON/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit GET using JSON/RetrofitJSON/gradlew -------------------------------------------------------------------------------- /Retrofit GET using JSON/RetrofitJSON/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit GET using JSON/RetrofitJSON/gradlew.bat -------------------------------------------------------------------------------- /Retrofit GET using JSON/RetrofitJSON/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit POST using JSON/RetrofitJSON/.gitignore -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit POST using JSON/RetrofitJSON/.idea/compiler.xml -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit POST using JSON/RetrofitJSON/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit POST using JSON/RetrofitJSON/.idea/gradle.xml -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit POST using JSON/RetrofitJSON/.idea/misc.xml -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit POST using JSON/RetrofitJSON/.idea/modules.xml -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit POST using JSON/RetrofitJSON/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit POST using JSON/RetrofitJSON/app/build.gradle -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit POST using JSON/RetrofitJSON/app/proguard-rules.pro -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/app/src/androidTest/java/tabian/com/retrofitjson/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit POST using JSON/RetrofitJSON/app/src/androidTest/java/tabian/com/retrofitjson/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit POST using JSON/RetrofitJSON/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/app/src/main/java/tabian/com/retrofitjson/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit POST using JSON/RetrofitJSON/app/src/main/java/tabian/com/retrofitjson/MainActivity.java -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/app/src/main/java/tabian/com/retrofitjson/RedditAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit POST using JSON/RetrofitJSON/app/src/main/java/tabian/com/retrofitjson/RedditAPI.java -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/app/src/main/java/tabian/com/retrofitjson/model/Data.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit POST using JSON/RetrofitJSON/app/src/main/java/tabian/com/retrofitjson/model/Data.java -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/app/src/main/java/tabian/com/retrofitjson/model/Feed.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit POST using JSON/RetrofitJSON/app/src/main/java/tabian/com/retrofitjson/model/Feed.java -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/app/src/main/java/tabian/com/retrofitjson/model/children/Children.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit POST using JSON/RetrofitJSON/app/src/main/java/tabian/com/retrofitjson/model/children/Children.java -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/app/src/main/java/tabian/com/retrofitjson/model/children/Data.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit POST using JSON/RetrofitJSON/app/src/main/java/tabian/com/retrofitjson/model/children/Data.java -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit POST using JSON/RetrofitJSON/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit POST using JSON/RetrofitJSON/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit POST using JSON/RetrofitJSON/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit POST using JSON/RetrofitJSON/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit POST using JSON/RetrofitJSON/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit POST using JSON/RetrofitJSON/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit POST using JSON/RetrofitJSON/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit POST using JSON/RetrofitJSON/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit POST using JSON/RetrofitJSON/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit POST using JSON/RetrofitJSON/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit POST using JSON/RetrofitJSON/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit POST using JSON/RetrofitJSON/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit POST using JSON/RetrofitJSON/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit POST using JSON/RetrofitJSON/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/app/src/test/java/tabian/com/retrofitjson/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit POST using JSON/RetrofitJSON/app/src/test/java/tabian/com/retrofitjson/ExampleUnitTest.java -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit POST using JSON/RetrofitJSON/build.gradle -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit POST using JSON/RetrofitJSON/gradle.properties -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit POST using JSON/RetrofitJSON/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit POST using JSON/RetrofitJSON/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit POST using JSON/RetrofitJSON/gradlew -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Retrofit/HEAD/Retrofit POST using JSON/RetrofitJSON/gradlew.bat -------------------------------------------------------------------------------- /Retrofit POST using JSON/RetrofitJSON/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------