├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro ├── release │ └── output.json └── src │ ├── androidTest │ └── java │ │ └── cat │ │ └── pantsu │ │ └── nyaapantsu │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── ic_anon-web.png │ ├── ic_launcher-web.png │ ├── java │ │ └── cat │ │ │ └── pantsu │ │ │ └── nyaapantsu │ │ │ ├── adapter │ │ │ ├── TorrentListAdapter.kt │ │ │ └── ViewPagerAdapter.kt │ │ │ ├── application │ │ │ └── Initializer.kt │ │ │ ├── helper │ │ │ ├── ImageGetter.kt │ │ │ ├── Playlist.kt │ │ │ ├── ProfileHelper.kt │ │ │ ├── QueryHelper.kt │ │ │ └── TorrentStreamHelper.kt │ │ │ ├── model │ │ │ ├── FlagChip.kt │ │ │ ├── ProfileQuery.kt │ │ │ ├── Query.kt │ │ │ ├── RecentlyPlayed.kt │ │ │ ├── Torrent.kt │ │ │ ├── User.kt │ │ │ └── Utils.kt │ │ │ ├── ui │ │ │ ├── activity │ │ │ │ ├── BaseActivity.kt │ │ │ │ ├── HomeActivity.kt │ │ │ │ ├── LoginActivity.kt │ │ │ │ ├── ProfileActivity.kt │ │ │ │ ├── SettingsActivity.kt │ │ │ │ ├── SplashActivity.kt │ │ │ │ └── TorrentActivity.kt │ │ │ └── fragment │ │ │ │ ├── AboutFragment.kt │ │ │ │ ├── ProfileFragment.kt │ │ │ │ ├── RecentFragment.kt │ │ │ │ ├── SearchFragment.kt │ │ │ │ ├── SettingsFragment.kt │ │ │ │ ├── TorrentListFragment.kt │ │ │ │ ├── TorrentViewFragment.kt │ │ │ │ └── UploadFragment.kt │ │ │ └── util │ │ │ └── Utils.kt │ └── res │ │ ├── drawable-hdpi │ │ ├── ic_action_about.png │ │ ├── ic_action_name.png │ │ ├── ic_action_reload.png │ │ ├── ic_action_search.png │ │ ├── ic_action_upload.png │ │ ├── ic_clear_search.png │ │ ├── layout_bg_grey.xml │ │ ├── logo.png │ │ ├── megumin.png │ │ └── renchon.png │ │ ├── drawable-mdpi │ │ ├── ic_action_about.png │ │ ├── ic_action_name.png │ │ ├── ic_action_reload.png │ │ ├── ic_action_search.png │ │ ├── ic_action_upload.png │ │ └── ic_clear_search.png │ │ ├── drawable-v21 │ │ ├── ic_menu_camera.xml │ │ ├── ic_menu_gallery.xml │ │ ├── ic_menu_manage.xml │ │ ├── ic_menu_send.xml │ │ ├── ic_menu_share.xml │ │ └── ic_menu_slideshow.xml │ │ ├── drawable-xhdpi │ │ ├── ic_action_about.png │ │ ├── ic_action_name.png │ │ ├── ic_action_reload.png │ │ ├── ic_action_search.png │ │ ├── ic_action_upload.png │ │ ├── ic_clear_search.png │ │ ├── ic_done_white_24dp.png │ │ ├── ic_expand_less_black_24dp.png │ │ ├── ic_expand_more_black_24dp.png │ │ ├── logo.png │ │ ├── megumin.png │ │ └── renchon.png │ │ ├── drawable-xxhdpi │ │ ├── ic_action_about.png │ │ ├── ic_action_name.png │ │ ├── ic_action_reload.png │ │ ├── ic_action_search.png │ │ ├── ic_action_upload.png │ │ ├── ic_clear_search.png │ │ ├── ic_done_white_24dp.png │ │ ├── ic_expand_less_black_24dp.png │ │ ├── ic_expand_more_black_24dp.png │ │ ├── megumin.png │ │ └── renchon.png │ │ ├── drawable-xxxhdpi │ │ ├── ic_done_white_24dp.png │ │ ├── ic_expand_less_black_24dp.png │ │ └── ic_expand_more_black_24dp.png │ │ ├── drawable │ │ ├── anon.png │ │ ├── background.png │ │ ├── bg_header_tile.png │ │ ├── borderbottom.xml │ │ ├── flag_ca.xml │ │ ├── flag_de.xml │ │ ├── flag_en.xml │ │ ├── flag_es.xml │ │ ├── flag_fr.xml │ │ ├── flag_hu.xml │ │ ├── flag_is.xml │ │ ├── flag_it.xml │ │ ├── flag_ja.xml │ │ ├── flag_ko.xml │ │ ├── flag_nb.xml │ │ ├── flag_nl.xml │ │ ├── flag_pt.xml │ │ ├── flag_ro.xml │ │ ├── flag_sv.xml │ │ ├── flag_th.xml │ │ ├── flag_zh.xml │ │ ├── flag_zh_hant.xml │ │ ├── ic_expand_selector.xml │ │ ├── ic_info_black_24dp.xml │ │ ├── ic_notifications_black_24dp.xml │ │ ├── ic_person.xml │ │ ├── ic_pets_white_24dp.xml │ │ ├── ic_play_circle_filled.xml │ │ ├── ic_replay_black.xml │ │ ├── ic_sync_black_24dp.xml │ │ ├── layout_bg.xml │ │ ├── profile_circular_border_imageview.xml │ │ └── side_nav_bar.xml │ │ ├── layout │ │ ├── activity_home.xml │ │ ├── activity_login.xml │ │ ├── activity_main.xml │ │ ├── activity_profile.xml │ │ ├── activity_settings.xml │ │ ├── activity_torrent.xml │ │ ├── app_bar_home.xml │ │ ├── content_login.xml │ │ ├── content_search.xml │ │ ├── content_settings.xml │ │ ├── fragment_about.xml │ │ ├── fragment_profile.xml │ │ ├── fragment_recent.xml │ │ ├── fragment_settings.xml │ │ ├── fragment_torrent_list.xml │ │ ├── fragment_torrent_view.xml │ │ ├── fragment_upload.xml │ │ ├── nav_header_home.xml │ │ ├── profile_torrent_item.xml │ │ ├── spinner_layout.xml │ │ └── torrent_item.xml │ │ ├── menu │ │ ├── activity_home_drawer.xml │ │ ├── menu_done.xml │ │ ├── menu_pets.xml │ │ └── recent_menu.xml │ │ ├── mipmap-hdpi │ │ ├── ic_anon.png │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_anon.png │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_anon.png │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_anon.png │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_anon.png │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── raw │ │ └── nyanpass.mp3 │ │ ├── values-en-rUS │ │ └── strings.xml │ │ ├── values-es-rES │ │ └── strings.xml │ │ ├── values-pl-rPL │ │ └── strings.xml │ │ ├── values-v21 │ │ └── styles.xml │ │ ├── values-zh-rCN │ │ └── strings.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── drawables.xml │ │ ├── strings.xml │ │ └── styles.xml │ │ └── xml │ │ └── preferences.xml │ └── test │ └── java │ └── cat │ └── pantsu │ └── nyaapantsu │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystore.jks.enc └── settings.gradle /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/release/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/release/output.json -------------------------------------------------------------------------------- /app/src/androidTest/java/cat/pantsu/nyaapantsu/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/androidTest/java/cat/pantsu/nyaapantsu/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/ic_anon-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/ic_anon-web.png -------------------------------------------------------------------------------- /app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /app/src/main/java/cat/pantsu/nyaapantsu/adapter/TorrentListAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/java/cat/pantsu/nyaapantsu/adapter/TorrentListAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/cat/pantsu/nyaapantsu/adapter/ViewPagerAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/java/cat/pantsu/nyaapantsu/adapter/ViewPagerAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/cat/pantsu/nyaapantsu/application/Initializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/java/cat/pantsu/nyaapantsu/application/Initializer.kt -------------------------------------------------------------------------------- /app/src/main/java/cat/pantsu/nyaapantsu/helper/ImageGetter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/java/cat/pantsu/nyaapantsu/helper/ImageGetter.kt -------------------------------------------------------------------------------- /app/src/main/java/cat/pantsu/nyaapantsu/helper/Playlist.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/java/cat/pantsu/nyaapantsu/helper/Playlist.kt -------------------------------------------------------------------------------- /app/src/main/java/cat/pantsu/nyaapantsu/helper/ProfileHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/java/cat/pantsu/nyaapantsu/helper/ProfileHelper.kt -------------------------------------------------------------------------------- /app/src/main/java/cat/pantsu/nyaapantsu/helper/QueryHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/java/cat/pantsu/nyaapantsu/helper/QueryHelper.kt -------------------------------------------------------------------------------- /app/src/main/java/cat/pantsu/nyaapantsu/helper/TorrentStreamHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/java/cat/pantsu/nyaapantsu/helper/TorrentStreamHelper.kt -------------------------------------------------------------------------------- /app/src/main/java/cat/pantsu/nyaapantsu/model/FlagChip.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/java/cat/pantsu/nyaapantsu/model/FlagChip.kt -------------------------------------------------------------------------------- /app/src/main/java/cat/pantsu/nyaapantsu/model/ProfileQuery.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/java/cat/pantsu/nyaapantsu/model/ProfileQuery.kt -------------------------------------------------------------------------------- /app/src/main/java/cat/pantsu/nyaapantsu/model/Query.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/java/cat/pantsu/nyaapantsu/model/Query.kt -------------------------------------------------------------------------------- /app/src/main/java/cat/pantsu/nyaapantsu/model/RecentlyPlayed.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/java/cat/pantsu/nyaapantsu/model/RecentlyPlayed.kt -------------------------------------------------------------------------------- /app/src/main/java/cat/pantsu/nyaapantsu/model/Torrent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/java/cat/pantsu/nyaapantsu/model/Torrent.kt -------------------------------------------------------------------------------- /app/src/main/java/cat/pantsu/nyaapantsu/model/User.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/java/cat/pantsu/nyaapantsu/model/User.kt -------------------------------------------------------------------------------- /app/src/main/java/cat/pantsu/nyaapantsu/model/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/java/cat/pantsu/nyaapantsu/model/Utils.kt -------------------------------------------------------------------------------- /app/src/main/java/cat/pantsu/nyaapantsu/ui/activity/BaseActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/java/cat/pantsu/nyaapantsu/ui/activity/BaseActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/cat/pantsu/nyaapantsu/ui/activity/HomeActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/java/cat/pantsu/nyaapantsu/ui/activity/HomeActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/cat/pantsu/nyaapantsu/ui/activity/LoginActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/java/cat/pantsu/nyaapantsu/ui/activity/LoginActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/cat/pantsu/nyaapantsu/ui/activity/ProfileActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/java/cat/pantsu/nyaapantsu/ui/activity/ProfileActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/cat/pantsu/nyaapantsu/ui/activity/SettingsActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/java/cat/pantsu/nyaapantsu/ui/activity/SettingsActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/cat/pantsu/nyaapantsu/ui/activity/SplashActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/java/cat/pantsu/nyaapantsu/ui/activity/SplashActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/cat/pantsu/nyaapantsu/ui/activity/TorrentActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/java/cat/pantsu/nyaapantsu/ui/activity/TorrentActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/cat/pantsu/nyaapantsu/ui/fragment/AboutFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/java/cat/pantsu/nyaapantsu/ui/fragment/AboutFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/cat/pantsu/nyaapantsu/ui/fragment/ProfileFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/java/cat/pantsu/nyaapantsu/ui/fragment/ProfileFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/cat/pantsu/nyaapantsu/ui/fragment/RecentFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/java/cat/pantsu/nyaapantsu/ui/fragment/RecentFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/cat/pantsu/nyaapantsu/ui/fragment/SearchFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/java/cat/pantsu/nyaapantsu/ui/fragment/SearchFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/cat/pantsu/nyaapantsu/ui/fragment/SettingsFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/java/cat/pantsu/nyaapantsu/ui/fragment/SettingsFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/cat/pantsu/nyaapantsu/ui/fragment/TorrentListFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/java/cat/pantsu/nyaapantsu/ui/fragment/TorrentListFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/cat/pantsu/nyaapantsu/ui/fragment/TorrentViewFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/java/cat/pantsu/nyaapantsu/ui/fragment/TorrentViewFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/cat/pantsu/nyaapantsu/ui/fragment/UploadFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/java/cat/pantsu/nyaapantsu/ui/fragment/UploadFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/cat/pantsu/nyaapantsu/util/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/java/cat/pantsu/nyaapantsu/util/Utils.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-hdpi/ic_action_about.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-hdpi/ic_action_name.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-hdpi/ic_action_reload.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-hdpi/ic_action_search.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-hdpi/ic_action_upload.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_clear_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-hdpi/ic_clear_search.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/layout_bg_grey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-hdpi/layout_bg_grey.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/megumin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-hdpi/megumin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/renchon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-hdpi/renchon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-mdpi/ic_action_about.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-mdpi/ic_action_name.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-mdpi/ic_action_reload.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-mdpi/ic_action_search.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-mdpi/ic_action_upload.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_clear_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-mdpi/ic_clear_search.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-v21/ic_menu_camera.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_gallery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-v21/ic_menu_gallery.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-v21/ic_menu_manage.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_send.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-v21/ic_menu_send.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_share.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-v21/ic_menu_share.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_slideshow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-v21/ic_menu_slideshow.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-xhdpi/ic_action_about.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-xhdpi/ic_action_name.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-xhdpi/ic_action_reload.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-xhdpi/ic_action_search.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-xhdpi/ic_action_upload.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_clear_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-xhdpi/ic_clear_search.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_done_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-xhdpi/ic_done_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_expand_less_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-xhdpi/ic_expand_less_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_expand_more_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-xhdpi/ic_expand_more_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/megumin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-xhdpi/megumin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/renchon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-xhdpi/renchon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_about.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_name.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_reload.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_search.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_upload.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_clear_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-xxhdpi/ic_clear_search.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_done_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-xxhdpi/ic_done_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_expand_less_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-xxhdpi/ic_expand_less_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_expand_more_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-xxhdpi/ic_expand_more_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/megumin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-xxhdpi/megumin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/renchon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-xxhdpi/renchon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_done_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-xxxhdpi/ic_done_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_expand_less_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-xxxhdpi/ic_expand_less_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_expand_more_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable-xxxhdpi/ic_expand_more_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/anon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable/anon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable/background.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_header_tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable/bg_header_tile.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/borderbottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable/borderbottom.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/flag_ca.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable/flag_ca.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/flag_de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable/flag_de.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/flag_en.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable/flag_en.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/flag_es.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable/flag_es.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/flag_fr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable/flag_fr.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/flag_hu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable/flag_hu.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/flag_is.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable/flag_is.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/flag_it.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable/flag_it.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/flag_ja.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable/flag_ja.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/flag_ko.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable/flag_ko.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/flag_nb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable/flag_nb.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/flag_nl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable/flag_nl.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/flag_pt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable/flag_pt.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/flag_ro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable/flag_ro.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/flag_sv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable/flag_sv.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/flag_th.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable/flag_th.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/flag_zh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable/flag_zh.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/flag_zh_hant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable/flag_zh_hant.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_expand_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable/ic_expand_selector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_info_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable/ic_info_black_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_notifications_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable/ic_notifications_black_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_person.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable/ic_person.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_pets_white_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable/ic_pets_white_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_play_circle_filled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable/ic_play_circle_filled.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_replay_black.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable/ic_replay_black.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_sync_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable/ic_sync_black_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/layout_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable/layout_bg.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/profile_circular_border_imageview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable/profile_circular_border_imageview.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/side_nav_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/drawable/side_nav_bar.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/layout/activity_home.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/layout/activity_login.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/layout/activity_profile.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/layout/activity_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_torrent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/layout/activity_torrent.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/app_bar_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/layout/app_bar_home.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/content_login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/layout/content_login.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/content_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/layout/content_search.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/content_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/layout/content_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/layout/fragment_about.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/layout/fragment_profile.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_recent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/layout/fragment_recent.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/layout/fragment_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_torrent_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/layout/fragment_torrent_list.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_torrent_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/layout/fragment_torrent_view.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_upload.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/layout/fragment_upload.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/nav_header_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/layout/nav_header_home.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/profile_torrent_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/layout/profile_torrent_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/spinner_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/layout/spinner_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/torrent_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/layout/torrent_item.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/activity_home_drawer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/menu/activity_home_drawer.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_done.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/menu/menu_done.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_pets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/menu/menu_pets.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/recent_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/menu/recent_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_anon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/mipmap-hdpi/ic_anon.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_anon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/mipmap-mdpi/ic_anon.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_anon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/mipmap-xhdpi/ic_anon.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_anon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/mipmap-xxhdpi/ic_anon.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_anon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_anon.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/raw/nyanpass.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/raw/nyanpass.mp3 -------------------------------------------------------------------------------- /app/src/main/res/values-en-rUS/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/values-en-rUS/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-es-rES/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/values-es-rES/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pl-rPL/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/values-pl-rPL/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/drawables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/values/drawables.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/main/res/xml/preferences.xml -------------------------------------------------------------------------------- /app/src/test/java/cat/pantsu/nyaapantsu/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/app/src/test/java/cat/pantsu/nyaapantsu/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/gradlew.bat -------------------------------------------------------------------------------- /keystore.jks.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaaPantsu/NyaaPantsu-android-app/HEAD/keystore.jks.enc -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------