├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── android-wait-for-emulator ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── me │ │ └── toptas │ │ └── rssconvertersample │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── me │ │ │ └── toptas │ │ │ └── rssconvertersample │ │ │ ├── MainActivity.kt │ │ │ ├── RssFragment.kt │ │ │ ├── RssItemsAdapter.kt │ │ │ └── RssService.kt │ └── res │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── fragment_rss.xml │ │ └── row_rss_item.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-v11 │ │ └── styles.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── me │ └── toptas │ └── rssconvertersample │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── library ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── me │ │ └── toptas │ │ └── rssconverter │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── me │ │ │ └── toptas │ │ │ └── rssconverter │ │ │ ├── RssConverterFactory.kt │ │ │ ├── RssFeed.kt │ │ │ ├── RssItem.kt │ │ │ ├── RssResponseBodyConverter.kt │ │ │ └── XMLParser.kt │ └── res │ │ └── values │ │ └── strings.xml │ └── test │ └── java │ └── me │ └── toptas │ └── rssconverter │ └── ExampleUnitTest.kt └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/README.md -------------------------------------------------------------------------------- /android-wait-for-emulator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/android-wait-for-emulator -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/me/toptas/rssconvertersample/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/app/src/androidTest/java/me/toptas/rssconvertersample/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/me/toptas/rssconvertersample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/app/src/main/java/me/toptas/rssconvertersample/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/me/toptas/rssconvertersample/RssFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/app/src/main/java/me/toptas/rssconvertersample/RssFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/me/toptas/rssconvertersample/RssItemsAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/app/src/main/java/me/toptas/rssconvertersample/RssItemsAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/me/toptas/rssconvertersample/RssService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/app/src/main/java/me/toptas/rssconvertersample/RssService.kt -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_rss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/app/src/main/res/layout/fragment_rss.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/row_rss_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/app/src/main/res/layout/row_rss_item.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/app/src/main/res/values-v11/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/me/toptas/rssconvertersample/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/app/src/test/java/me/toptas/rssconvertersample/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/gradlew.bat -------------------------------------------------------------------------------- /library/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/library/build.gradle -------------------------------------------------------------------------------- /library/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/library/proguard-rules.pro -------------------------------------------------------------------------------- /library/src/androidTest/java/me/toptas/rssconverter/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/library/src/androidTest/java/me/toptas/rssconverter/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /library/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/library/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /library/src/main/java/me/toptas/rssconverter/RssConverterFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/library/src/main/java/me/toptas/rssconverter/RssConverterFactory.kt -------------------------------------------------------------------------------- /library/src/main/java/me/toptas/rssconverter/RssFeed.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/library/src/main/java/me/toptas/rssconverter/RssFeed.kt -------------------------------------------------------------------------------- /library/src/main/java/me/toptas/rssconverter/RssItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/library/src/main/java/me/toptas/rssconverter/RssItem.kt -------------------------------------------------------------------------------- /library/src/main/java/me/toptas/rssconverter/RssResponseBodyConverter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/library/src/main/java/me/toptas/rssconverter/RssResponseBodyConverter.kt -------------------------------------------------------------------------------- /library/src/main/java/me/toptas/rssconverter/XMLParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/library/src/main/java/me/toptas/rssconverter/XMLParser.kt -------------------------------------------------------------------------------- /library/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/library/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /library/src/test/java/me/toptas/rssconverter/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruktoptas/RetrofitRssConverterFactory/HEAD/library/src/test/java/me/toptas/rssconverter/ExampleUnitTest.kt -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':library' 2 | --------------------------------------------------------------------------------