├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── art ├── medium-48.jpg ├── res │ ├── 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 ├── retrofit2-1618.png ├── retrofit2.png ├── retrofit2.svg ├── screenshot-yongjhih-retrofit2.jpg ├── screenshot-yongjhih.jpg └── web_hi_res_512.png ├── circle.yml ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── retrofit-android ├── android-javadoc.gradle ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── retrofit │ └── android │ └── AuthenticationInterceptor.java ├── retrofit-processor ├── build.gradle └── src │ ├── main │ ├── java │ │ └── retrofit │ │ │ └── processor │ │ │ ├── AbortProcessingException.java │ │ │ ├── AbstractMethodExtractor.java │ │ │ ├── AbstractMethodLister.java │ │ │ ├── AnnotationOutput.java │ │ │ ├── BuilderSpec.java │ │ │ ├── EclipseHack.java │ │ │ ├── ErrorReporter.java │ │ │ ├── GwtCompatibility.java │ │ │ ├── GwtSerialization.java │ │ │ ├── JavaTokenizer.java │ │ │ ├── MissingTypeException.java │ │ │ ├── Reformatter.java │ │ │ ├── RetrofitBuilderProcessor.java │ │ │ ├── RetrofitProcessor.java │ │ │ ├── RetrofitTemplateVars.java │ │ │ ├── SimpleNameFunction.java │ │ │ ├── TemplateVars.java │ │ │ ├── TypeMirrorSet.java │ │ │ ├── TypeSimplifier.java │ │ │ └── package-info.java │ └── resources │ │ └── retrofit │ │ └── processor │ │ ├── gwtserializer.vm │ │ └── retrofit.vm │ └── test │ └── java │ └── retrofit │ └── processor │ ├── AbstractMethodExtractorTest.java │ ├── AbstractMethodListerTest.java │ ├── CompilationErrorsTest.java │ ├── CompilationTest.java │ ├── JavaTokenizerTest.java │ ├── NoVelocityLoggingTest.java │ ├── PropertyAnnotationsTest.java │ ├── ReformatterTest.java │ ├── TemplateVarsTest.java │ ├── TypeSimplifierTest.java │ └── VelocityClassLoaderTest.java ├── retrofit ├── build.gradle └── src │ └── main │ └── java │ └── retrofit │ └── http │ ├── RequestException.java │ ├── Retrofit.java │ ├── TypePreconditions.java │ ├── TypeToken.java │ └── Types.java ├── retrofit2-github-app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── github │ │ └── retrofit2 │ │ └── app │ │ ├── BindViewHolder.java │ │ ├── Card.java │ │ ├── CardsFragment.java │ │ ├── CheeseDetailActivity.java │ │ ├── CheeseListFragment.java │ │ ├── Cheeses.java │ │ ├── Item.java │ │ ├── ListFragment.java │ │ ├── ListRecyclerAdapter.java │ │ ├── MainActivity.java │ │ ├── MeasuredLinearLayoutManager.java │ │ ├── RxCard.java │ │ └── RxCardsFragment.java │ └── res │ ├── drawable-hdpi │ ├── ic_comment.png │ ├── ic_comment_outline.png │ ├── ic_dashboard.png │ ├── ic_discuss.png │ ├── ic_done.png │ ├── ic_event.png │ ├── ic_forum.png │ ├── ic_headset.png │ ├── ic_menu.png │ ├── ic_send.png │ ├── ic_thumb_up.png │ └── ic_thumb_up_outline.png │ ├── drawable-ldpi │ ├── ic_comment.png │ ├── ic_comment_outline.png │ ├── ic_send.png │ ├── ic_thumb_up.png │ └── ic_thumb_up_outline.png │ ├── drawable-mdpi │ ├── ic_comment.png │ ├── ic_comment_outline.png │ ├── ic_dashboard.png │ ├── ic_discuss.png │ ├── ic_done.png │ ├── ic_event.png │ ├── ic_forum.png │ ├── ic_headset.png │ ├── ic_menu.png │ ├── ic_send.png │ ├── ic_thumb_up.png │ └── ic_thumb_up_outline.png │ ├── drawable-xhdpi │ ├── ic_comment.png │ ├── ic_comment_outline.png │ ├── ic_dashboard.png │ ├── ic_discuss.png │ ├── ic_done.png │ ├── ic_event.png │ ├── ic_forum.png │ ├── ic_headset.png │ ├── ic_menu.png │ ├── ic_send.png │ ├── ic_thumb_up.png │ ├── ic_thumb_up_outline.png │ └── ic_unknown_avatar.png │ ├── drawable-xxhdpi │ ├── ic_comment.png │ ├── ic_comment_outline.png │ ├── ic_dashboard.png │ ├── ic_discuss.png │ ├── ic_done.png │ ├── ic_event.png │ ├── ic_forum.png │ ├── ic_headset.png │ ├── ic_menu.png │ ├── ic_send.png │ ├── ic_thumb_up.png │ └── ic_thumb_up_outline.png │ ├── drawable-xxxhdpi │ ├── ic_comment.png │ ├── ic_comment_outline.png │ ├── ic_done.png │ ├── ic_menu.png │ ├── ic_send.png │ ├── ic_thumb_up.png │ └── ic_thumb_up_outline.png │ ├── drawable │ ├── cheese_1.jpg │ ├── cheese_2.jpg │ ├── cheese_3.jpg │ ├── cheese_4.jpg │ └── cheese_5.jpg │ ├── layout │ ├── activity_detail.xml │ ├── activity_main.xml │ ├── fragment_cheese_list.xml │ ├── fragment_list.xml │ ├── fragment_list_swipe.xml │ ├── include_list_viewpager.xml │ ├── item_card.xml │ ├── item_comment.xml │ ├── item_post_card.xml │ ├── list_item.xml │ └── nav_header.xml │ ├── menu │ ├── drawer_view.xml │ └── sample_actions.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-v21 │ └── styles.xml │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── retrofit2-github ├── build.gradle └── src │ ├── main │ ├── AndroidManifest.xml │ └── java │ │ └── com │ │ └── github │ │ ├── mobile │ │ └── model │ │ │ ├── App.java │ │ │ └── Authorization.java │ │ └── retrofit2 │ │ ├── Contributor.java │ │ ├── GitHub.java │ │ ├── GitHub2.java │ │ ├── GitHubAuthInterceptor.java │ │ ├── GitHubAuthenticator.java │ │ ├── GitHubErrorHandler.java │ │ ├── GitHubOkHttpClienter.java │ │ ├── GitHubRequestInterceptor.java │ │ ├── MockErrorHandler.java │ │ ├── MockService.java │ │ └── Repository.java │ └── test │ └── java │ └── com │ └── github │ └── retrofit2 │ └── MainTest.java └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/README.md -------------------------------------------------------------------------------- /art/medium-48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/art/medium-48.jpg -------------------------------------------------------------------------------- /art/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/art/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /art/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/art/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /art/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/art/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /art/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/art/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /art/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/art/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /art/retrofit2-1618.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/art/retrofit2-1618.png -------------------------------------------------------------------------------- /art/retrofit2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/art/retrofit2.png -------------------------------------------------------------------------------- /art/retrofit2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/art/retrofit2.svg -------------------------------------------------------------------------------- /art/screenshot-yongjhih-retrofit2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/art/screenshot-yongjhih-retrofit2.jpg -------------------------------------------------------------------------------- /art/screenshot-yongjhih.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/art/screenshot-yongjhih.jpg -------------------------------------------------------------------------------- /art/web_hi_res_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/art/web_hi_res_512.png -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/circle.yml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/gradlew.bat -------------------------------------------------------------------------------- /retrofit-android/android-javadoc.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit-android/android-javadoc.gradle -------------------------------------------------------------------------------- /retrofit-android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit-android/build.gradle -------------------------------------------------------------------------------- /retrofit-android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit-android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /retrofit-android/src/main/java/retrofit/android/AuthenticationInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit-android/src/main/java/retrofit/android/AuthenticationInterceptor.java -------------------------------------------------------------------------------- /retrofit-processor/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit-processor/build.gradle -------------------------------------------------------------------------------- /retrofit-processor/src/main/java/retrofit/processor/AbortProcessingException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit-processor/src/main/java/retrofit/processor/AbortProcessingException.java -------------------------------------------------------------------------------- /retrofit-processor/src/main/java/retrofit/processor/AbstractMethodExtractor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit-processor/src/main/java/retrofit/processor/AbstractMethodExtractor.java -------------------------------------------------------------------------------- /retrofit-processor/src/main/java/retrofit/processor/AbstractMethodLister.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit-processor/src/main/java/retrofit/processor/AbstractMethodLister.java -------------------------------------------------------------------------------- /retrofit-processor/src/main/java/retrofit/processor/AnnotationOutput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit-processor/src/main/java/retrofit/processor/AnnotationOutput.java -------------------------------------------------------------------------------- /retrofit-processor/src/main/java/retrofit/processor/BuilderSpec.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit-processor/src/main/java/retrofit/processor/BuilderSpec.java -------------------------------------------------------------------------------- /retrofit-processor/src/main/java/retrofit/processor/EclipseHack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit-processor/src/main/java/retrofit/processor/EclipseHack.java -------------------------------------------------------------------------------- /retrofit-processor/src/main/java/retrofit/processor/ErrorReporter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit-processor/src/main/java/retrofit/processor/ErrorReporter.java -------------------------------------------------------------------------------- /retrofit-processor/src/main/java/retrofit/processor/GwtCompatibility.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit-processor/src/main/java/retrofit/processor/GwtCompatibility.java -------------------------------------------------------------------------------- /retrofit-processor/src/main/java/retrofit/processor/GwtSerialization.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit-processor/src/main/java/retrofit/processor/GwtSerialization.java -------------------------------------------------------------------------------- /retrofit-processor/src/main/java/retrofit/processor/JavaTokenizer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit-processor/src/main/java/retrofit/processor/JavaTokenizer.java -------------------------------------------------------------------------------- /retrofit-processor/src/main/java/retrofit/processor/MissingTypeException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit-processor/src/main/java/retrofit/processor/MissingTypeException.java -------------------------------------------------------------------------------- /retrofit-processor/src/main/java/retrofit/processor/Reformatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit-processor/src/main/java/retrofit/processor/Reformatter.java -------------------------------------------------------------------------------- /retrofit-processor/src/main/java/retrofit/processor/RetrofitBuilderProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit-processor/src/main/java/retrofit/processor/RetrofitBuilderProcessor.java -------------------------------------------------------------------------------- /retrofit-processor/src/main/java/retrofit/processor/RetrofitProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit-processor/src/main/java/retrofit/processor/RetrofitProcessor.java -------------------------------------------------------------------------------- /retrofit-processor/src/main/java/retrofit/processor/RetrofitTemplateVars.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit-processor/src/main/java/retrofit/processor/RetrofitTemplateVars.java -------------------------------------------------------------------------------- /retrofit-processor/src/main/java/retrofit/processor/SimpleNameFunction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit-processor/src/main/java/retrofit/processor/SimpleNameFunction.java -------------------------------------------------------------------------------- /retrofit-processor/src/main/java/retrofit/processor/TemplateVars.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit-processor/src/main/java/retrofit/processor/TemplateVars.java -------------------------------------------------------------------------------- /retrofit-processor/src/main/java/retrofit/processor/TypeMirrorSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit-processor/src/main/java/retrofit/processor/TypeMirrorSet.java -------------------------------------------------------------------------------- /retrofit-processor/src/main/java/retrofit/processor/TypeSimplifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit-processor/src/main/java/retrofit/processor/TypeSimplifier.java -------------------------------------------------------------------------------- /retrofit-processor/src/main/java/retrofit/processor/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit-processor/src/main/java/retrofit/processor/package-info.java -------------------------------------------------------------------------------- /retrofit-processor/src/main/resources/retrofit/processor/gwtserializer.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit-processor/src/main/resources/retrofit/processor/gwtserializer.vm -------------------------------------------------------------------------------- /retrofit-processor/src/main/resources/retrofit/processor/retrofit.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit-processor/src/main/resources/retrofit/processor/retrofit.vm -------------------------------------------------------------------------------- /retrofit-processor/src/test/java/retrofit/processor/AbstractMethodExtractorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit-processor/src/test/java/retrofit/processor/AbstractMethodExtractorTest.java -------------------------------------------------------------------------------- /retrofit-processor/src/test/java/retrofit/processor/AbstractMethodListerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit-processor/src/test/java/retrofit/processor/AbstractMethodListerTest.java -------------------------------------------------------------------------------- /retrofit-processor/src/test/java/retrofit/processor/CompilationErrorsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit-processor/src/test/java/retrofit/processor/CompilationErrorsTest.java -------------------------------------------------------------------------------- /retrofit-processor/src/test/java/retrofit/processor/CompilationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit-processor/src/test/java/retrofit/processor/CompilationTest.java -------------------------------------------------------------------------------- /retrofit-processor/src/test/java/retrofit/processor/JavaTokenizerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit-processor/src/test/java/retrofit/processor/JavaTokenizerTest.java -------------------------------------------------------------------------------- /retrofit-processor/src/test/java/retrofit/processor/NoVelocityLoggingTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit-processor/src/test/java/retrofit/processor/NoVelocityLoggingTest.java -------------------------------------------------------------------------------- /retrofit-processor/src/test/java/retrofit/processor/PropertyAnnotationsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit-processor/src/test/java/retrofit/processor/PropertyAnnotationsTest.java -------------------------------------------------------------------------------- /retrofit-processor/src/test/java/retrofit/processor/ReformatterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit-processor/src/test/java/retrofit/processor/ReformatterTest.java -------------------------------------------------------------------------------- /retrofit-processor/src/test/java/retrofit/processor/TemplateVarsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit-processor/src/test/java/retrofit/processor/TemplateVarsTest.java -------------------------------------------------------------------------------- /retrofit-processor/src/test/java/retrofit/processor/TypeSimplifierTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit-processor/src/test/java/retrofit/processor/TypeSimplifierTest.java -------------------------------------------------------------------------------- /retrofit-processor/src/test/java/retrofit/processor/VelocityClassLoaderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit-processor/src/test/java/retrofit/processor/VelocityClassLoaderTest.java -------------------------------------------------------------------------------- /retrofit/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit/build.gradle -------------------------------------------------------------------------------- /retrofit/src/main/java/retrofit/http/RequestException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit/src/main/java/retrofit/http/RequestException.java -------------------------------------------------------------------------------- /retrofit/src/main/java/retrofit/http/Retrofit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit/src/main/java/retrofit/http/Retrofit.java -------------------------------------------------------------------------------- /retrofit/src/main/java/retrofit/http/TypePreconditions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit/src/main/java/retrofit/http/TypePreconditions.java -------------------------------------------------------------------------------- /retrofit/src/main/java/retrofit/http/TypeToken.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit/src/main/java/retrofit/http/TypeToken.java -------------------------------------------------------------------------------- /retrofit/src/main/java/retrofit/http/Types.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit/src/main/java/retrofit/http/Types.java -------------------------------------------------------------------------------- /retrofit2-github-app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /retrofit2-github-app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/build.gradle -------------------------------------------------------------------------------- /retrofit2-github-app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/proguard-rules.pro -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/java/com/github/retrofit2/app/BindViewHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/java/com/github/retrofit2/app/BindViewHolder.java -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/java/com/github/retrofit2/app/Card.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/java/com/github/retrofit2/app/Card.java -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/java/com/github/retrofit2/app/CardsFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/java/com/github/retrofit2/app/CardsFragment.java -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/java/com/github/retrofit2/app/CheeseDetailActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/java/com/github/retrofit2/app/CheeseDetailActivity.java -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/java/com/github/retrofit2/app/CheeseListFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/java/com/github/retrofit2/app/CheeseListFragment.java -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/java/com/github/retrofit2/app/Cheeses.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/java/com/github/retrofit2/app/Cheeses.java -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/java/com/github/retrofit2/app/Item.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/java/com/github/retrofit2/app/Item.java -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/java/com/github/retrofit2/app/ListFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/java/com/github/retrofit2/app/ListFragment.java -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/java/com/github/retrofit2/app/ListRecyclerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/java/com/github/retrofit2/app/ListRecyclerAdapter.java -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/java/com/github/retrofit2/app/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/java/com/github/retrofit2/app/MainActivity.java -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/java/com/github/retrofit2/app/MeasuredLinearLayoutManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/java/com/github/retrofit2/app/MeasuredLinearLayoutManager.java -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/java/com/github/retrofit2/app/RxCard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/java/com/github/retrofit2/app/RxCard.java -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/java/com/github/retrofit2/app/RxCardsFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/java/com/github/retrofit2/app/RxCardsFragment.java -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-hdpi/ic_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-hdpi/ic_comment.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-hdpi/ic_comment_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-hdpi/ic_comment_outline.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-hdpi/ic_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-hdpi/ic_dashboard.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-hdpi/ic_discuss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-hdpi/ic_discuss.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-hdpi/ic_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-hdpi/ic_done.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-hdpi/ic_event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-hdpi/ic_event.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-hdpi/ic_forum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-hdpi/ic_forum.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-hdpi/ic_headset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-hdpi/ic_headset.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-hdpi/ic_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-hdpi/ic_menu.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-hdpi/ic_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-hdpi/ic_send.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-hdpi/ic_thumb_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-hdpi/ic_thumb_up.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-hdpi/ic_thumb_up_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-hdpi/ic_thumb_up_outline.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-ldpi/ic_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-ldpi/ic_comment.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-ldpi/ic_comment_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-ldpi/ic_comment_outline.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-ldpi/ic_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-ldpi/ic_send.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-ldpi/ic_thumb_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-ldpi/ic_thumb_up.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-ldpi/ic_thumb_up_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-ldpi/ic_thumb_up_outline.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-mdpi/ic_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-mdpi/ic_comment.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-mdpi/ic_comment_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-mdpi/ic_comment_outline.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-mdpi/ic_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-mdpi/ic_dashboard.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-mdpi/ic_discuss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-mdpi/ic_discuss.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-mdpi/ic_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-mdpi/ic_done.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-mdpi/ic_event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-mdpi/ic_event.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-mdpi/ic_forum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-mdpi/ic_forum.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-mdpi/ic_headset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-mdpi/ic_headset.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-mdpi/ic_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-mdpi/ic_menu.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-mdpi/ic_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-mdpi/ic_send.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-mdpi/ic_thumb_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-mdpi/ic_thumb_up.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-mdpi/ic_thumb_up_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-mdpi/ic_thumb_up_outline.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-xhdpi/ic_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-xhdpi/ic_comment.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-xhdpi/ic_comment_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-xhdpi/ic_comment_outline.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-xhdpi/ic_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-xhdpi/ic_dashboard.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-xhdpi/ic_discuss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-xhdpi/ic_discuss.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-xhdpi/ic_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-xhdpi/ic_done.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-xhdpi/ic_event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-xhdpi/ic_event.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-xhdpi/ic_forum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-xhdpi/ic_forum.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-xhdpi/ic_headset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-xhdpi/ic_headset.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-xhdpi/ic_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-xhdpi/ic_menu.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-xhdpi/ic_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-xhdpi/ic_send.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-xhdpi/ic_thumb_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-xhdpi/ic_thumb_up.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-xhdpi/ic_thumb_up_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-xhdpi/ic_thumb_up_outline.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-xhdpi/ic_unknown_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-xhdpi/ic_unknown_avatar.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-xxhdpi/ic_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-xxhdpi/ic_comment.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-xxhdpi/ic_comment_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-xxhdpi/ic_comment_outline.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-xxhdpi/ic_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-xxhdpi/ic_dashboard.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-xxhdpi/ic_discuss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-xxhdpi/ic_discuss.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-xxhdpi/ic_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-xxhdpi/ic_done.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-xxhdpi/ic_event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-xxhdpi/ic_event.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-xxhdpi/ic_forum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-xxhdpi/ic_forum.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-xxhdpi/ic_headset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-xxhdpi/ic_headset.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-xxhdpi/ic_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-xxhdpi/ic_menu.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-xxhdpi/ic_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-xxhdpi/ic_send.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-xxhdpi/ic_thumb_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-xxhdpi/ic_thumb_up.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-xxhdpi/ic_thumb_up_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-xxhdpi/ic_thumb_up_outline.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-xxxhdpi/ic_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-xxxhdpi/ic_comment.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-xxxhdpi/ic_comment_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-xxxhdpi/ic_comment_outline.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-xxxhdpi/ic_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-xxxhdpi/ic_done.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-xxxhdpi/ic_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-xxxhdpi/ic_menu.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-xxxhdpi/ic_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-xxxhdpi/ic_send.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-xxxhdpi/ic_thumb_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-xxxhdpi/ic_thumb_up.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable-xxxhdpi/ic_thumb_up_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable-xxxhdpi/ic_thumb_up_outline.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable/cheese_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable/cheese_1.jpg -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable/cheese_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable/cheese_2.jpg -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable/cheese_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable/cheese_3.jpg -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable/cheese_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable/cheese_4.jpg -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/drawable/cheese_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/drawable/cheese_5.jpg -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/layout/activity_detail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/layout/activity_detail.xml -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/layout/fragment_cheese_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/layout/fragment_cheese_list.xml -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/layout/fragment_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/layout/fragment_list.xml -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/layout/fragment_list_swipe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/layout/fragment_list_swipe.xml -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/layout/include_list_viewpager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/layout/include_list_viewpager.xml -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/layout/item_card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/layout/item_card.xml -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/layout/item_comment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/layout/item_comment.xml -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/layout/item_post_card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/layout/item_post_card.xml -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/layout/list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/layout/list_item.xml -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/layout/nav_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/layout/nav_header.xml -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/menu/drawer_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/menu/drawer_view.xml -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/menu/sample_actions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/menu/sample_actions.xml -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /retrofit2-github-app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github-app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /retrofit2-github/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github/build.gradle -------------------------------------------------------------------------------- /retrofit2-github/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /retrofit2-github/src/main/java/com/github/mobile/model/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github/src/main/java/com/github/mobile/model/App.java -------------------------------------------------------------------------------- /retrofit2-github/src/main/java/com/github/mobile/model/Authorization.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github/src/main/java/com/github/mobile/model/Authorization.java -------------------------------------------------------------------------------- /retrofit2-github/src/main/java/com/github/retrofit2/Contributor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github/src/main/java/com/github/retrofit2/Contributor.java -------------------------------------------------------------------------------- /retrofit2-github/src/main/java/com/github/retrofit2/GitHub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github/src/main/java/com/github/retrofit2/GitHub.java -------------------------------------------------------------------------------- /retrofit2-github/src/main/java/com/github/retrofit2/GitHub2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github/src/main/java/com/github/retrofit2/GitHub2.java -------------------------------------------------------------------------------- /retrofit2-github/src/main/java/com/github/retrofit2/GitHubAuthInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github/src/main/java/com/github/retrofit2/GitHubAuthInterceptor.java -------------------------------------------------------------------------------- /retrofit2-github/src/main/java/com/github/retrofit2/GitHubAuthenticator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github/src/main/java/com/github/retrofit2/GitHubAuthenticator.java -------------------------------------------------------------------------------- /retrofit2-github/src/main/java/com/github/retrofit2/GitHubErrorHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github/src/main/java/com/github/retrofit2/GitHubErrorHandler.java -------------------------------------------------------------------------------- /retrofit2-github/src/main/java/com/github/retrofit2/GitHubOkHttpClienter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github/src/main/java/com/github/retrofit2/GitHubOkHttpClienter.java -------------------------------------------------------------------------------- /retrofit2-github/src/main/java/com/github/retrofit2/GitHubRequestInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github/src/main/java/com/github/retrofit2/GitHubRequestInterceptor.java -------------------------------------------------------------------------------- /retrofit2-github/src/main/java/com/github/retrofit2/MockErrorHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github/src/main/java/com/github/retrofit2/MockErrorHandler.java -------------------------------------------------------------------------------- /retrofit2-github/src/main/java/com/github/retrofit2/MockService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github/src/main/java/com/github/retrofit2/MockService.java -------------------------------------------------------------------------------- /retrofit2-github/src/main/java/com/github/retrofit2/Repository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github/src/main/java/com/github/retrofit2/Repository.java -------------------------------------------------------------------------------- /retrofit2-github/src/test/java/com/github/retrofit2/MainTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/retrofit2-github/src/test/java/com/github/retrofit2/MainTest.java -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongjhih/NotRetrofit/HEAD/settings.gradle --------------------------------------------------------------------------------