├── .gitattributes ├── .gitignore ├── .idea ├── caches │ └── build_file_checksums.ser ├── codeStyles │ └── Project.xml ├── gradle.xml ├── misc.xml ├── modules.xml └── runConfigurations.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── libs │ └── YouTubeAndroidPlayerApi.jar ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── app │ │ └── com │ │ └── youtubeapiv3 │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── app │ │ │ └── com │ │ │ └── youtubeapiv3 │ │ │ ├── DetailsActivity.java │ │ │ ├── MainActivity.java │ │ │ ├── adapters │ │ │ ├── CommentAdapter.java │ │ │ └── VideoPostAdapter.java │ │ │ ├── fragments │ │ │ └── ChannelFragment.java │ │ │ ├── interfaces │ │ │ └── OnItemClickListener.java │ │ │ └── models │ │ │ ├── YoutubeCommentModel.java │ │ │ └── YoutubeDataModel.java │ └── res │ │ ├── drawable │ │ ├── background_gradient.xml │ │ ├── share.png │ │ └── share2.png │ │ ├── layout │ │ ├── activity_details.xml │ │ ├── activity_main.xml │ │ ├── fragment_channel.xml │ │ ├── youtube_comment_layout.xml │ │ └── youtube_post_layout.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 │ └── app │ └── com │ └── youtubeapiv3 │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/libs/YouTubeAndroidPlayerApi.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/app/libs/YouTubeAndroidPlayerApi.jar -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/app/com/youtubeapiv3/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/app/src/androidTest/java/app/com/youtubeapiv3/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/app/com/youtubeapiv3/DetailsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/app/src/main/java/app/com/youtubeapiv3/DetailsActivity.java -------------------------------------------------------------------------------- /app/src/main/java/app/com/youtubeapiv3/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/app/src/main/java/app/com/youtubeapiv3/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/app/com/youtubeapiv3/adapters/CommentAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/app/src/main/java/app/com/youtubeapiv3/adapters/CommentAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/app/com/youtubeapiv3/adapters/VideoPostAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/app/src/main/java/app/com/youtubeapiv3/adapters/VideoPostAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/app/com/youtubeapiv3/fragments/ChannelFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/app/src/main/java/app/com/youtubeapiv3/fragments/ChannelFragment.java -------------------------------------------------------------------------------- /app/src/main/java/app/com/youtubeapiv3/interfaces/OnItemClickListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/app/src/main/java/app/com/youtubeapiv3/interfaces/OnItemClickListener.java -------------------------------------------------------------------------------- /app/src/main/java/app/com/youtubeapiv3/models/YoutubeCommentModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/app/src/main/java/app/com/youtubeapiv3/models/YoutubeCommentModel.java -------------------------------------------------------------------------------- /app/src/main/java/app/com/youtubeapiv3/models/YoutubeDataModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/app/src/main/java/app/com/youtubeapiv3/models/YoutubeDataModel.java -------------------------------------------------------------------------------- /app/src/main/res/drawable/background_gradient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/app/src/main/res/drawable/background_gradient.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/app/src/main/res/drawable/share.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/share2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/app/src/main/res/drawable/share2.png -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/app/src/main/res/layout/activity_details.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_channel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/app/src/main/res/layout/fragment_channel.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/youtube_comment_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/app/src/main/res/layout/youtube_comment_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/youtube_post_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/app/src/main/res/layout/youtube_post_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/app/com/youtubeapiv3/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/app/src/test/java/app/com/youtubeapiv3/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonsterTechnoGit/YouTube-API-YouTube-API-to-fetch-all-videos-on-a-channel/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------