├── OlaPlay ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── google-services.json │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── rohksin │ │ │ └── com │ │ │ └── olaplay │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── rohksin │ │ │ │ └── com │ │ │ │ └── olaplay │ │ │ │ ├── Activities │ │ │ │ ├── DevelperProfileActivity.java │ │ │ │ ├── DownloadedActivity.java │ │ │ │ ├── MusicActivity.java │ │ │ │ ├── MusicTest2.java │ │ │ │ ├── MusicTestActivity.java │ │ │ │ ├── SearchActivity.java │ │ │ │ └── SplashActivity.java │ │ │ │ ├── Adapters │ │ │ │ ├── DownloadAdapter.java │ │ │ │ ├── HistoryAdapter.java │ │ │ │ ├── MusicAdapter.java │ │ │ │ └── ResultAdapter.java │ │ │ │ ├── Callbacks │ │ │ │ ├── AdapterItemListener.java │ │ │ │ ├── DownloadTemListener.java │ │ │ │ ├── HistoryItemListener.java │ │ │ │ └── MusicServiceCallbacks.java │ │ │ │ ├── Database │ │ │ │ └── OlaPlayDatabaseHelper.java │ │ │ │ ├── MusicListActivity.java │ │ │ │ ├── POJO │ │ │ │ └── Music.java │ │ │ │ ├── Services │ │ │ │ ├── DownloadToExtStrService.java │ │ │ │ └── MediaPlayerService.java │ │ │ │ └── Utility │ │ │ │ ├── AppUtility.java │ │ │ │ └── RuntimePermissionUtility.java │ │ └── res │ │ │ ├── drawable │ │ │ ├── call.png │ │ │ ├── custom_button.xml │ │ │ ├── dev_mage.jpg │ │ │ ├── download_small.png │ │ │ ├── github.png │ │ │ ├── gmail.png │ │ │ ├── headphones.png │ │ │ ├── linkedin.png │ │ │ ├── next_big.png │ │ │ ├── ola_play_big.png │ │ │ ├── ola_play_logo.png │ │ │ ├── pause_big.png │ │ │ ├── play_big.png │ │ │ ├── play_small_black.png │ │ │ ├── playstore.png │ │ │ ├── prev_big.png │ │ │ ├── search_icon.png │ │ │ ├── stackoverflow.png │ │ │ └── user_placeholder.png │ │ │ ├── layout │ │ │ ├── activity_music_list.xml │ │ │ ├── content_music_list.xml │ │ │ ├── curently_playing_item.xml │ │ │ ├── dev_profile.xml │ │ │ ├── downloaded_activity.xml │ │ │ ├── downloaded_item.xml │ │ │ ├── history_item.xml │ │ │ ├── music_activity.xml │ │ │ ├── music_list_activity.xml │ │ │ ├── music_list_item.xml │ │ │ ├── music_text.xml │ │ │ ├── search_activity.xml │ │ │ ├── splash_activity.xml │ │ │ └── user_past_activity_item.xml │ │ │ ├── menu │ │ │ ├── menu_music_list.xml │ │ │ └── search_menu.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 │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── rohksin │ │ └── com │ │ └── olaplay │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle └── README.md /OlaPlay/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/.gitignore -------------------------------------------------------------------------------- /OlaPlay/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/.idea/compiler.xml -------------------------------------------------------------------------------- /OlaPlay/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /OlaPlay/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/.idea/gradle.xml -------------------------------------------------------------------------------- /OlaPlay/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/.idea/misc.xml -------------------------------------------------------------------------------- /OlaPlay/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/.idea/modules.xml -------------------------------------------------------------------------------- /OlaPlay/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /OlaPlay/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /OlaPlay/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/build.gradle -------------------------------------------------------------------------------- /OlaPlay/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/google-services.json -------------------------------------------------------------------------------- /OlaPlay/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/proguard-rules.pro -------------------------------------------------------------------------------- /OlaPlay/app/src/androidTest/java/rohksin/com/olaplay/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/androidTest/java/rohksin/com/olaplay/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /OlaPlay/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /OlaPlay/app/src/main/java/rohksin/com/olaplay/Activities/DevelperProfileActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/java/rohksin/com/olaplay/Activities/DevelperProfileActivity.java -------------------------------------------------------------------------------- /OlaPlay/app/src/main/java/rohksin/com/olaplay/Activities/DownloadedActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/java/rohksin/com/olaplay/Activities/DownloadedActivity.java -------------------------------------------------------------------------------- /OlaPlay/app/src/main/java/rohksin/com/olaplay/Activities/MusicActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/java/rohksin/com/olaplay/Activities/MusicActivity.java -------------------------------------------------------------------------------- /OlaPlay/app/src/main/java/rohksin/com/olaplay/Activities/MusicTest2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/java/rohksin/com/olaplay/Activities/MusicTest2.java -------------------------------------------------------------------------------- /OlaPlay/app/src/main/java/rohksin/com/olaplay/Activities/MusicTestActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/java/rohksin/com/olaplay/Activities/MusicTestActivity.java -------------------------------------------------------------------------------- /OlaPlay/app/src/main/java/rohksin/com/olaplay/Activities/SearchActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/java/rohksin/com/olaplay/Activities/SearchActivity.java -------------------------------------------------------------------------------- /OlaPlay/app/src/main/java/rohksin/com/olaplay/Activities/SplashActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/java/rohksin/com/olaplay/Activities/SplashActivity.java -------------------------------------------------------------------------------- /OlaPlay/app/src/main/java/rohksin/com/olaplay/Adapters/DownloadAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/java/rohksin/com/olaplay/Adapters/DownloadAdapter.java -------------------------------------------------------------------------------- /OlaPlay/app/src/main/java/rohksin/com/olaplay/Adapters/HistoryAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/java/rohksin/com/olaplay/Adapters/HistoryAdapter.java -------------------------------------------------------------------------------- /OlaPlay/app/src/main/java/rohksin/com/olaplay/Adapters/MusicAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/java/rohksin/com/olaplay/Adapters/MusicAdapter.java -------------------------------------------------------------------------------- /OlaPlay/app/src/main/java/rohksin/com/olaplay/Adapters/ResultAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/java/rohksin/com/olaplay/Adapters/ResultAdapter.java -------------------------------------------------------------------------------- /OlaPlay/app/src/main/java/rohksin/com/olaplay/Callbacks/AdapterItemListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/java/rohksin/com/olaplay/Callbacks/AdapterItemListener.java -------------------------------------------------------------------------------- /OlaPlay/app/src/main/java/rohksin/com/olaplay/Callbacks/DownloadTemListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/java/rohksin/com/olaplay/Callbacks/DownloadTemListener.java -------------------------------------------------------------------------------- /OlaPlay/app/src/main/java/rohksin/com/olaplay/Callbacks/HistoryItemListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/java/rohksin/com/olaplay/Callbacks/HistoryItemListener.java -------------------------------------------------------------------------------- /OlaPlay/app/src/main/java/rohksin/com/olaplay/Callbacks/MusicServiceCallbacks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/java/rohksin/com/olaplay/Callbacks/MusicServiceCallbacks.java -------------------------------------------------------------------------------- /OlaPlay/app/src/main/java/rohksin/com/olaplay/Database/OlaPlayDatabaseHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/java/rohksin/com/olaplay/Database/OlaPlayDatabaseHelper.java -------------------------------------------------------------------------------- /OlaPlay/app/src/main/java/rohksin/com/olaplay/MusicListActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/java/rohksin/com/olaplay/MusicListActivity.java -------------------------------------------------------------------------------- /OlaPlay/app/src/main/java/rohksin/com/olaplay/POJO/Music.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/java/rohksin/com/olaplay/POJO/Music.java -------------------------------------------------------------------------------- /OlaPlay/app/src/main/java/rohksin/com/olaplay/Services/DownloadToExtStrService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/java/rohksin/com/olaplay/Services/DownloadToExtStrService.java -------------------------------------------------------------------------------- /OlaPlay/app/src/main/java/rohksin/com/olaplay/Services/MediaPlayerService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/java/rohksin/com/olaplay/Services/MediaPlayerService.java -------------------------------------------------------------------------------- /OlaPlay/app/src/main/java/rohksin/com/olaplay/Utility/AppUtility.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/java/rohksin/com/olaplay/Utility/AppUtility.java -------------------------------------------------------------------------------- /OlaPlay/app/src/main/java/rohksin/com/olaplay/Utility/RuntimePermissionUtility.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/java/rohksin/com/olaplay/Utility/RuntimePermissionUtility.java -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/drawable/call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/drawable/call.png -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/drawable/custom_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/drawable/custom_button.xml -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/drawable/dev_mage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/drawable/dev_mage.jpg -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/drawable/download_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/drawable/download_small.png -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/drawable/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/drawable/github.png -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/drawable/gmail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/drawable/gmail.png -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/drawable/headphones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/drawable/headphones.png -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/drawable/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/drawable/linkedin.png -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/drawable/next_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/drawable/next_big.png -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/drawable/ola_play_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/drawable/ola_play_big.png -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/drawable/ola_play_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/drawable/ola_play_logo.png -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/drawable/pause_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/drawable/pause_big.png -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/drawable/play_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/drawable/play_big.png -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/drawable/play_small_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/drawable/play_small_black.png -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/drawable/playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/drawable/playstore.png -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/drawable/prev_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/drawable/prev_big.png -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/drawable/search_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/drawable/search_icon.png -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/drawable/stackoverflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/drawable/stackoverflow.png -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/drawable/user_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/drawable/user_placeholder.png -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/layout/activity_music_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/layout/activity_music_list.xml -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/layout/content_music_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/layout/content_music_list.xml -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/layout/curently_playing_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/layout/curently_playing_item.xml -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/layout/dev_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/layout/dev_profile.xml -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/layout/downloaded_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/layout/downloaded_activity.xml -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/layout/downloaded_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/layout/downloaded_item.xml -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/layout/history_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/layout/history_item.xml -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/layout/music_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/layout/music_activity.xml -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/layout/music_list_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/layout/music_list_activity.xml -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/layout/music_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/layout/music_list_item.xml -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/layout/music_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/layout/music_text.xml -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/layout/search_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/layout/search_activity.xml -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/layout/splash_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/layout/splash_activity.xml -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/layout/user_past_activity_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/layout/user_past_activity_item.xml -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/menu/menu_music_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/menu/menu_music_list.xml -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/menu/search_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/menu/search_menu.xml -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /OlaPlay/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /OlaPlay/app/src/test/java/rohksin/com/olaplay/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/app/src/test/java/rohksin/com/olaplay/ExampleUnitTest.java -------------------------------------------------------------------------------- /OlaPlay/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/build.gradle -------------------------------------------------------------------------------- /OlaPlay/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/gradle.properties -------------------------------------------------------------------------------- /OlaPlay/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /OlaPlay/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /OlaPlay/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/gradlew -------------------------------------------------------------------------------- /OlaPlay/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/OlaPlay/gradlew.bat -------------------------------------------------------------------------------- /OlaPlay/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitksingh/OLA_Play_Music_App/HEAD/README.md --------------------------------------------------------------------------------