Full Code of anujd64/Thunder for AI

main 31158ee1b616 cached
261 files
1.2 MB
285.5k tokens
1115 symbols
1 requests
Download .txt
Showing preview only (1,335K chars total). Download the full file or copy to clipboard to get everything.
Repository: anujd64/Thunder
Branch: main
Commit: 31158ee1b616
Files: 261
Total size: 1.2 MB

Directory structure:
gitextract_l2jjn7m6/

├── .github/
│   └── workflows/
│       └── notify.yml
├── .gitignore
├── .idea/
│   ├── .gitignore
│   ├── .name
│   ├── compiler.xml
│   ├── deploymentTargetDropDown.xml
│   ├── gradle.xml
│   ├── misc.xml
│   └── vcs.xml
├── LICENSE.md
├── README.md
├── Screenshots/
│   └── test
├── app/
│   ├── .gitignore
│   ├── build.gradle
│   ├── libs/
│   │   ├── extension-av1-release.aar
│   │   └── extension-ffmpeg-release.aar
│   ├── proguard-rules.pro
│   ├── schemas/
│   │   ├── com.example.myapplication.AppDatabase/
│   │   │   └── 5.json
│   │   ├── com.example.myapplication.database.AppDatabase/
│   │   │   └── 10.json
│   │   └── com.theflexproject.thunder.database.AppDatabase/
│   │       ├── 10.json
│   │       ├── 11.json
│   │       ├── 12.json
│   │       ├── 13.json
│   │       ├── 14.json
│   │       ├── 15.json
│   │       ├── 16.json
│   │       ├── 17.json
│   │       ├── 18.json
│   │       ├── 19.json
│   │       ├── 20.json
│   │       ├── 21.json
│   │       ├── 22.json
│   │       ├── 23.json
│   │       ├── 24.json
│   │       ├── 25.json
│   │       ├── 26.json
│   │       ├── 27.json
│   │       ├── 28.json
│   │       ├── 29.json
│   │       ├── 30.json
│   │       ├── 5.json
│   │       ├── 6.json
│   │       ├── 7.json
│   │       ├── 8.json
│   │       └── 9.json
│   └── src/
│       ├── androidTest/
│       │   └── java/
│       │       └── com/
│       │           └── theflexproject/
│       │               └── thunder/
│       │                   └── ExampleInstrumentedTest.java
│       ├── main/
│       │   ├── AndroidManifest.xml
│       │   ├── java/
│       │   │   └── com/
│       │   │       └── theflexproject/
│       │   │           └── thunder/
│       │   │               ├── Constants.java
│       │   │               ├── MainActivity.java
│       │   │               ├── SplashScreenActivity.java
│       │   │               ├── adapter/
│       │   │               │   ├── ArchivedAdapters/
│       │   │               │   │   ├── HomeItemAdapter.java
│       │   │               │   │   ├── MovieRecyclerAdapter.java
│       │   │               │   │   ├── MovieRecyclerAdapterLibrary.java
│       │   │               │   │   └── TVShowRecyclerAdapter.java
│       │   │               │   ├── BannerRecyclerAdapter.java
│       │   │               │   ├── EpisodeAdapter.java
│       │   │               │   ├── FileItemAdapter.java
│       │   │               │   ├── FileItemDialogAdapter.java
│       │   │               │   ├── FragmentViewPagerAdapter.java
│       │   │               │   ├── IndexAdapter.java
│       │   │               │   ├── MediaAdapter.java
│       │   │               │   └── ScaleCenterItemLayoutManager.java
│       │   │               ├── database/
│       │   │               │   ├── AppDatabase.java
│       │   │               │   ├── Converters.java
│       │   │               │   ├── DatabaseClient.java
│       │   │               │   ├── EpisodeDao.java
│       │   │               │   ├── IndexLinksDao.java
│       │   │               │   ├── MovieDao.java
│       │   │               │   ├── ResFormatDao.java
│       │   │               │   ├── TVShowDao.java
│       │   │               │   └── TVShowSeasonDetailsDao.java
│       │   │               ├── fragments/
│       │   │               │   ├── AddNewIndexFragment.java
│       │   │               │   ├── BaseFragment.java
│       │   │               │   ├── ChangeTMDBFragment.java
│       │   │               │   ├── CustomFileListDialogFragment.java
│       │   │               │   ├── CustomFileSelectionDialog.java
│       │   │               │   ├── EpisodeDetailsFragment.java
│       │   │               │   ├── FilesLibraryFragment.java
│       │   │               │   ├── HomeFragment.java
│       │   │               │   ├── LibraryFragment.java
│       │   │               │   ├── ManageDatabaseFragment.java
│       │   │               │   ├── ManageIndexesFragment.java
│       │   │               │   ├── MovieDetailsFragment.java
│       │   │               │   ├── MovieLibraryFragment.java
│       │   │               │   ├── SearchFragment.java
│       │   │               │   ├── SeasonDetailsFragment.java
│       │   │               │   ├── SettingsFragment.java
│       │   │               │   ├── TvShowDetailsFragment.java
│       │   │               │   ├── TvShowsLibraryFragment.java
│       │   │               │   └── UpdateAppFragment.java
│       │   │               ├── model/
│       │   │               │   ├── Data.java
│       │   │               │   ├── ExternalIds.java
│       │   │               │   ├── FanArt/
│       │   │               │   │   ├── Clearlogo.java
│       │   │               │   │   ├── FanArtMovieResponseModel.java
│       │   │               │   │   ├── FanArtTvResponseModel.java
│       │   │               │   │   ├── Hdmovielogo.java
│       │   │               │   │   ├── Hdtvlogo.java
│       │   │               │   │   └── Movielogo.java
│       │   │               │   ├── File.java
│       │   │               │   ├── Genre.java
│       │   │               │   ├── GitHubResponse.java
│       │   │               │   ├── IndexLink.java
│       │   │               │   ├── Movie.java
│       │   │               │   ├── MoviesResponseFromTMDB.java
│       │   │               │   ├── MyMedia.java
│       │   │               │   ├── ProductionCompany.java
│       │   │               │   ├── ProductionCountry.java
│       │   │               │   ├── ResFormat.java
│       │   │               │   ├── SimpleLink.java
│       │   │               │   ├── SpokenLanguage.java
│       │   │               │   ├── TVShowInfo/
│       │   │               │   │   ├── CreatedBy.java
│       │   │               │   │   ├── Crew.java
│       │   │               │   │   ├── Episode.java
│       │   │               │   │   ├── GuestStar.java
│       │   │               │   │   ├── LastEpisodeToAir.java
│       │   │               │   │   ├── Network.java
│       │   │               │   │   ├── Result.java
│       │   │               │   │   ├── Season.java
│       │   │               │   │   ├── TVShow.java
│       │   │               │   │   ├── TVShowSeasonDetails.java
│       │   │               │   │   └── TVShowsResponseFromTMDB.java
│       │   │               │   └── tmdbImages/
│       │   │               │       ├── Backdrop.java
│       │   │               │       ├── Logo.java
│       │   │               │       ├── Poster.java
│       │   │               │       └── TMDBImagesResponse.java
│       │   │               ├── player/
│       │   │               │   ├── DemoUtil.java
│       │   │               │   └── PlayerActivity.java
│       │   │               └── utils/
│       │   │                   ├── AnimeNameExtractor.java
│       │   │                   ├── BlurBitmap.java
│       │   │                   ├── CheckForUpdates.java
│       │   │                   ├── IndexUtils.java
│       │   │                   ├── MovieQualityExtractor.java
│       │   │                   ├── MovieTitleExtractor2.java
│       │   │                   ├── Pair.java
│       │   │                   ├── PairMovies.java
│       │   │                   ├── PairTvShows.java
│       │   │                   ├── ParseUtils.java
│       │   │                   ├── PlexMovieExtractor.java
│       │   │                   ├── RefreshWorker.java
│       │   │                   ├── SceneMovieTitleExtractor.java
│       │   │                   ├── SendGetRequestTMDB.java
│       │   │                   ├── SendPostRequest.java
│       │   │                   ├── SettingsManager.java
│       │   │                   ├── ShowUtils.java
│       │   │                   ├── StorageUtils.java
│       │   │                   ├── StringUtils.java
│       │   │                   ├── UpdateUtils.java
│       │   │                   ├── downloadUtils.java
│       │   │                   ├── imageVotesComparator.java
│       │   │                   └── sizetoReadablesize.java
│       │   └── res/
│       │       ├── anim/
│       │       │   ├── fade_in.xml
│       │       │   ├── fade_out.xml
│       │       │   ├── from_left.xml
│       │       │   ├── from_right.xml
│       │       │   ├── pop_in.xml
│       │       │   ├── to_left.xml
│       │       │   └── to_right.xml
│       │       ├── color/
│       │       │   ├── about_item_bg_color.xml
│       │       │   ├── button_text_color.xml
│       │       │   ├── delete_button_color.xml
│       │       │   ├── download_button_bg_color.xml
│       │       │   ├── episode_item_bg_color.xml
│       │       │   ├── media_item_bg_color.xml
│       │       │   └── switch_bg_color.xml
│       │       ├── drawable/
│       │       │   ├── bottom_navigation_background.xml
│       │       │   ├── bottom_navigation_color_selector.xml
│       │       │   ├── bottom_navigation_item_background.xml
│       │       │   ├── discord.xml
│       │       │   ├── gradient_top_bottom_bg.xml
│       │       │   ├── ic_add.xml
│       │       │   ├── ic_add_box.xml
│       │       │   ├── ic_change.xml
│       │       │   ├── ic_delete.xml
│       │       │   ├── ic_download.xml
│       │       │   ├── ic_edit.xml
│       │       │   ├── ic_export.xml
│       │       │   ├── ic_github.xml
│       │       │   ├── ic_home.xml
│       │       │   ├── ic_import.xml
│       │       │   ├── ic_import_export.xml
│       │       │   ├── ic_info.xml
│       │       │   ├── ic_library.xml
│       │       │   ├── ic_list.xml
│       │       │   ├── ic_next.xml
│       │       │   ├── ic_play.xml
│       │       │   ├── ic_play_rounded.xml
│       │       │   ├── ic_refresh.xml
│       │       │   ├── ic_search.xml
│       │       │   ├── ic_settings.xml
│       │       │   ├── ic_update.xml
│       │       │   ├── index_link_bg.xml
│       │       │   ├── media_item_selector.xml
│       │       │   ├── oval.xml
│       │       │   ├── play_shape.xml
│       │       │   ├── rounded_controls_background.xml
│       │       │   ├── rounded_corner_labels.xml
│       │       │   ├── search_bg.xml
│       │       │   ├── splash_background.xml
│       │       │   ├── splash_bg_gradient.xml
│       │       │   ├── switch_ios_selector.xml
│       │       │   ├── switch_ios_track.xml
│       │       │   ├── tab_indicator_bg.xml
│       │       │   ├── tab_item_selector.xml
│       │       │   ├── tab_layout_bg.xml
│       │       │   ├── tabs_selector.xml
│       │       │   ├── telegram.xml
│       │       │   └── tmdb.xml
│       │       ├── layout/
│       │       │   ├── activity_main.xml
│       │       │   ├── activity_player.xml
│       │       │   ├── dialog_filename_item.xml
│       │       │   ├── dropdown_item.xml
│       │       │   ├── episode_item.xml
│       │       │   ├── file_item.xml
│       │       │   ├── fragment_add_index.xml
│       │       │   ├── fragment_change_tmdb.xml
│       │       │   ├── fragment_custom_file_list_dialog.xml
│       │       │   ├── fragment_episode_details.xml
│       │       │   ├── fragment_episode_details_new.xml
│       │       │   ├── fragment_files_library.xml
│       │       │   ├── fragment_home.xml
│       │       │   ├── fragment_library.xml
│       │       │   ├── fragment_manage_database.xml
│       │       │   ├── fragment_manage_indexes.xml
│       │       │   ├── fragment_movie_details.xml
│       │       │   ├── fragment_movie_details_new.xml
│       │       │   ├── fragment_movie_library.xml
│       │       │   ├── fragment_search.xml
│       │       │   ├── fragment_season_details.xml
│       │       │   ├── fragment_season_details_new.xml
│       │       │   ├── fragment_settings.xml
│       │       │   ├── fragment_show_details.xml
│       │       │   ├── fragment_show_details_new.xml
│       │       │   ├── fragment_tv_shows_library.xml
│       │       │   ├── fragment_update_app.xml
│       │       │   ├── home_item.xml
│       │       │   ├── index_item.xml
│       │       │   ├── item_folder_type.xml
│       │       │   ├── item_index_type.xml
│       │       │   ├── media_item.xml
│       │       │   ├── movie_item_banner.xml
│       │       │   ├── movie_item_library.xml
│       │       │   ├── movie_item_recycler.xml
│       │       │   ├── refresh_time_dialog.xml
│       │       │   └── tvshow_item.xml
│       │       ├── menu/
│       │       │   └── bottom_navigation_menu.xml
│       │       ├── mipmap-anydpi-v26/
│       │       │   └── ic_launcher.xml
│       │       ├── values/
│       │       │   ├── bg.xml
│       │       │   ├── color.xml
│       │       │   ├── strings.xml
│       │       │   ├── style.xml
│       │       │   └── themes.xml
│       │       └── xml/
│       │           ├── backup_rules.xml
│       │           └── data_extraction_rules.xml
│       └── test/
│           └── java/
│               └── com/
│                   └── theflexproject/
│                       └── thunder/
│                           └── ExampleUnitTest.java
├── build.gradle
├── gradle/
│   └── wrapper/
│       ├── gradle-wrapper.jar
│       └── gradle-wrapper.properties
├── gradle.properties
├── gradlew
├── gradlew.bat
└── settings.gradle

================================================
FILE CONTENTS
================================================

================================================
FILE: .github/workflows/notify.yml
================================================
name: Notify on Telegram

on:
  fork:
  push:
  release:
  issue_comment:
    types: created
  watch:
    types: started
  pull_request_review_comment:
    types: created
  pull_request:
    types: [opened, closed, reopened]
  issues:
    types: [opened, pinned, closed, reopened]
jobs:
  notify:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - name: Notify the commit on Telegram.
        uses: EverythingSuckz/github-telegram-notify@v1.1.2
        with:
          bot_token: '${{ secrets.BOT_TOKEN }}'
          chat_id: '${{ secrets.CHAT_ID }}'


================================================
FILE: .gitignore
================================================
*.iml
.gradle
/local.properties
/.idea/caches
/.idea/libraries
/.idea/modules.xml
/.idea/workspace.xml
/.idea/navEditor.xml
/.idea/assetWizardSettings.xml
.DS_Store
/build
/captures
.externalNativeBuild
.cxx
local.properties


================================================
FILE: .idea/.gitignore
================================================
# Default ignored files
/shelf/
/workspace.xml


================================================
FILE: .idea/.name
================================================
Thunder

================================================
FILE: .idea/compiler.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="CompilerConfiguration">
    <bytecodeTargetLevel target="11" />
  </component>
</project>

================================================
FILE: .idea/deploymentTargetDropDown.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="deploymentTargetDropDown">
    <targetSelectedWithDropDown>
      <Target>
        <type value="QUICK_BOOT_TARGET" />
        <deviceKey>
          <Key>
            <type value="VIRTUAL_DEVICE_PATH" />
            <value value="C:\Users\Dharurkar\.android\avd\API_22_Lollipop.avd" />
          </Key>
        </deviceKey>
      </Target>
    </targetSelectedWithDropDown>
    <timeTargetWasSelectedWithDropDown value="2022-11-09T05:54:52.708456200Z" />
    <runningDeviceTargetsSelectedWithDialog>
      <Target>
        <type value="RUNNING_DEVICE_TARGET" />
        <deviceKey>
          <Key>
            <type value="SERIAL_NUMBER" />
            <value value="89JBFIUWJJAMPJW4" />
          </Key>
        </deviceKey>
      </Target>
    </runningDeviceTargetsSelectedWithDialog>
    <targetsSelectedWithDialog>
      <Target>
        <type value="QUICK_BOOT_TARGET" />
        <deviceKey>
          <Key>
            <type value="VIRTUAL_DEVICE_PATH" />
            <value value="C:\Users\Dharurkar\.android\avd\API_22_Lollipop.avd" />
          </Key>
        </deviceKey>
      </Target>
    </targetsSelectedWithDialog>
  </component>
</project>

================================================
FILE: .idea/gradle.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="GradleMigrationSettings" migrationVersion="1" />
  <component name="GradleSettings">
    <option name="linkedExternalProjectsSettings">
      <GradleProjectSettings>
        <option name="testRunner" value="GRADLE" />
        <option name="distributionType" value="DEFAULT_WRAPPED" />
        <option name="externalProjectPath" value="$PROJECT_DIR$" />
        <option name="modules">
          <set>
            <option value="$PROJECT_DIR$" />
            <option value="$PROJECT_DIR$/app" />
          </set>
        </option>
      </GradleProjectSettings>
    </option>
  </component>
</project>

================================================
FILE: .idea/misc.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="DesignSurface">
    <option name="filePathToZoomLevelMap">
      <map>
        <entry key="..\:/Users/Dharurkar/.gradle/caches/transforms-3/7d41eb0fdd2514ef525c52d7d95226d6/transformed/exoplayer-ui-2.18.1/res/layout/exo_player_control_view.xml" value="0.2375" />
        <entry key="..\:/Users/Dharurkar/.gradle/caches/transforms-3/7d41eb0fdd2514ef525c52d7d95226d6/transformed/exoplayer-ui-2.18.1/res/layout/exo_styled_player_control_view.xml" value="0.2375" />
        <entry key="..\:/Users/Dharurkar/.gradle/caches/transforms-3/7d41eb0fdd2514ef525c52d7d95226d6/transformed/exoplayer-ui-2.18.1/res/layout/exo_styled_player_view.xml" value="0.19495510902094912" />
        <entry key="..\:/Users/Dharurkar/.gradle/caches/transforms-3/7d41eb0fdd2514ef525c52d7d95226d6/transformed/exoplayer-ui-2.18.1/res/layout/exo_styled_settings_list.xml" value="0.19495510902094912" />
        <entry key="..\:/Users/Dharurkar/.gradle/caches/transforms-3/7d41eb0fdd2514ef525c52d7d95226d6/transformed/exoplayer-ui-2.18.1/res/layout/exo_styled_settings_list_item.xml" value="0.19495510902094912" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/color/episode_item_bg_color.xml" value="0.1555" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable-v24/gradient_bottom_top_bg.xml" value="0.1" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable-v24/home-48px.xml" value="0.2015" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable-v24/ic_launcher_foreground.xml" value="0.2015" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable-v24/search-48px.xml" value="0.1525" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable-v24/settings-48px.xml" value="0.1525" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable-v24/tab_bg_color.xml" value="0.1555" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/bottom_navigation_background.xml" value="0.1525" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/bottom_navigation_bottom_selector.xml" value="0.2015" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/bottom_navigation_color_selector.xml" value="0.1525" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/bottom_navigation_item_background.xml" value="0.1" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/bottom_navigation_selector.xml" value="0.2015" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/controls_gradient.xml" value="0.2255" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/discord.xml" value="0.2305" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/divider.xml" value="0.2255" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/github.xml" value="0.2295" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/gradient_bottom_top_bg.xml" value="0.2255" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/gradient_top_bottom_bg.xml" value="0.2255" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/ic__7279a.xml" value="0.189" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/ic_add.xml" value="0.2475" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/ic_add_fill0_wght400_grad0_opsz48.xml" value="0.234" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/ic_baseline_crop_free_24.xml" value="0.197" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/ic_baseline_delete_outline_24.xml" value="0.2305" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/ic_baseline_info_24.xml" value="0.2305" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/ic_baseline_navigate_next_24.xml" value="0.1385" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/ic_baseline_play_arrow_24.xml" value="0.209" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/ic_baseline_refresh_24.xml" value="0.2305" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/ic_baseline_save_alt_24.xml" value="0.167" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/ic_baseline_video_library_24.xml" value="0.1385" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/ic_download.xml" value="0.1385" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/ic_edit.xml" value="0.235" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/ic_github.xml" value="0.217" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/ic_launcher_background.xml" value="0.1525" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/ic_list.xml" value="0.2475" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/ic_next.xml" value="0.2185" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/ic_outline_change_circle_24.xml" value="0.2475" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/ic_play.xml" value="0.1" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/ic_play_rounded.xml" value="0.1395" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/index_link_bg.xml" value="0.1" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/media_item_selector.xml" value="0.152" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/outline_bolt_24.xml" value="0.2305" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/oval.xml" value="0.131" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/play_button.xml" value="0.209" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/play_shape.xml" value="0.2185" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/rounded_controls_background.xml" value="0.215" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/rounded_corner_labels.xml" value="0.215" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/rounded_corners.xml" value="0.215" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/search_bg.xml" value="0.129" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/splash_background.xml" value="0.1" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/splash_bg_gradient.xml" value="0.1" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/splash_logo_round.xml" value="0.1" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/switch_ios_selector.xml" value="0.1" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/switch_ios_track.xml" value="0.131" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/tab_indicator_bg.xml" value="0.2475" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/tab_item_selector.xml" value="0.1555" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/tab_layout_bg.xml" value="0.2465" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/tabs_selector.xml" value="0.1" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/telegram.xml" value="0.2305" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/tmdb.xml" value="0.109" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/drawable/toptobottomgradient.xml" value="0.1" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/act.xml" value="0.2234375" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/activity_home.xml" value="0.6" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/activity_home2.xml" value="0.2234375" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/activity_index_layout.xml" value="0.264" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/activity_main.xml" value="0.176" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/activity_main2.xml" value="0.2" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/activity_new_player.xml" value="0.2234375" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/activity_player.xml" value="0.20625" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/activity_player2.xml" value="0.2" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/activity_player_textureview.xml" value="0.2234375" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/activity_recycler_view_layout.xml" value="0.44510978043912175" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/activity_settings.xml" value="0.2234375" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/activity_splash_screen.xml" value="0.1" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/activity_video_playing.xml" value="0.176" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/content_player.xml" value="0.2234375" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/controls.xml" value="0.2234375" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/custom_controls.xml" value="0.2375" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/custom_exo_player_controls.xml" value="0.23645833333333333" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/custom_exo_styled_player_control_view.xml" value="0.264" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/custom_player_activity.xml" value="0.23645833333333333" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/dialog_filename_item.xml" value="0.2" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/dialog_source_selection.xml" value="0.264" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/dropdown_item.xml" value="0.4" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/episode_item.xml" value="0.264" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/exo_player_control_view.xml" value="0.2234375" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/exo_player_controller.xml" value="0.29270833333333335" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/exo_player_styled_view.xml" value="0.1" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/exo_styled_player_control_view.xml" value="0.2234375" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/exo_styled_player_view.xml" value="0.2234375" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/exo_styled_settings_list.xml" value="0.2234375" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/file_item.xml" value="0.264" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/fragment_about.xml" value="0.4" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/fragment_add_index.xml" value="0.4" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/fragment_add_index2.xml" value="0.264" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/fragment_change_tmdb.xml" value="0.264" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/fragment_custom_file_list_dialog.xml" value="0.176" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/fragment_episode_details.xml" value="0.1" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/fragment_episode_details_new.xml" value="0.3787375415282392" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/fragment_files_library.xml" value="0.264" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/fragment_first.xml" value="0.2234375" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/fragment_home.xml" value="0.18244013683010263" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/fragment_library.xml" value="0.264" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/fragment_main.xml" value="0.264" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/fragment_manage_database.xml" value="0.40390243902439027" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/fragment_manage_indexes.xml" value="0.264" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/fragment_movie_details.xml" value="0.2" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/fragment_movie_details_new.xml" value="0.4" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/fragment_movie_library.xml" value="0.16782006920415224" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/fragment_new_settings.xml" value="0.2" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/fragment_search.xml" value="0.1612576064908722" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/fragment_season_details.xml" value="0.2" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/fragment_season_details_new.xml" value="0.264" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/fragment_second.xml" value="0.2234375" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/fragment_settings.xml" value="0.264" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/fragment_settings_new.xml" value="0.264" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/fragment_show_details_new.xml" value="0.264" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/fragment_src.xml" value="0.18084651560495937" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/fragment_t_v_shows_library.xml" value="0.18084651560495937" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/fragment_tv_show_details.xml" value="0.1" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/fragment_tv_shows_library.xml" value="0.22453703703703703" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/fragment_update_app.xml" value="0.4" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/fragment_video_player.xml" value="0.2234375" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/genreforsearch.xml" value="0.264" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/header_media_details.xml" value="0.4" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/home_item.xml" value="0.2" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/index_item.xml" value="0.264" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/item_feed_header.xml" value="0.2234375" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/item_folder_type.xml" value="0.6" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/item_index.xml" value="0.4" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/item_index_type.xml" value="0.536" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/media_item.xml" value="0.72" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/movie_item_banner.xml" value="0.2" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/movie_item_layout.xml" value="0.264" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/movie_item_library.xml" value="0.8800000000000001" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/movie_item_recycler.xml" value="0.264" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/my_activity_player.xml" value="0.2375" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/player_controller.xml" value="0.1" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/recyclerviewindex.xml" value="0.1" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/refresh_time_dialog.xml" value="0.264" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/settings_activity.xml" value="0.2375" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/track_selection_dialog.xml" value="0.22239583333333332" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/tvshow_item.xml" value="0.6" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/videoplayer.xml" value="0.176" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/yt_overlay.xml" value="0.2234375" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/layout/yt_seconds_view.xml" value="0.2234375" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/menu/bottom_navigation_menu.xml" value="0.2234375" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml" value="0.114" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/mipmap-anydpi-v26/splash_logo.xml" value="0.1" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/mipmap-anydpi-v26/splash_logo_round.xml" value="0.1" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/xml/root_preferences.xml" value="0.2" />
        <entry key="..\:/Users/Dharurkar/AndroidStudioProjects/MyApplication3/app/src/main/res/xml/selector.xml" value="0.2234375" />
      </map>
    </option>
  </component>
  <component name="ProjectRootManager" version="2" languageLevel="JDK_11" default="true" project-jdk-name="Android Studio default JDK" project-jdk-type="JavaSDK">
    <output url="file://$PROJECT_DIR$/build/classes" />
  </component>
  <component name="ProjectType">
    <option name="id" value="Android" />
  </component>
</project>

================================================
FILE: .idea/vcs.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="VcsDirectoryMappings">
    <mapping directory="$PROJECT_DIR$" vcs="Git" />
  </component>
</project>

================================================
FILE: LICENSE.md
================================================
                    GNU GENERAL PUBLIC LICENSE
                       Version 3, 29 June 2007

 Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.

                            Preamble

  The GNU General Public License is a free, copyleft license for
software and other kinds of works.

  The licenses for most software and other practical works are designed
to take away your freedom to share and change the works.  By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users.  We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors.  You can apply it to
your programs, too.

  When we speak of free software, we are referring to freedom, not
price.  Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.

  To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights.  Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.

  For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received.  You must make sure that they, too, receive
or can get the source code.  And you must show them these terms so they
know their rights.

  Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.

  For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software.  For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.

  Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so.  This is fundamentally incompatible with the aim of
protecting users' freedom to change the software.  The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable.  Therefore, we
have designed this version of the GPL to prohibit the practice for those
products.  If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.

  Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary.  To prevent this, the GPL assures that
patents cannot be used to render the program non-free.

  The precise terms and conditions for copying, distribution and
modification follow.

                       TERMS AND CONDITIONS

  0. Definitions.

  "This License" refers to version 3 of the GNU General Public License.

  "Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.

  "The Program" refers to any copyrightable work licensed under this
License.  Each licensee is addressed as "you".  "Licensees" and
"recipients" may be individuals or organizations.

  To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy.  The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.

  A "covered work" means either the unmodified Program or a work based
on the Program.

  To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy.  Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.

  To "convey" a work means any kind of propagation that enables other
parties to make or receive copies.  Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.

  An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License.  If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.

  1. Source Code.

  The "source code" for a work means the preferred form of the work
for making modifications to it.  "Object code" means any non-source
form of a work.

  A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.

  The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form.  A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.

  The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities.  However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work.  For example, Corresponding Source
includes interface definition movies associated with source movies for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.

  The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.

  The Corresponding Source for a work in source code form is that
same work.

  2. Basic Permissions.

  All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met.  This License explicitly affirms your unlimited
permission to run the unmodified Program.  The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work.  This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.

  You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force.  You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright.  Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.

  Conveying under any other circumstances is permitted solely under
the conditions stated below.  Sublicensing is not allowed; section 10
makes it unnecessary.

  3. Protecting Users' Legal Rights From Anti-Circumvention Law.

  No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.

  When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.

  4. Conveying Verbatim Copies.

  You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.

  You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.

  5. Conveying Modified Source Versions.

  You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:

    a) The work must carry prominent notices stating that you modified
    it, and giving a relevant date.

    b) The work must carry prominent notices stating that it is
    released under this License and any conditions added under section
    7.  This requirement modifies the requirement in section 4 to
    "keep intact all notices".

    c) You must license the entire work, as a whole, under this
    License to anyone who comes into possession of a copy.  This
    License will therefore apply, along with any applicable section 7
    additional terms, to the whole of the work, and all its parts,
    regardless of how they are packaged.  This License gives no
    permission to license the work in any other way, but it does not
    invalidate such permission if you have separately received it.

    d) If the work has interactive user interfaces, each must display
    Appropriate Legal Notices; however, if the Program has interactive
    interfaces that do not display Appropriate Legal Notices, your
    work need not make them do so.

  A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit.  Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.

  6. Conveying Non-Source Forms.

  You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:

    a) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by the
    Corresponding Source fixed on a durable physical medium
    customarily used for software interchange.

    b) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by a
    written offer, valid for at least three years and valid for as
    long as you offer spare parts or customer support for that product
    model, to give anyone who possesses the object code either (1) a
    copy of the Corresponding Source for all the software in the
    product that is covered by this License, on a durable physical
    medium customarily used for software interchange, for a price no
    more than your reasonable cost of physically performing this
    conveying of source, or (2) access to copy the
    Corresponding Source from a network server at no charge.

    c) Convey individual copies of the object code with a copy of the
    written offer to provide the Corresponding Source.  This
    alternative is allowed only occasionally and noncommercially, and
    only if you received the object code with such an offer, in accord
    with subsection 6b.

    d) Convey the object code by offering access from a designated
    place (gratis or for a charge), and offer equivalent access to the
    Corresponding Source in the same way through the same place at no
    further charge.  You need not require recipients to copy the
    Corresponding Source along with the object code.  If the place to
    copy the object code is a network server, the Corresponding Source
    may be on a different server (operated by you or a third party)
    that supports equivalent copying facilities, provided you maintain
    clear directions next to the object code saying where to find the
    Corresponding Source.  Regardless of what server hosts the
    Corresponding Source, you remain obligated to ensure that it is
    available for as long as needed to satisfy these requirements.

    e) Convey the object code using peer-to-peer transmission, provided
    you inform other peers where the object code and Corresponding
    Source of the work are being offered to the general public at no
    charge under subsection 6d.

  A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.

  A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling.  In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage.  For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product.  A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.

  "Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source.  The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.

  If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information.  But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).

  The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed.  Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.

  Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.

  7. Additional Terms.

  "Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law.  If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.

  When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it.  (Additional permissions may be written to require their own
removal in certain cases when you modify the work.)  You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.

  Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:

    a) Disclaiming warranty or limiting liability differently from the
    terms of sections 15 and 16 of this License; or

    b) Requiring preservation of specified reasonable legal notices or
    author attributions in that material or in the Appropriate Legal
    Notices displayed by works containing it; or

    c) Prohibiting misrepresentation of the origin of that material, or
    requiring that modified versions of such material be marked in
    reasonable ways as different from the original version; or

    d) Limiting the use for publicity purposes of names of licensors or
    authors of the material; or

    e) Declining to grant rights under trademark law for use of some
    trade names, trademarks, or service marks; or

    f) Requiring indemnification of licensors and authors of that
    material by anyone who conveys the material (or modified versions of
    it) with contractual assumptions of liability to the recipient, for
    any liability that these contractual assumptions directly impose on
    those licensors and authors.

  All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10.  If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term.  If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.

  If you add terms to a covered work in accord with this section, you
must place, in the relevant source movies, a statement of the
additional terms that apply to those movies, or a notice indicating
where to find the applicable terms.

  Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.

  8. Termination.

  You may not propagate or modify a covered work except as expressly
provided under this License.  Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).

  However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.

  Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.

  Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License.  If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.

  9. Acceptance Not Required for Having Copies.

  You are not required to accept this License in order to receive or
run a copy of the Program.  Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance.  However,
nothing other than this License grants you permission to propagate or
modify any covered work.  These actions infringe copyright if you do
not accept this License.  Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.

  10. Automatic Licensing of Downstream Recipients.

  Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License.  You are not responsible
for enforcing compliance by third parties with this License.

  An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations.  If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.

  You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License.  For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.

  11. Patents.

  A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based.  The
work thus licensed is called the contributor's "contributor version".

  A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version.  For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.

  Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.

  In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement).  To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.

  If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients.  "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.

  If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.

  A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License.  You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.

  Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.

  12. No Surrender of Others' Freedom.

  If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License.  If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all.  For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.

  13. Use with the GNU Affero General Public License.

  Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work.  The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.

  14. Revised Versions of this License.

  The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time.  Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.

  Each version is given a distinguishing version number.  If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation.  If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.

  If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.

  Later license versions may give you additional or different
permissions.  However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.

  15. Disclaimer of Warranty.

  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.

  16. Limitation of Liability.

  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.

  17. Interpretation of Sections 15 and 16.

  If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.

                     END OF TERMS AND CONDITIONS

            How to Apply These Terms to Your New Programs

  If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.

  To do so, attach the following notices to the program.  It is safest
to attach them to the start of each source movie to most effectively
state the exclusion of warranty; and each movie should have at least
the "copyright" line and a pointer to where the full notice is found.

    <one line to give the program's name and a brief idea of what it does.>
    Copyright (C) <year>  <name of author>

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <https://www.gnu.org/licenses/>.

Also add information on how to contact you by electronic and paper mail.

  If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:

    <program>  Copyright (C) <year>  <name of author>
    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
    This is free software, and you are welcome to redistribute it
    under certain conditions; type `show c' for details.

The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License.  Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".

  You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<https://www.gnu.org/licenses/>.

  The GNU General Public License does not permit incorporating your program
into proprietary programs.  If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library.  If this is what you want to do, use the GNU Lesser General
Public License instead of this License.  But first, please read
<https://www.gnu.org/licenses/why-not-lgpl.html>.


================================================
FILE: README.md
================================================
### **⚡ Thunder** :

An Android app to stream and download your media stored in Google Drive in an Awesome way !!

<p align="center">
<a href="https://github.com/anujd64/Thunder/releases"><img src="https://img.shields.io/github/downloads/anujd64/Thunder/total?color=%233DDC84&logo=android&logoColor=%23fff&style=for-the-badge"></a>
</p>

If you feel like supporting me :

<a href="https://www.buymeacoffee.com/anujd"><img src="https://img.buymeacoffee.com/button-api/?text=Buy me a coffee&emoji=&slug=anujd&button_colour=FF5F5F&font_colour=ffffff&font_family=Cookie&outline_colour=000000&coffee_colour=FFDD00" /></a>

### **🔘 Getting Started** :

Let's say you have a bunch of movies or tv shows lying around in your Drive 
What you need to do is : 
1. Generate an index for the shared drive/folder
2. Deploy to Cloudflare (All instructions on the [Google Drive Index](https://gitlab.com/GoogleDriveIndex/Google-Drive-Index) its super easy)
3. Add the index link to movies folder link ( and username/password if you configured that for index ) in the settings tab, wait until it's done adding  

There you go you have your media Library which sources movies from Drive.
(Probably will add video demo soon)

### **📱 Screenshots** :

<img src="https://github.com/anujd64/Thunder/blob/main/Screenshots/Home.png?raw=true" style="width: 23%;margin:16px;" />&nbsp;&nbsp;
<img src="https://github.com/anujd64/Thunder/blob/main/Screenshots/Home2.png?raw=true" style="width: 23%;margin:16px;" />&nbsp;&nbsp;
<img src="https://github.com/anujd64/Thunder/blob/main/Screenshots/Library-Movies.png?raw=true" style="width: 23%;margin:16px;" />&nbsp;&nbsp;
<img src="https://github.com/anujd64/Thunder/blob/main/Screenshots/Library-TV.png?raw=true" style="width: 23%;margin:16px;" />&nbsp;&nbsp;
<img src="https://github.com/anujd64/Thunder/blob/main/Screenshots/MovieDetails.png?raw=true" style="width: 23%;margin:16px;" />&nbsp;&nbsp;
<img src="https://github.com/anujd64/Thunder/blob/main/Screenshots/TVDetails.png?raw=true" style="width: 23%;margin:16px;" />&nbsp;&nbsp;
<img src="https://github.com/anujd64/Thunder/blob/main/Screenshots/TVDetailsBottom.jpg?raw=true" style="width: 23%;margin:16px;" />&nbsp;&nbsp;
<img src="https://github.com/anujd64/Thunder/blob/main/Screenshots/TVSeasonDetails.jpg?raw=true" style="width: 23%;margin:16px;" />&nbsp;&nbsp;
<img src="https://github.com/anujd64/Thunder/blob/main/Screenshots/TVEpisodeList.jpg?raw=true" style="width: 23%;margin:16px;" />&nbsp;&nbsp;
<img src="https://github.com/anujd64/Thunder/blob/main/Screenshots/TVEpisodeDetails.png?raw=true" style="width: 23%;margin:16px;" />&nbsp;&nbsp;


### **🔥 Features** :

- Stream and Download media directly
- Now Supports adding tv show folders too!!
- Supports Google Drive Index (Recommended) , GO Index , MapleIndex
- No Ads whatsoever
- Cool UI
- You can change Subtitle & Audio tracks while streaming 
- If your phone hardware supports it you can stream it whatever it maybe HDR, HDR10, Dolby Vision
- The app was made to solve a tiny problem with amazing projects like Plex and Jellyfin which cannot use Drive as a source directly



### **🛠️ To Do** :

- [x] Add support for Shows
- [x] Add animations
- [ ] Better Player UI
- [ ] Remember Playback Position 
- [ ] Add Sort to Library
- [ ] Browse by genre 


### **📋 Notes** :

- Added support GOIndex and Maple's GDindex (GOIndex is unreliable try refreshing if movies aren't added)

- Currently video is only hardware decoded (I think) That's why HEVC content may or may not play at all

- Does not directly interact with Drive rather scrapes the index for movies. The index does the talking to the Drive api

- Sub-folders of current folder are searched now but if the folder has too many sub folders it will take longer to scan

- Even if your movies aren't correctly named there is an alternative algorithm which might just extract necessary info

- Media movies with no TMDB info are also shown in the library

- Rarely some movies may be mislabled if there is another movie of same name on TMDB

- Naming of the movies does matter it's better if your movies are named like this
	```
	movie.2049.2160p.whatever
	movie.returns.2099.2160p.whatever
- TV show are recognized based on the naming of an episode file so every episode must be named like this (probably will work if naming follows Scene naming conventions):
	```
	Show Name S01 E01
	Show.Name.S01.E01.2160p.whatever

- Ideally your folder should contain movie movies only like

	``` 
	📂Movies
		└───movie.name.2049.2160p.garbage
		└───movie.returns.2069.2160p.whatever
		└───movie.returns.again.?.2099.2160p.whatever
		└───📂Subfolder <- this folder will be scanned too
		
- If you want to request a feature create an issue with request feature tag
		

## Dependencies:
- Glide
- [FuzzyWuzzy](https://github.com/xdrop/fuzzywuzzy)
- Room DB
- Exoplayer
- BlurView

Special Thanks to:  
[Google Drive Index](https://gitlab.com/GoogleDriveIndex/Google-Drive-Index)  
[Bhadoo-Index-Scraper](https://github.com/sanjit-sinha/Bhadoo-Index-Scraper)

###To build your Own:

Set the "TMDB_API_KEY" and put one or more FanArt API keys in the KEYS array inside the Constants class.

Here's a guide to build your own apk using github by [dishapatel1010](https://github.com/dishapatel010) : https://github.com/dishapatel010/Thunder/tree/Build

### WANT TO CONTRIBUTE ?

All contributions are welcome also request new features and report any bugs or issue at discord/telegram.
[Discord](https://discord.gg/Y8h26bAm) & [Telegram](https://t.me/+qbLDmvEgC65lMWI1)

## DISCLAIMER

* Thunder only scrapes links from various drive indexes provided by user. 

* Thunder or its developer doesn't host any of the contents, it uses TMDB Api to fetch info. 


![Visitor count](https://shields-io-visitor-counter.herokuapp.com/badge?page=anujd64.Thunder)



================================================
FILE: Screenshots/test
================================================



================================================
FILE: app/.gitignore
================================================
/build

================================================
FILE: app/build.gradle
================================================
plugins {
    id 'com.android.application'
}


android {
    compileSdk 32

    defaultConfig {
        applicationId "com.theflexproject.thunder"
        minSdk 21
        targetSdk 32
        versionCode 1
        versionName "1.0.7"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
        javaCompileOptions {
            annotationProcessorOptions {
                arguments += ["room.schemaLocation": "$projectDir/schemas".toString()]
            }
        }
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {




        coreLibraryDesugaringEnabled true





        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    buildFeatures {
        viewBinding true
    }
    lint {
    baseline = file("lint-baseline.xml")
}
    lintOptions { 
    checkReleaseBuilds false
}
}


dependencies {

    coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'


    implementation 'androidx.appcompat:appcompat:1.5.1'
    implementation 'com.google.android.material:material:1.7.0'
    implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
    implementation 'androidx.room:room-common:2.4.3'
    implementation 'androidx.room:room-runtime:2.4.3'
    implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.5.1'
    implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1'
    implementation 'androidx.navigation:navigation-fragment:2.5.3'
    implementation 'androidx.navigation:navigation-ui:2.5.3'
    testImplementation 'junit:junit:4.13.2'
    androidTestImplementation 'androidx.test.ext:junit:1.1.3'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
    implementation 'com.google.code.gson:gson:2.9.1'
    implementation group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1'
    annotationProcessor 'androidx.room:room-compiler:2.4.3'
    implementation 'com.google.android.material:material:1.7.0'
    implementation 'com.github.bumptech.glide:glide:4.13.2'
    annotationProcessor 'com.github.bumptech.glide:compiler:4.13.2'
    implementation 'com.google.android.exoplayer:exoplayer:2.18.1'
    implementation fileTree(dir: "libs", include: ["extension-*.aar"])
    implementation 'com.github.Dimezis:BlurView:version-2.0.2'
    implementation 'me.xdrop:fuzzywuzzy:1.4.0'
    implementation 'jp.wasabeef:glide-transformations:4.3.0'
    implementation "androidx.work:work-runtime:2.7.1"

    implementation 'com.fasterxml.jackson.core:jackson-databind:2.14.1'

    implementation 'org.apache.commons:commons-text:1.9'


}


================================================
FILE: app/proguard-rules.pro
================================================
# Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.
#
# For more details, see
#   http://developer.android.com/guide/developing/tools/proguard.html

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
#   public *;
#}

# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable

# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile

================================================
FILE: app/schemas/com.example.myapplication.AppDatabase/5.json
================================================
{
  "formatVersion": 1,
  "database": {
    "version": 5,
    "identityHash": "e7e8f2094f612b155f61f46396c10450",
    "entities": [
      {
        "tableName": "ResFormat",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `data` TEXT, `nextPageToken` TEXT, `curPageIndex` TEXT)",
        "fields": [
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "data",
            "columnName": "data",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "nextPageToken",
            "columnName": "nextPageToken",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "curPageIndex",
            "columnName": "curPageIndex",
            "affinity": "TEXT",
            "notNull": false
          }
        ],
        "primaryKey": {
          "columnNames": [
            "id"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "File",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`fileid` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `id` TEXT, `name` TEXT, `mimeType` TEXT, `modifiedTime` INTEGER, `size` TEXT, `urlString` TEXT, `title` TEXT, `adult` INTEGER NOT NULL, `backdrop_path` TEXT, `original_language` TEXT, `original_title` TEXT, `overview` TEXT, `popularity` REAL NOT NULL, `poster_path` TEXT, `release_date` TEXT, `video` INTEGER NOT NULL, `vote_average` REAL NOT NULL, `vote_count` INTEGER NOT NULL)",
        "fields": [
          {
            "fieldPath": "fileid",
            "columnName": "fileid",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "name",
            "columnName": "name",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "mimeType",
            "columnName": "mimeType",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "modifiedTime",
            "columnName": "modifiedTime",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "size",
            "columnName": "size",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "urlString",
            "columnName": "urlString",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "title",
            "columnName": "title",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "adult",
            "columnName": "adult",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "backdrop_path",
            "columnName": "backdrop_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "original_language",
            "columnName": "original_language",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "original_title",
            "columnName": "original_title",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "overview",
            "columnName": "overview",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "popularity",
            "columnName": "popularity",
            "affinity": "REAL",
            "notNull": true
          },
          {
            "fieldPath": "poster_path",
            "columnName": "poster_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "release_date",
            "columnName": "release_date",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "video",
            "columnName": "video",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "vote_average",
            "columnName": "vote_average",
            "affinity": "REAL",
            "notNull": true
          },
          {
            "fieldPath": "vote_count",
            "columnName": "vote_count",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "fileid"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "IndexLink",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `link` TEXT, `username` TEXT, `password` TEXT)",
        "fields": [
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "link",
            "columnName": "link",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "username",
            "columnName": "username",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "password",
            "columnName": "password",
            "affinity": "TEXT",
            "notNull": false
          }
        ],
        "primaryKey": {
          "columnNames": [
            "id"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      }
    ],
    "views": [],
    "setupQueries": [
      "CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
      "INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, 'e7e8f2094f612b155f61f46396c10450')"
    ]
  }
}

================================================
FILE: app/schemas/com.example.myapplication.database.AppDatabase/10.json
================================================
{
  "formatVersion": 1,
  "database": {
    "version": 10,
    "identityHash": "a3191ca2c9aec41d6069b616bb985e84",
    "entities": [
      {
        "tableName": "ResFormat",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `data` TEXT, `nextPageToken` TEXT, `curPageIndex` TEXT)",
        "fields": [
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "data",
            "columnName": "data",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "nextPageToken",
            "columnName": "nextPageToken",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "curPageIndex",
            "columnName": "curPageIndex",
            "affinity": "TEXT",
            "notNull": false
          }
        ],
        "primaryKey": {
          "columnNames": [
            "id"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "File",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`fileid` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `id` TEXT, `name` TEXT, `mimeType` TEXT, `modifiedTime` INTEGER, `size` TEXT, `urlString` TEXT, `Played` INTEGER NOT NULL, `title` TEXT, `adult` INTEGER NOT NULL, `backdrop_path` TEXT, `original_language` TEXT, `original_title` TEXT, `overview` TEXT, `popularity` REAL NOT NULL, `poster_path` TEXT, `release_date` TEXT, `video` INTEGER NOT NULL, `vote_average` REAL NOT NULL, `vote_count` INTEGER NOT NULL)",
        "fields": [
          {
            "fieldPath": "fileid",
            "columnName": "fileid",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "name",
            "columnName": "name",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "mimeType",
            "columnName": "mimeType",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "modifiedTime",
            "columnName": "modifiedTime",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "size",
            "columnName": "size",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "urlString",
            "columnName": "urlString",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "Played",
            "columnName": "Played",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "title",
            "columnName": "title",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "adult",
            "columnName": "adult",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "backdrop_path",
            "columnName": "backdrop_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "original_language",
            "columnName": "original_language",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "original_title",
            "columnName": "original_title",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "overview",
            "columnName": "overview",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "popularity",
            "columnName": "popularity",
            "affinity": "REAL",
            "notNull": true
          },
          {
            "fieldPath": "poster_path",
            "columnName": "poster_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "release_date",
            "columnName": "release_date",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "video",
            "columnName": "video",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "vote_average",
            "columnName": "vote_average",
            "affinity": "REAL",
            "notNull": true
          },
          {
            "fieldPath": "vote_count",
            "columnName": "vote_count",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "fileid"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "IndexLink",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `link` TEXT, `username` TEXT, `password` TEXT)",
        "fields": [
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "link",
            "columnName": "link",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "username",
            "columnName": "username",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "password",
            "columnName": "password",
            "affinity": "TEXT",
            "notNull": false
          }
        ],
        "primaryKey": {
          "columnNames": [
            "id"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      }
    ],
    "views": [],
    "setupQueries": [
      "CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
      "INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, 'a3191ca2c9aec41d6069b616bb985e84')"
    ]
  }
}

================================================
FILE: app/schemas/com.theflexproject.thunder.database.AppDatabase/10.json
================================================
{
  "formatVersion": 1,
  "database": {
    "version": 10,
    "identityHash": "a3191ca2c9aec41d6069b616bb985e84",
    "entities": [
      {
        "tableName": "ResFormat",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `data` TEXT, `nextPageToken` TEXT, `curPageIndex` TEXT)",
        "fields": [
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "data",
            "columnName": "data",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "nextPageToken",
            "columnName": "nextPageToken",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "curPageIndex",
            "columnName": "curPageIndex",
            "affinity": "TEXT",
            "notNull": false
          }
        ],
        "primaryKey": {
          "columnNames": [
            "id"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "File",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`fileid` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `id` TEXT, `name` TEXT, `mimeType` TEXT, `modifiedTime` INTEGER, `size` TEXT, `urlString` TEXT, `Played` INTEGER NOT NULL, `title` TEXT, `adult` INTEGER NOT NULL, `backdrop_path` TEXT, `original_language` TEXT, `original_title` TEXT, `overview` TEXT, `popularity` REAL NOT NULL, `poster_path` TEXT, `release_date` TEXT, `video` INTEGER NOT NULL, `vote_average` REAL NOT NULL, `vote_count` INTEGER NOT NULL)",
        "fields": [
          {
            "fieldPath": "fileid",
            "columnName": "fileid",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "name",
            "columnName": "name",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "mimeType",
            "columnName": "mimeType",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "modifiedTime",
            "columnName": "modifiedTime",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "size",
            "columnName": "size",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "urlString",
            "columnName": "urlString",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "Played",
            "columnName": "Played",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "title",
            "columnName": "title",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "adult",
            "columnName": "adult",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "backdrop_path",
            "columnName": "backdrop_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "original_language",
            "columnName": "original_language",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "original_title",
            "columnName": "original_title",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "overview",
            "columnName": "overview",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "popularity",
            "columnName": "popularity",
            "affinity": "REAL",
            "notNull": true
          },
          {
            "fieldPath": "poster_path",
            "columnName": "poster_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "release_date",
            "columnName": "release_date",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "video",
            "columnName": "video",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "vote_average",
            "columnName": "vote_average",
            "affinity": "REAL",
            "notNull": true
          },
          {
            "fieldPath": "vote_count",
            "columnName": "vote_count",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "fileid"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "IndexLink",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `link` TEXT, `username` TEXT, `password` TEXT)",
        "fields": [
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "link",
            "columnName": "link",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "username",
            "columnName": "username",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "password",
            "columnName": "password",
            "affinity": "TEXT",
            "notNull": false
          }
        ],
        "primaryKey": {
          "columnNames": [
            "id"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      }
    ],
    "views": [],
    "setupQueries": [
      "CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
      "INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, 'a3191ca2c9aec41d6069b616bb985e84')"
    ]
  }
}

================================================
FILE: app/schemas/com.theflexproject.thunder.database.AppDatabase/11.json
================================================
{
  "formatVersion": 1,
  "database": {
    "version": 11,
    "identityHash": "dc2b4b8434670c24490e48c6d3f709de",
    "entities": [
      {
        "tableName": "ResFormat",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `data` TEXT, `nextPageToken` TEXT, `curPageIndex` TEXT)",
        "fields": [
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "data",
            "columnName": "data",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "nextPageToken",
            "columnName": "nextPageToken",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "curPageIndex",
            "columnName": "curPageIndex",
            "affinity": "TEXT",
            "notNull": false
          }
        ],
        "primaryKey": {
          "columnNames": [
            "id"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "File",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`fileid` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `id` TEXT, `name` TEXT, `mimeType` TEXT, `modifiedTime` INTEGER, `size` TEXT, `urlString` TEXT, `Played` INTEGER NOT NULL, `title` TEXT, `adult` INTEGER NOT NULL, `backdrop_path` TEXT, `original_language` TEXT, `original_title` TEXT, `overview` TEXT, `popularity` REAL NOT NULL, `poster_path` TEXT, `release_date` TEXT, `video` INTEGER NOT NULL, `vote_average` REAL NOT NULL, `vote_count` INTEGER NOT NULL)",
        "fields": [
          {
            "fieldPath": "fileid",
            "columnName": "fileid",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "name",
            "columnName": "name",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "mimeType",
            "columnName": "mimeType",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "modifiedTime",
            "columnName": "modifiedTime",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "size",
            "columnName": "size",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "urlString",
            "columnName": "urlString",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "Played",
            "columnName": "Played",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "title",
            "columnName": "title",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "adult",
            "columnName": "adult",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "backdrop_path",
            "columnName": "backdrop_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "original_language",
            "columnName": "original_language",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "original_title",
            "columnName": "original_title",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "overview",
            "columnName": "overview",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "popularity",
            "columnName": "popularity",
            "affinity": "REAL",
            "notNull": true
          },
          {
            "fieldPath": "poster_path",
            "columnName": "poster_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "release_date",
            "columnName": "release_date",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "video",
            "columnName": "video",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "vote_average",
            "columnName": "vote_average",
            "affinity": "REAL",
            "notNull": true
          },
          {
            "fieldPath": "vote_count",
            "columnName": "vote_count",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "fileid"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "IndexLink",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `link` TEXT, `username` TEXT, `password` TEXT, `type` TEXT)",
        "fields": [
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "link",
            "columnName": "link",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "username",
            "columnName": "username",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "password",
            "columnName": "password",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "type",
            "columnName": "type",
            "affinity": "TEXT",
            "notNull": false
          }
        ],
        "primaryKey": {
          "columnNames": [
            "id"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      }
    ],
    "views": [],
    "setupQueries": [
      "CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
      "INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, 'dc2b4b8434670c24490e48c6d3f709de')"
    ]
  }
}

================================================
FILE: app/schemas/com.theflexproject.thunder.database.AppDatabase/12.json
================================================
{
  "formatVersion": 1,
  "database": {
    "version": 12,
    "identityHash": "8f3e141fb570a3206f81f4dbd6f7f241",
    "entities": [
      {
        "tableName": "ResFormat",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `data` TEXT, `nextPageToken` TEXT, `curPageIndex` TEXT, `code` TEXT)",
        "fields": [
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "data",
            "columnName": "data",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "nextPageToken",
            "columnName": "nextPageToken",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "curPageIndex",
            "columnName": "curPageIndex",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "code",
            "columnName": "code",
            "affinity": "TEXT",
            "notNull": false
          }
        ],
        "primaryKey": {
          "columnNames": [
            "id"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "File",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`fileid` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `id` TEXT, `name` TEXT, `mimeType` TEXT, `modifiedTime` INTEGER, `size` TEXT, `urlString` TEXT, `Played` INTEGER NOT NULL, `title` TEXT, `adult` INTEGER NOT NULL, `backdrop_path` TEXT, `original_language` TEXT, `original_title` TEXT, `overview` TEXT, `popularity` REAL NOT NULL, `poster_path` TEXT, `release_date` TEXT, `video` INTEGER NOT NULL, `vote_average` REAL NOT NULL, `vote_count` INTEGER NOT NULL)",
        "fields": [
          {
            "fieldPath": "fileid",
            "columnName": "fileid",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "name",
            "columnName": "name",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "mimeType",
            "columnName": "mimeType",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "modifiedTime",
            "columnName": "modifiedTime",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "size",
            "columnName": "size",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "urlString",
            "columnName": "urlString",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "Played",
            "columnName": "Played",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "title",
            "columnName": "title",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "adult",
            "columnName": "adult",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "backdrop_path",
            "columnName": "backdrop_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "original_language",
            "columnName": "original_language",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "original_title",
            "columnName": "original_title",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "overview",
            "columnName": "overview",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "popularity",
            "columnName": "popularity",
            "affinity": "REAL",
            "notNull": true
          },
          {
            "fieldPath": "poster_path",
            "columnName": "poster_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "release_date",
            "columnName": "release_date",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "video",
            "columnName": "video",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "vote_average",
            "columnName": "vote_average",
            "affinity": "REAL",
            "notNull": true
          },
          {
            "fieldPath": "vote_count",
            "columnName": "vote_count",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "fileid"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "IndexLink",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `link` TEXT, `username` TEXT, `password` TEXT, `type` TEXT)",
        "fields": [
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "link",
            "columnName": "link",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "username",
            "columnName": "username",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "password",
            "columnName": "password",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "type",
            "columnName": "type",
            "affinity": "TEXT",
            "notNull": false
          }
        ],
        "primaryKey": {
          "columnNames": [
            "id"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      }
    ],
    "views": [],
    "setupQueries": [
      "CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
      "INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, '8f3e141fb570a3206f81f4dbd6f7f241')"
    ]
  }
}

================================================
FILE: app/schemas/com.theflexproject.thunder.database.AppDatabase/13.json
================================================
{
  "formatVersion": 1,
  "database": {
    "version": 13,
    "identityHash": "e5ffc1c9484edf1b54be13fe8145052d",
    "entities": [
      {
        "tableName": "ResFormat",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `data` TEXT, `nextPageToken` TEXT, `curPageIndex` TEXT, `code` INTEGER NOT NULL)",
        "fields": [
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "data",
            "columnName": "data",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "nextPageToken",
            "columnName": "nextPageToken",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "curPageIndex",
            "columnName": "curPageIndex",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "code",
            "columnName": "code",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "id"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "File",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`fileid` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `id` TEXT, `name` TEXT, `mimeType` TEXT, `modifiedTime` INTEGER, `size` TEXT, `urlString` TEXT, `Played` INTEGER NOT NULL, `title` TEXT, `adult` INTEGER NOT NULL, `backdrop_path` TEXT, `original_language` TEXT, `original_title` TEXT, `overview` TEXT, `popularity` REAL NOT NULL, `poster_path` TEXT, `release_date` TEXT, `video` INTEGER NOT NULL, `vote_average` REAL NOT NULL, `vote_count` INTEGER NOT NULL)",
        "fields": [
          {
            "fieldPath": "fileid",
            "columnName": "fileid",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "name",
            "columnName": "name",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "mimeType",
            "columnName": "mimeType",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "modifiedTime",
            "columnName": "modifiedTime",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "size",
            "columnName": "size",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "urlString",
            "columnName": "urlString",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "Played",
            "columnName": "Played",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "title",
            "columnName": "title",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "adult",
            "columnName": "adult",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "backdrop_path",
            "columnName": "backdrop_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "original_language",
            "columnName": "original_language",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "original_title",
            "columnName": "original_title",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "overview",
            "columnName": "overview",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "popularity",
            "columnName": "popularity",
            "affinity": "REAL",
            "notNull": true
          },
          {
            "fieldPath": "poster_path",
            "columnName": "poster_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "release_date",
            "columnName": "release_date",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "video",
            "columnName": "video",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "vote_average",
            "columnName": "vote_average",
            "affinity": "REAL",
            "notNull": true
          },
          {
            "fieldPath": "vote_count",
            "columnName": "vote_count",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "fileid"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "IndexLink",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `link` TEXT, `username` TEXT, `password` TEXT, `type` TEXT)",
        "fields": [
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "link",
            "columnName": "link",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "username",
            "columnName": "username",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "password",
            "columnName": "password",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "type",
            "columnName": "type",
            "affinity": "TEXT",
            "notNull": false
          }
        ],
        "primaryKey": {
          "columnNames": [
            "id"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      }
    ],
    "views": [],
    "setupQueries": [
      "CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
      "INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, 'e5ffc1c9484edf1b54be13fe8145052d')"
    ]
  }
}

================================================
FILE: app/schemas/com.theflexproject.thunder.database.AppDatabase/14.json
================================================
{
  "formatVersion": 1,
  "database": {
    "version": 14,
    "identityHash": "d5ae92f3371d6e4ee02a9de4fad13d0e",
    "entities": [
      {
        "tableName": "ResFormat",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `data` TEXT, `nextPageToken` TEXT, `curPageIndex` TEXT, `code` INTEGER NOT NULL)",
        "fields": [
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "data",
            "columnName": "data",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "nextPageToken",
            "columnName": "nextPageToken",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "curPageIndex",
            "columnName": "curPageIndex",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "code",
            "columnName": "code",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "id"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "Movie",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`fileid` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `id` TEXT, `name` TEXT, `mimeType` TEXT, `modifiedTime` INTEGER, `size` TEXT, `urlString` TEXT, `Played` INTEGER NOT NULL, `title` TEXT, `adult` INTEGER NOT NULL, `backdrop_path` TEXT, `original_language` TEXT, `original_title` TEXT, `overview` TEXT, `popularity` REAL NOT NULL, `poster_path` TEXT, `release_date` TEXT, `video` INTEGER NOT NULL, `vote_average` REAL NOT NULL, `vote_count` INTEGER NOT NULL)",
        "fields": [
          {
            "fieldPath": "fileid",
            "columnName": "fileid",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "name",
            "columnName": "name",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "mimeType",
            "columnName": "mimeType",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "modifiedTime",
            "columnName": "modifiedTime",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "size",
            "columnName": "size",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "urlString",
            "columnName": "urlString",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "Played",
            "columnName": "Played",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "title",
            "columnName": "title",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "adult",
            "columnName": "adult",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "backdrop_path",
            "columnName": "backdrop_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "original_language",
            "columnName": "original_language",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "original_title",
            "columnName": "original_title",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "overview",
            "columnName": "overview",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "popularity",
            "columnName": "popularity",
            "affinity": "REAL",
            "notNull": true
          },
          {
            "fieldPath": "poster_path",
            "columnName": "poster_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "release_date",
            "columnName": "release_date",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "video",
            "columnName": "video",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "vote_average",
            "columnName": "vote_average",
            "affinity": "REAL",
            "notNull": true
          },
          {
            "fieldPath": "vote_count",
            "columnName": "vote_count",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "fileid"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "IndexLink",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `link` TEXT, `username` TEXT, `password` TEXT, `type` TEXT)",
        "fields": [
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "link",
            "columnName": "link",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "username",
            "columnName": "username",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "password",
            "columnName": "password",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "type",
            "columnName": "type",
            "affinity": "TEXT",
            "notNull": false
          }
        ],
        "primaryKey": {
          "columnNames": [
            "id"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      }
    ],
    "views": [],
    "setupQueries": [
      "CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
      "INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, 'd5ae92f3371d6e4ee02a9de4fad13d0e')"
    ]
  }
}

================================================
FILE: app/schemas/com.theflexproject.thunder.database.AppDatabase/15.json
================================================
{
  "formatVersion": 1,
  "database": {
    "version": 15,
    "identityHash": "f5918f60ec7ae38a4c4862d9ae41a9f6",
    "entities": [
      {
        "tableName": "ResFormat",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `data` TEXT, `nextPageToken` TEXT, `curPageIndex` TEXT, `code` INTEGER NOT NULL)",
        "fields": [
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "data",
            "columnName": "data",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "nextPageToken",
            "columnName": "nextPageToken",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "curPageIndex",
            "columnName": "curPageIndex",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "code",
            "columnName": "code",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "id"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "Movie",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`fileid` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `id` TEXT, `name` TEXT, `mimeType` TEXT, `modifiedTime` INTEGER, `size` TEXT, `urlString` TEXT, `Played` INTEGER NOT NULL, `title` TEXT, `adult` INTEGER NOT NULL, `backdrop_path` TEXT, `original_language` TEXT, `original_title` TEXT, `overview` TEXT, `popularity` REAL NOT NULL, `poster_path` TEXT, `release_date` TEXT, `video` INTEGER NOT NULL, `vote_average` REAL NOT NULL, `vote_count` INTEGER NOT NULL)",
        "fields": [
          {
            "fieldPath": "fileid",
            "columnName": "fileid",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "name",
            "columnName": "name",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "mimeType",
            "columnName": "mimeType",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "modifiedTime",
            "columnName": "modifiedTime",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "size",
            "columnName": "size",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "urlString",
            "columnName": "urlString",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "Played",
            "columnName": "Played",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "title",
            "columnName": "title",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "adult",
            "columnName": "adult",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "backdrop_path",
            "columnName": "backdrop_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "original_language",
            "columnName": "original_language",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "original_title",
            "columnName": "original_title",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "overview",
            "columnName": "overview",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "popularity",
            "columnName": "popularity",
            "affinity": "REAL",
            "notNull": true
          },
          {
            "fieldPath": "poster_path",
            "columnName": "poster_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "release_date",
            "columnName": "release_date",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "video",
            "columnName": "video",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "vote_average",
            "columnName": "vote_average",
            "affinity": "REAL",
            "notNull": true
          },
          {
            "fieldPath": "vote_count",
            "columnName": "vote_count",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "fileid"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "IndexLink",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `link` TEXT, `username` TEXT, `password` TEXT, `indexType` TEXT, `folderType` TEXT)",
        "fields": [
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "link",
            "columnName": "link",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "username",
            "columnName": "username",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "password",
            "columnName": "password",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "indexType",
            "columnName": "indexType",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "folderType",
            "columnName": "folderType",
            "affinity": "TEXT",
            "notNull": false
          }
        ],
        "primaryKey": {
          "columnNames": [
            "id"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      }
    ],
    "views": [],
    "setupQueries": [
      "CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
      "INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, 'f5918f60ec7ae38a4c4862d9ae41a9f6')"
    ]
  }
}

================================================
FILE: app/schemas/com.theflexproject.thunder.database.AppDatabase/16.json
================================================
{
  "formatVersion": 1,
  "database": {
    "version": 16,
    "identityHash": "f5918f60ec7ae38a4c4862d9ae41a9f6",
    "entities": [
      {
        "tableName": "ResFormat",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `data` TEXT, `nextPageToken` TEXT, `curPageIndex` TEXT, `code` INTEGER NOT NULL)",
        "fields": [
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "data",
            "columnName": "data",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "nextPageToken",
            "columnName": "nextPageToken",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "curPageIndex",
            "columnName": "curPageIndex",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "code",
            "columnName": "code",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "id"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "Movie",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`fileid` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `id` TEXT, `name` TEXT, `mimeType` TEXT, `modifiedTime` INTEGER, `size` TEXT, `urlString` TEXT, `Played` INTEGER NOT NULL, `title` TEXT, `adult` INTEGER NOT NULL, `backdrop_path` TEXT, `original_language` TEXT, `original_title` TEXT, `overview` TEXT, `popularity` REAL NOT NULL, `poster_path` TEXT, `release_date` TEXT, `video` INTEGER NOT NULL, `vote_average` REAL NOT NULL, `vote_count` INTEGER NOT NULL)",
        "fields": [
          {
            "fieldPath": "fileid",
            "columnName": "fileid",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "name",
            "columnName": "name",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "mimeType",
            "columnName": "mimeType",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "modifiedTime",
            "columnName": "modifiedTime",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "size",
            "columnName": "size",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "urlString",
            "columnName": "urlString",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "Played",
            "columnName": "Played",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "title",
            "columnName": "title",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "adult",
            "columnName": "adult",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "backdrop_path",
            "columnName": "backdrop_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "original_language",
            "columnName": "original_language",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "original_title",
            "columnName": "original_title",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "overview",
            "columnName": "overview",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "popularity",
            "columnName": "popularity",
            "affinity": "REAL",
            "notNull": true
          },
          {
            "fieldPath": "poster_path",
            "columnName": "poster_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "release_date",
            "columnName": "release_date",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "video",
            "columnName": "video",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "vote_average",
            "columnName": "vote_average",
            "affinity": "REAL",
            "notNull": true
          },
          {
            "fieldPath": "vote_count",
            "columnName": "vote_count",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "fileid"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "IndexLink",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `link` TEXT, `username` TEXT, `password` TEXT, `indexType` TEXT, `folderType` TEXT)",
        "fields": [
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "link",
            "columnName": "link",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "username",
            "columnName": "username",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "password",
            "columnName": "password",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "indexType",
            "columnName": "indexType",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "folderType",
            "columnName": "folderType",
            "affinity": "TEXT",
            "notNull": false
          }
        ],
        "primaryKey": {
          "columnNames": [
            "id"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      }
    ],
    "views": [],
    "setupQueries": [
      "CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
      "INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, 'f5918f60ec7ae38a4c4862d9ae41a9f6')"
    ]
  }
}

================================================
FILE: app/schemas/com.theflexproject.thunder.database.AppDatabase/17.json
================================================
{
  "formatVersion": 1,
  "database": {
    "version": 17,
    "identityHash": "c6828cd08c7bdbfe17209d6d425a34ca",
    "entities": [
      {
        "tableName": "ResFormat",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `data` TEXT, `nextPageToken` TEXT, `curPageIndex` TEXT, `code` INTEGER NOT NULL)",
        "fields": [
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "data",
            "columnName": "data",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "nextPageToken",
            "columnName": "nextPageToken",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "curPageIndex",
            "columnName": "curPageIndex",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "code",
            "columnName": "code",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "id"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "Movie",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`fileid` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `id` TEXT, `name` TEXT, `mimeType` TEXT, `modifiedTime` INTEGER, `size` TEXT, `urlString` TEXT, `Played` INTEGER NOT NULL, `title` TEXT, `adult` INTEGER NOT NULL, `backdrop_path` TEXT, `original_language` TEXT, `original_title` TEXT, `overview` TEXT, `popularity` REAL NOT NULL, `poster_path` TEXT, `release_date` TEXT, `video` INTEGER NOT NULL, `vote_average` REAL NOT NULL, `vote_count` INTEGER NOT NULL)",
        "fields": [
          {
            "fieldPath": "fileid",
            "columnName": "fileid",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "name",
            "columnName": "name",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "mimeType",
            "columnName": "mimeType",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "modifiedTime",
            "columnName": "modifiedTime",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "size",
            "columnName": "size",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "urlString",
            "columnName": "urlString",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "Played",
            "columnName": "Played",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "title",
            "columnName": "title",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "adult",
            "columnName": "adult",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "backdrop_path",
            "columnName": "backdrop_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "original_language",
            "columnName": "original_language",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "original_title",
            "columnName": "original_title",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "overview",
            "columnName": "overview",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "popularity",
            "columnName": "popularity",
            "affinity": "REAL",
            "notNull": true
          },
          {
            "fieldPath": "poster_path",
            "columnName": "poster_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "release_date",
            "columnName": "release_date",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "video",
            "columnName": "video",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "vote_average",
            "columnName": "vote_average",
            "affinity": "REAL",
            "notNull": true
          },
          {
            "fieldPath": "vote_count",
            "columnName": "vote_count",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "fileid"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "IndexLink",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `link` TEXT, `username` TEXT, `password` TEXT, `indexType` TEXT, `folderType` TEXT)",
        "fields": [
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "link",
            "columnName": "link",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "username",
            "columnName": "username",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "password",
            "columnName": "password",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "indexType",
            "columnName": "indexType",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "folderType",
            "columnName": "folderType",
            "affinity": "TEXT",
            "notNull": false
          }
        ],
        "primaryKey": {
          "columnNames": [
            "id"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "TVShowSeasonDetails",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`_id` TEXT NOT NULL, `air_date` TEXT, `episodes` TEXT, `name` TEXT, `overview` TEXT, `id` INTEGER NOT NULL, `poster_path` TEXT, `season_number` INTEGER NOT NULL, PRIMARY KEY(`_id`))",
        "fields": [
          {
            "fieldPath": "_id",
            "columnName": "_id",
            "affinity": "TEXT",
            "notNull": true
          },
          {
            "fieldPath": "air_date",
            "columnName": "air_date",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "episodes",
            "columnName": "episodes",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "name",
            "columnName": "name",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "overview",
            "columnName": "overview",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "poster_path",
            "columnName": "poster_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "season_number",
            "columnName": "season_number",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "_id"
          ],
          "autoGenerate": false
        },
        "indices": [],
        "foreignKeys": []
      }
    ],
    "views": [],
    "setupQueries": [
      "CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
      "INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, 'c6828cd08c7bdbfe17209d6d425a34ca')"
    ]
  }
}

================================================
FILE: app/schemas/com.theflexproject.thunder.database.AppDatabase/18.json
================================================
{
  "formatVersion": 1,
  "database": {
    "version": 18,
    "identityHash": "e52e100e7bfc5d329c82081604154530",
    "entities": [
      {
        "tableName": "ResFormat",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `data` TEXT, `nextPageToken` TEXT, `curPageIndex` TEXT, `code` INTEGER NOT NULL)",
        "fields": [
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "data",
            "columnName": "data",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "nextPageToken",
            "columnName": "nextPageToken",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "curPageIndex",
            "columnName": "curPageIndex",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "code",
            "columnName": "code",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "id"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "Movie",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`fileid` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `id` TEXT, `name` TEXT, `mimeType` TEXT, `modifiedTime` INTEGER, `size` TEXT, `urlString` TEXT, `Played` INTEGER NOT NULL, `title` TEXT, `adult` INTEGER NOT NULL, `backdrop_path` TEXT, `original_language` TEXT, `original_title` TEXT, `overview` TEXT, `popularity` REAL NOT NULL, `poster_path` TEXT, `release_date` TEXT, `video` INTEGER NOT NULL, `vote_average` REAL NOT NULL, `vote_count` INTEGER NOT NULL)",
        "fields": [
          {
            "fieldPath": "fileid",
            "columnName": "fileid",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "name",
            "columnName": "name",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "mimeType",
            "columnName": "mimeType",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "modifiedTime",
            "columnName": "modifiedTime",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "size",
            "columnName": "size",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "urlString",
            "columnName": "urlString",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "Played",
            "columnName": "Played",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "title",
            "columnName": "title",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "adult",
            "columnName": "adult",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "backdrop_path",
            "columnName": "backdrop_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "original_language",
            "columnName": "original_language",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "original_title",
            "columnName": "original_title",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "overview",
            "columnName": "overview",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "popularity",
            "columnName": "popularity",
            "affinity": "REAL",
            "notNull": true
          },
          {
            "fieldPath": "poster_path",
            "columnName": "poster_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "release_date",
            "columnName": "release_date",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "video",
            "columnName": "video",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "vote_average",
            "columnName": "vote_average",
            "affinity": "REAL",
            "notNull": true
          },
          {
            "fieldPath": "vote_count",
            "columnName": "vote_count",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "fileid"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "IndexLink",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `link` TEXT, `username` TEXT, `password` TEXT, `indexType` TEXT, `folderType` TEXT)",
        "fields": [
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "link",
            "columnName": "link",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "username",
            "columnName": "username",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "password",
            "columnName": "password",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "indexType",
            "columnName": "indexType",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "folderType",
            "columnName": "folderType",
            "affinity": "TEXT",
            "notNull": false
          }
        ],
        "primaryKey": {
          "columnNames": [
            "id"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "TVShow",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`idForDB` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `adult` INTEGER NOT NULL, `backdrop_path` TEXT, `first_air_date` TEXT, `homepage` TEXT, `id` INTEGER NOT NULL, `in_production` INTEGER NOT NULL, `last_air_date` TEXT, `name` TEXT, `number_of_episodes` INTEGER NOT NULL, `number_of_seasons` INTEGER NOT NULL, `original_language` TEXT, `original_name` TEXT, `overview` TEXT, `popularity` REAL NOT NULL, `poster_path` TEXT, `seasons` TEXT, `status` TEXT, `tagline` TEXT, `type` TEXT, `vote_average` REAL NOT NULL, `vote_count` INTEGER NOT NULL)",
        "fields": [
          {
            "fieldPath": "idForDB",
            "columnName": "idForDB",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "adult",
            "columnName": "adult",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "backdrop_path",
            "columnName": "backdrop_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "first_air_date",
            "columnName": "first_air_date",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "homepage",
            "columnName": "homepage",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "in_production",
            "columnName": "in_production",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "last_air_date",
            "columnName": "last_air_date",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "name",
            "columnName": "name",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "number_of_episodes",
            "columnName": "number_of_episodes",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "number_of_seasons",
            "columnName": "number_of_seasons",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "original_language",
            "columnName": "original_language",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "original_name",
            "columnName": "original_name",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "overview",
            "columnName": "overview",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "popularity",
            "columnName": "popularity",
            "affinity": "REAL",
            "notNull": true
          },
          {
            "fieldPath": "poster_path",
            "columnName": "poster_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "seasons",
            "columnName": "seasons",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "status",
            "columnName": "status",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "tagline",
            "columnName": "tagline",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "type",
            "columnName": "type",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "vote_average",
            "columnName": "vote_average",
            "affinity": "REAL",
            "notNull": true
          },
          {
            "fieldPath": "vote_count",
            "columnName": "vote_count",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "idForDB"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "TVShowSeasonDetails",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`idfordb` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `_id` TEXT, `air_date` TEXT, `episodes` TEXT, `name` TEXT, `overview` TEXT, `id` INTEGER NOT NULL, `poster_path` TEXT, `season_number` INTEGER NOT NULL)",
        "fields": [
          {
            "fieldPath": "idfordb",
            "columnName": "idfordb",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "_id",
            "columnName": "_id",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "air_date",
            "columnName": "air_date",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "episodes",
            "columnName": "episodes",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "name",
            "columnName": "name",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "overview",
            "columnName": "overview",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "poster_path",
            "columnName": "poster_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "season_number",
            "columnName": "season_number",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "idfordb"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      }
    ],
    "views": [],
    "setupQueries": [
      "CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
      "INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, 'e52e100e7bfc5d329c82081604154530')"
    ]
  }
}

================================================
FILE: app/schemas/com.theflexproject.thunder.database.AppDatabase/19.json
================================================
{
  "formatVersion": 1,
  "database": {
    "version": 19,
    "identityHash": "e52e100e7bfc5d329c82081604154530",
    "entities": [
      {
        "tableName": "ResFormat",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `data` TEXT, `nextPageToken` TEXT, `curPageIndex` TEXT, `code` INTEGER NOT NULL)",
        "fields": [
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "data",
            "columnName": "data",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "nextPageToken",
            "columnName": "nextPageToken",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "curPageIndex",
            "columnName": "curPageIndex",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "code",
            "columnName": "code",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "id"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "Movie",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`fileid` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `id` TEXT, `name` TEXT, `mimeType` TEXT, `modifiedTime` INTEGER, `size` TEXT, `urlString` TEXT, `Played` INTEGER NOT NULL, `title` TEXT, `adult` INTEGER NOT NULL, `backdrop_path` TEXT, `original_language` TEXT, `original_title` TEXT, `overview` TEXT, `popularity` REAL NOT NULL, `poster_path` TEXT, `release_date` TEXT, `video` INTEGER NOT NULL, `vote_average` REAL NOT NULL, `vote_count` INTEGER NOT NULL)",
        "fields": [
          {
            "fieldPath": "fileid",
            "columnName": "fileid",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "name",
            "columnName": "name",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "mimeType",
            "columnName": "mimeType",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "modifiedTime",
            "columnName": "modifiedTime",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "size",
            "columnName": "size",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "urlString",
            "columnName": "urlString",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "Played",
            "columnName": "Played",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "title",
            "columnName": "title",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "adult",
            "columnName": "adult",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "backdrop_path",
            "columnName": "backdrop_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "original_language",
            "columnName": "original_language",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "original_title",
            "columnName": "original_title",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "overview",
            "columnName": "overview",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "popularity",
            "columnName": "popularity",
            "affinity": "REAL",
            "notNull": true
          },
          {
            "fieldPath": "poster_path",
            "columnName": "poster_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "release_date",
            "columnName": "release_date",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "video",
            "columnName": "video",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "vote_average",
            "columnName": "vote_average",
            "affinity": "REAL",
            "notNull": true
          },
          {
            "fieldPath": "vote_count",
            "columnName": "vote_count",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "fileid"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "IndexLink",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `link` TEXT, `username` TEXT, `password` TEXT, `indexType` TEXT, `folderType` TEXT)",
        "fields": [
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "link",
            "columnName": "link",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "username",
            "columnName": "username",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "password",
            "columnName": "password",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "indexType",
            "columnName": "indexType",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "folderType",
            "columnName": "folderType",
            "affinity": "TEXT",
            "notNull": false
          }
        ],
        "primaryKey": {
          "columnNames": [
            "id"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "TVShow",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`idForDB` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `adult` INTEGER NOT NULL, `backdrop_path` TEXT, `first_air_date` TEXT, `homepage` TEXT, `id` INTEGER NOT NULL, `in_production` INTEGER NOT NULL, `last_air_date` TEXT, `name` TEXT, `number_of_episodes` INTEGER NOT NULL, `number_of_seasons` INTEGER NOT NULL, `original_language` TEXT, `original_name` TEXT, `overview` TEXT, `popularity` REAL NOT NULL, `poster_path` TEXT, `seasons` TEXT, `status` TEXT, `tagline` TEXT, `type` TEXT, `vote_average` REAL NOT NULL, `vote_count` INTEGER NOT NULL)",
        "fields": [
          {
            "fieldPath": "idForDB",
            "columnName": "idForDB",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "adult",
            "columnName": "adult",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "backdrop_path",
            "columnName": "backdrop_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "first_air_date",
            "columnName": "first_air_date",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "homepage",
            "columnName": "homepage",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "in_production",
            "columnName": "in_production",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "last_air_date",
            "columnName": "last_air_date",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "name",
            "columnName": "name",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "number_of_episodes",
            "columnName": "number_of_episodes",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "number_of_seasons",
            "columnName": "number_of_seasons",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "original_language",
            "columnName": "original_language",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "original_name",
            "columnName": "original_name",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "overview",
            "columnName": "overview",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "popularity",
            "columnName": "popularity",
            "affinity": "REAL",
            "notNull": true
          },
          {
            "fieldPath": "poster_path",
            "columnName": "poster_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "seasons",
            "columnName": "seasons",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "status",
            "columnName": "status",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "tagline",
            "columnName": "tagline",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "type",
            "columnName": "type",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "vote_average",
            "columnName": "vote_average",
            "affinity": "REAL",
            "notNull": true
          },
          {
            "fieldPath": "vote_count",
            "columnName": "vote_count",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "idForDB"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "TVShowSeasonDetails",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`idfordb` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `_id` TEXT, `air_date` TEXT, `episodes` TEXT, `name` TEXT, `overview` TEXT, `id` INTEGER NOT NULL, `poster_path` TEXT, `season_number` INTEGER NOT NULL)",
        "fields": [
          {
            "fieldPath": "idfordb",
            "columnName": "idfordb",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "_id",
            "columnName": "_id",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "air_date",
            "columnName": "air_date",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "episodes",
            "columnName": "episodes",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "name",
            "columnName": "name",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "overview",
            "columnName": "overview",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "poster_path",
            "columnName": "poster_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "season_number",
            "columnName": "season_number",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "idfordb"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      }
    ],
    "views": [],
    "setupQueries": [
      "CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
      "INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, 'e52e100e7bfc5d329c82081604154530')"
    ]
  }
}

================================================
FILE: app/schemas/com.theflexproject.thunder.database.AppDatabase/20.json
================================================
{
  "formatVersion": 1,
  "database": {
    "version": 20,
    "identityHash": "8279f91be4c0d700c1f0aec994bd5375",
    "entities": [
      {
        "tableName": "ResFormat",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `data` TEXT, `nextPageToken` TEXT, `curPageIndex` TEXT, `code` INTEGER NOT NULL)",
        "fields": [
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "data",
            "columnName": "data",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "nextPageToken",
            "columnName": "nextPageToken",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "curPageIndex",
            "columnName": "curPageIndex",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "code",
            "columnName": "code",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "id"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "Movie",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`fileid` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `id` TEXT, `name` TEXT, `mimeType` TEXT, `modifiedTime` INTEGER, `size` TEXT, `urlString` TEXT, `Played` INTEGER NOT NULL, `title` TEXT, `adult` INTEGER NOT NULL, `backdrop_path` TEXT, `original_language` TEXT, `original_title` TEXT, `overview` TEXT, `popularity` REAL NOT NULL, `poster_path` TEXT, `release_date` TEXT, `video` INTEGER NOT NULL, `vote_average` REAL NOT NULL, `vote_count` INTEGER NOT NULL)",
        "fields": [
          {
            "fieldPath": "fileid",
            "columnName": "fileid",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "name",
            "columnName": "name",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "mimeType",
            "columnName": "mimeType",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "modifiedTime",
            "columnName": "modifiedTime",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "size",
            "columnName": "size",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "urlString",
            "columnName": "urlString",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "Played",
            "columnName": "Played",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "title",
            "columnName": "title",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "adult",
            "columnName": "adult",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "backdrop_path",
            "columnName": "backdrop_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "original_language",
            "columnName": "original_language",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "original_title",
            "columnName": "original_title",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "overview",
            "columnName": "overview",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "popularity",
            "columnName": "popularity",
            "affinity": "REAL",
            "notNull": true
          },
          {
            "fieldPath": "poster_path",
            "columnName": "poster_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "release_date",
            "columnName": "release_date",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "video",
            "columnName": "video",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "vote_average",
            "columnName": "vote_average",
            "affinity": "REAL",
            "notNull": true
          },
          {
            "fieldPath": "vote_count",
            "columnName": "vote_count",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "fileid"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "IndexLink",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `link` TEXT, `username` TEXT, `password` TEXT, `indexType` TEXT, `folderType` TEXT)",
        "fields": [
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "link",
            "columnName": "link",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "username",
            "columnName": "username",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "password",
            "columnName": "password",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "indexType",
            "columnName": "indexType",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "folderType",
            "columnName": "folderType",
            "affinity": "TEXT",
            "notNull": false
          }
        ],
        "primaryKey": {
          "columnNames": [
            "id"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "TVShow",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`idForDB` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `adult` INTEGER NOT NULL, `backdrop_path` TEXT, `homepage` TEXT, `first_air_date` TEXT, `id` INTEGER NOT NULL, `in_production` INTEGER NOT NULL, `last_air_date` TEXT, `name` TEXT, `number_of_episodes` INTEGER NOT NULL, `number_of_seasons` INTEGER NOT NULL, `original_name` TEXT, `overview` TEXT, `popularity` REAL NOT NULL, `original_language` TEXT, `poster_path` TEXT, `status` TEXT, `seasons` TEXT, `tagline` TEXT, `type` TEXT, `vote_average` REAL NOT NULL, `vote_count` INTEGER NOT NULL)",
        "fields": [
          {
            "fieldPath": "idForDB",
            "columnName": "idForDB",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "adult",
            "columnName": "adult",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "backdrop_path",
            "columnName": "backdrop_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "homepage",
            "columnName": "homepage",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "first_air_date",
            "columnName": "first_air_date",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "in_production",
            "columnName": "in_production",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "last_air_date",
            "columnName": "last_air_date",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "name",
            "columnName": "name",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "number_of_episodes",
            "columnName": "number_of_episodes",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "number_of_seasons",
            "columnName": "number_of_seasons",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "original_name",
            "columnName": "original_name",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "overview",
            "columnName": "overview",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "popularity",
            "columnName": "popularity",
            "affinity": "REAL",
            "notNull": true
          },
          {
            "fieldPath": "original_language",
            "columnName": "original_language",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "poster_path",
            "columnName": "poster_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "status",
            "columnName": "status",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "seasons",
            "columnName": "seasons",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "tagline",
            "columnName": "tagline",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "type",
            "columnName": "type",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "vote_average",
            "columnName": "vote_average",
            "affinity": "REAL",
            "notNull": true
          },
          {
            "fieldPath": "vote_count",
            "columnName": "vote_count",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "idForDB"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "TVShowSeasonDetails",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`idfordb` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `_id` TEXT, `air_date` TEXT, `episodes` TEXT, `name` TEXT, `overview` TEXT, `id` INTEGER NOT NULL, `poster_path` TEXT, `season_number` INTEGER NOT NULL)",
        "fields": [
          {
            "fieldPath": "idfordb",
            "columnName": "idfordb",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "_id",
            "columnName": "_id",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "air_date",
            "columnName": "air_date",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "episodes",
            "columnName": "episodes",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "name",
            "columnName": "name",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "overview",
            "columnName": "overview",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "poster_path",
            "columnName": "poster_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "season_number",
            "columnName": "season_number",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "idfordb"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "Episode",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`idForDB` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `air_date` TEXT, `episode_number` INTEGER NOT NULL, `id` INTEGER NOT NULL, `name` TEXT, `overview` TEXT, `production_code` TEXT, `runtime` INTEGER NOT NULL, `season_number` INTEGER NOT NULL, `show_id` INTEGER NOT NULL, `still_path` TEXT, `vote_average` REAL NOT NULL, `vote_count` INTEGER NOT NULL, `urlString` TEXT)",
        "fields": [
          {
            "fieldPath": "idForDB",
            "columnName": "idForDB",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "air_date",
            "columnName": "air_date",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "episode_number",
            "columnName": "episode_number",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "name",
            "columnName": "name",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "overview",
            "columnName": "overview",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "production_code",
            "columnName": "production_code",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "runtime",
            "columnName": "runtime",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "season_number",
            "columnName": "season_number",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "show_id",
            "columnName": "show_id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "still_path",
            "columnName": "still_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "vote_average",
            "columnName": "vote_average",
            "affinity": "REAL",
            "notNull": true
          },
          {
            "fieldPath": "vote_count",
            "columnName": "vote_count",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "urlString",
            "columnName": "urlString",
            "affinity": "TEXT",
            "notNull": false
          }
        ],
        "primaryKey": {
          "columnNames": [
            "idForDB"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      }
    ],
    "views": [],
    "setupQueries": [
      "CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
      "INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, '8279f91be4c0d700c1f0aec994bd5375')"
    ]
  }
}

================================================
FILE: app/schemas/com.theflexproject.thunder.database.AppDatabase/21.json
================================================
{
  "formatVersion": 1,
  "database": {
    "version": 21,
    "identityHash": "6c4feea74dfccbdfe2c6552af9c5354f",
    "entities": [
      {
        "tableName": "ResFormat",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `data` TEXT, `nextPageToken` TEXT, `curPageIndex` TEXT, `code` INTEGER NOT NULL)",
        "fields": [
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "data",
            "columnName": "data",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "nextPageToken",
            "columnName": "nextPageToken",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "curPageIndex",
            "columnName": "curPageIndex",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "code",
            "columnName": "code",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "id"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "Movie",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`fileidForDB` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `fileName` TEXT, `mimeType` TEXT, `modifiedTime` INTEGER, `size` TEXT, `urlString` TEXT, `Played` INTEGER NOT NULL, `adult` INTEGER NOT NULL, `backdrop_path` TEXT, `budget` INTEGER NOT NULL, `genres` TEXT, `homepage` TEXT, `id` INTEGER NOT NULL, `imdb_id` TEXT, `original_language` TEXT, `original_title` TEXT, `overview` TEXT, `popularity` REAL NOT NULL, `poster_path` TEXT, `release_date` TEXT, `revenue` INTEGER NOT NULL, `runtime` INTEGER NOT NULL, `status` TEXT, `tagline` TEXT, `title` TEXT, `video` INTEGER NOT NULL, `vote_average` REAL NOT NULL, `vote_count` INTEGER NOT NULL)",
        "fields": [
          {
            "fieldPath": "fileidForDB",
            "columnName": "fileidForDB",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "fileName",
            "columnName": "fileName",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "mimeType",
            "columnName": "mimeType",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "modifiedTime",
            "columnName": "modifiedTime",
            "affinity": "INTEGER",
            "notNull": false
          },
          {
            "fieldPath": "size",
            "columnName": "size",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "urlString",
            "columnName": "urlString",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "Played",
            "columnName": "Played",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "adult",
            "columnName": "adult",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "backdrop_path",
            "columnName": "backdrop_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "budget",
            "columnName": "budget",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "genres",
            "columnName": "genres",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "homepage",
            "columnName": "homepage",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "imdb_id",
            "columnName": "imdb_id",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "original_language",
            "columnName": "original_language",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "original_title",
            "columnName": "original_title",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "overview",
            "columnName": "overview",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "popularity",
            "columnName": "popularity",
            "affinity": "REAL",
            "notNull": true
          },
          {
            "fieldPath": "poster_path",
            "columnName": "poster_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "release_date",
            "columnName": "release_date",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "revenue",
            "columnName": "revenue",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "runtime",
            "columnName": "runtime",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "status",
            "columnName": "status",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "tagline",
            "columnName": "tagline",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "title",
            "columnName": "title",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "video",
            "columnName": "video",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "vote_average",
            "columnName": "vote_average",
            "affinity": "REAL",
            "notNull": true
          },
          {
            "fieldPath": "vote_count",
            "columnName": "vote_count",
            "affinity": "INTEGER",
            "notNull": true
          }
        ],
        "primaryKey": {
          "columnNames": [
            "fileidForDB"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "IndexLink",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `link` TEXT, `username` TEXT, `password` TEXT, `indexType` TEXT, `folderType` TEXT)",
        "fields": [
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "link",
            "columnName": "link",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "username",
            "columnName": "username",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "password",
            "columnName": "password",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "indexType",
            "columnName": "indexType",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "folderType",
            "columnName": "folderType",
            "affinity": "TEXT",
            "notNull": false
          }
        ],
        "primaryKey": {
          "columnNames": [
            "id"
          ],
          "autoGenerate": true
        },
        "indices": [],
        "foreignKeys": []
      },
      {
        "tableName": "TVShow",
        "createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`idForDB` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `adult` INTEGER NOT NULL, `backdrop_path` TEXT, `homepage` TEXT, `first_air_date` TEXT, `id` INTEGER NOT NULL, `in_production` INTEGER NOT NULL, `last_air_date` TEXT, `name` TEXT, `number_of_episodes` INTEGER NOT NULL, `number_of_seasons` INTEGER NOT NULL, `original_name` TEXT, `overview` TEXT, `popularity` REAL NOT NULL, `original_language` TEXT, `poster_path` TEXT, `status` TEXT, `seasons` TEXT, `tagline` TEXT, `type` TEXT, `vote_average` REAL NOT NULL, `vote_count` INTEGER NOT NULL, `genres` TEXT)",
        "fields": [
          {
            "fieldPath": "idForDB",
            "columnName": "idForDB",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "adult",
            "columnName": "adult",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "backdrop_path",
            "columnName": "backdrop_path",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "homepage",
            "columnName": "homepage",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "first_air_date",
            "columnName": "first_air_date",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "id",
            "columnName": "id",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "in_production",
            "columnName": "in_production",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "last_air_date",
            "columnName": "last_air_date",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "name",
            "columnName": "name",
            "affinity": "TEXT",
            "notNull": false
          },
          {
            "fieldPath": "number_of_episodes",
            "columnName": "number_of_episodes",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "number_of_seasons",
            "columnName": "number_of_seasons",
            "affinity": "INTEGER",
            "notNull": true
          },
          {
            "fieldPath": "original_name",
      
Download .txt
gitextract_l2jjn7m6/

├── .github/
│   └── workflows/
│       └── notify.yml
├── .gitignore
├── .idea/
│   ├── .gitignore
│   ├── .name
│   ├── compiler.xml
│   ├── deploymentTargetDropDown.xml
│   ├── gradle.xml
│   ├── misc.xml
│   └── vcs.xml
├── LICENSE.md
├── README.md
├── Screenshots/
│   └── test
├── app/
│   ├── .gitignore
│   ├── build.gradle
│   ├── libs/
│   │   ├── extension-av1-release.aar
│   │   └── extension-ffmpeg-release.aar
│   ├── proguard-rules.pro
│   ├── schemas/
│   │   ├── com.example.myapplication.AppDatabase/
│   │   │   └── 5.json
│   │   ├── com.example.myapplication.database.AppDatabase/
│   │   │   └── 10.json
│   │   └── com.theflexproject.thunder.database.AppDatabase/
│   │       ├── 10.json
│   │       ├── 11.json
│   │       ├── 12.json
│   │       ├── 13.json
│   │       ├── 14.json
│   │       ├── 15.json
│   │       ├── 16.json
│   │       ├── 17.json
│   │       ├── 18.json
│   │       ├── 19.json
│   │       ├── 20.json
│   │       ├── 21.json
│   │       ├── 22.json
│   │       ├── 23.json
│   │       ├── 24.json
│   │       ├── 25.json
│   │       ├── 26.json
│   │       ├── 27.json
│   │       ├── 28.json
│   │       ├── 29.json
│   │       ├── 30.json
│   │       ├── 5.json
│   │       ├── 6.json
│   │       ├── 7.json
│   │       ├── 8.json
│   │       └── 9.json
│   └── src/
│       ├── androidTest/
│       │   └── java/
│       │       └── com/
│       │           └── theflexproject/
│       │               └── thunder/
│       │                   └── ExampleInstrumentedTest.java
│       ├── main/
│       │   ├── AndroidManifest.xml
│       │   ├── java/
│       │   │   └── com/
│       │   │       └── theflexproject/
│       │   │           └── thunder/
│       │   │               ├── Constants.java
│       │   │               ├── MainActivity.java
│       │   │               ├── SplashScreenActivity.java
│       │   │               ├── adapter/
│       │   │               │   ├── ArchivedAdapters/
│       │   │               │   │   ├── HomeItemAdapter.java
│       │   │               │   │   ├── MovieRecyclerAdapter.java
│       │   │               │   │   ├── MovieRecyclerAdapterLibrary.java
│       │   │               │   │   └── TVShowRecyclerAdapter.java
│       │   │               │   ├── BannerRecyclerAdapter.java
│       │   │               │   ├── EpisodeAdapter.java
│       │   │               │   ├── FileItemAdapter.java
│       │   │               │   ├── FileItemDialogAdapter.java
│       │   │               │   ├── FragmentViewPagerAdapter.java
│       │   │               │   ├── IndexAdapter.java
│       │   │               │   ├── MediaAdapter.java
│       │   │               │   └── ScaleCenterItemLayoutManager.java
│       │   │               ├── database/
│       │   │               │   ├── AppDatabase.java
│       │   │               │   ├── Converters.java
│       │   │               │   ├── DatabaseClient.java
│       │   │               │   ├── EpisodeDao.java
│       │   │               │   ├── IndexLinksDao.java
│       │   │               │   ├── MovieDao.java
│       │   │               │   ├── ResFormatDao.java
│       │   │               │   ├── TVShowDao.java
│       │   │               │   └── TVShowSeasonDetailsDao.java
│       │   │               ├── fragments/
│       │   │               │   ├── AddNewIndexFragment.java
│       │   │               │   ├── BaseFragment.java
│       │   │               │   ├── ChangeTMDBFragment.java
│       │   │               │   ├── CustomFileListDialogFragment.java
│       │   │               │   ├── CustomFileSelectionDialog.java
│       │   │               │   ├── EpisodeDetailsFragment.java
│       │   │               │   ├── FilesLibraryFragment.java
│       │   │               │   ├── HomeFragment.java
│       │   │               │   ├── LibraryFragment.java
│       │   │               │   ├── ManageDatabaseFragment.java
│       │   │               │   ├── ManageIndexesFragment.java
│       │   │               │   ├── MovieDetailsFragment.java
│       │   │               │   ├── MovieLibraryFragment.java
│       │   │               │   ├── SearchFragment.java
│       │   │               │   ├── SeasonDetailsFragment.java
│       │   │               │   ├── SettingsFragment.java
│       │   │               │   ├── TvShowDetailsFragment.java
│       │   │               │   ├── TvShowsLibraryFragment.java
│       │   │               │   └── UpdateAppFragment.java
│       │   │               ├── model/
│       │   │               │   ├── Data.java
│       │   │               │   ├── ExternalIds.java
│       │   │               │   ├── FanArt/
│       │   │               │   │   ├── Clearlogo.java
│       │   │               │   │   ├── FanArtMovieResponseModel.java
│       │   │               │   │   ├── FanArtTvResponseModel.java
│       │   │               │   │   ├── Hdmovielogo.java
│       │   │               │   │   ├── Hdtvlogo.java
│       │   │               │   │   └── Movielogo.java
│       │   │               │   ├── File.java
│       │   │               │   ├── Genre.java
│       │   │               │   ├── GitHubResponse.java
│       │   │               │   ├── IndexLink.java
│       │   │               │   ├── Movie.java
│       │   │               │   ├── MoviesResponseFromTMDB.java
│       │   │               │   ├── MyMedia.java
│       │   │               │   ├── ProductionCompany.java
│       │   │               │   ├── ProductionCountry.java
│       │   │               │   ├── ResFormat.java
│       │   │               │   ├── SimpleLink.java
│       │   │               │   ├── SpokenLanguage.java
│       │   │               │   ├── TVShowInfo/
│       │   │               │   │   ├── CreatedBy.java
│       │   │               │   │   ├── Crew.java
│       │   │               │   │   ├── Episode.java
│       │   │               │   │   ├── GuestStar.java
│       │   │               │   │   ├── LastEpisodeToAir.java
│       │   │               │   │   ├── Network.java
│       │   │               │   │   ├── Result.java
│       │   │               │   │   ├── Season.java
│       │   │               │   │   ├── TVShow.java
│       │   │               │   │   ├── TVShowSeasonDetails.java
│       │   │               │   │   └── TVShowsResponseFromTMDB.java
│       │   │               │   └── tmdbImages/
│       │   │               │       ├── Backdrop.java
│       │   │               │       ├── Logo.java
│       │   │               │       ├── Poster.java
│       │   │               │       └── TMDBImagesResponse.java
│       │   │               ├── player/
│       │   │               │   ├── DemoUtil.java
│       │   │               │   └── PlayerActivity.java
│       │   │               └── utils/
│       │   │                   ├── AnimeNameExtractor.java
│       │   │                   ├── BlurBitmap.java
│       │   │                   ├── CheckForUpdates.java
│       │   │                   ├── IndexUtils.java
│       │   │                   ├── MovieQualityExtractor.java
│       │   │                   ├── MovieTitleExtractor2.java
│       │   │                   ├── Pair.java
│       │   │                   ├── PairMovies.java
│       │   │                   ├── PairTvShows.java
│       │   │                   ├── ParseUtils.java
│       │   │                   ├── PlexMovieExtractor.java
│       │   │                   ├── RefreshWorker.java
│       │   │                   ├── SceneMovieTitleExtractor.java
│       │   │                   ├── SendGetRequestTMDB.java
│       │   │                   ├── SendPostRequest.java
│       │   │                   ├── SettingsManager.java
│       │   │                   ├── ShowUtils.java
│       │   │                   ├── StorageUtils.java
│       │   │                   ├── StringUtils.java
│       │   │                   ├── UpdateUtils.java
│       │   │                   ├── downloadUtils.java
│       │   │                   ├── imageVotesComparator.java
│       │   │                   └── sizetoReadablesize.java
│       │   └── res/
│       │       ├── anim/
│       │       │   ├── fade_in.xml
│       │       │   ├── fade_out.xml
│       │       │   ├── from_left.xml
│       │       │   ├── from_right.xml
│       │       │   ├── pop_in.xml
│       │       │   ├── to_left.xml
│       │       │   └── to_right.xml
│       │       ├── color/
│       │       │   ├── about_item_bg_color.xml
│       │       │   ├── button_text_color.xml
│       │       │   ├── delete_button_color.xml
│       │       │   ├── download_button_bg_color.xml
│       │       │   ├── episode_item_bg_color.xml
│       │       │   ├── media_item_bg_color.xml
│       │       │   └── switch_bg_color.xml
│       │       ├── drawable/
│       │       │   ├── bottom_navigation_background.xml
│       │       │   ├── bottom_navigation_color_selector.xml
│       │       │   ├── bottom_navigation_item_background.xml
│       │       │   ├── discord.xml
│       │       │   ├── gradient_top_bottom_bg.xml
│       │       │   ├── ic_add.xml
│       │       │   ├── ic_add_box.xml
│       │       │   ├── ic_change.xml
│       │       │   ├── ic_delete.xml
│       │       │   ├── ic_download.xml
│       │       │   ├── ic_edit.xml
│       │       │   ├── ic_export.xml
│       │       │   ├── ic_github.xml
│       │       │   ├── ic_home.xml
│       │       │   ├── ic_import.xml
│       │       │   ├── ic_import_export.xml
│       │       │   ├── ic_info.xml
│       │       │   ├── ic_library.xml
│       │       │   ├── ic_list.xml
│       │       │   ├── ic_next.xml
│       │       │   ├── ic_play.xml
│       │       │   ├── ic_play_rounded.xml
│       │       │   ├── ic_refresh.xml
│       │       │   ├── ic_search.xml
│       │       │   ├── ic_settings.xml
│       │       │   ├── ic_update.xml
│       │       │   ├── index_link_bg.xml
│       │       │   ├── media_item_selector.xml
│       │       │   ├── oval.xml
│       │       │   ├── play_shape.xml
│       │       │   ├── rounded_controls_background.xml
│       │       │   ├── rounded_corner_labels.xml
│       │       │   ├── search_bg.xml
│       │       │   ├── splash_background.xml
│       │       │   ├── splash_bg_gradient.xml
│       │       │   ├── switch_ios_selector.xml
│       │       │   ├── switch_ios_track.xml
│       │       │   ├── tab_indicator_bg.xml
│       │       │   ├── tab_item_selector.xml
│       │       │   ├── tab_layout_bg.xml
│       │       │   ├── tabs_selector.xml
│       │       │   ├── telegram.xml
│       │       │   └── tmdb.xml
│       │       ├── layout/
│       │       │   ├── activity_main.xml
│       │       │   ├── activity_player.xml
│       │       │   ├── dialog_filename_item.xml
│       │       │   ├── dropdown_item.xml
│       │       │   ├── episode_item.xml
│       │       │   ├── file_item.xml
│       │       │   ├── fragment_add_index.xml
│       │       │   ├── fragment_change_tmdb.xml
│       │       │   ├── fragment_custom_file_list_dialog.xml
│       │       │   ├── fragment_episode_details.xml
│       │       │   ├── fragment_episode_details_new.xml
│       │       │   ├── fragment_files_library.xml
│       │       │   ├── fragment_home.xml
│       │       │   ├── fragment_library.xml
│       │       │   ├── fragment_manage_database.xml
│       │       │   ├── fragment_manage_indexes.xml
│       │       │   ├── fragment_movie_details.xml
│       │       │   ├── fragment_movie_details_new.xml
│       │       │   ├── fragment_movie_library.xml
│       │       │   ├── fragment_search.xml
│       │       │   ├── fragment_season_details.xml
│       │       │   ├── fragment_season_details_new.xml
│       │       │   ├── fragment_settings.xml
│       │       │   ├── fragment_show_details.xml
│       │       │   ├── fragment_show_details_new.xml
│       │       │   ├── fragment_tv_shows_library.xml
│       │       │   ├── fragment_update_app.xml
│       │       │   ├── home_item.xml
│       │       │   ├── index_item.xml
│       │       │   ├── item_folder_type.xml
│       │       │   ├── item_index_type.xml
│       │       │   ├── media_item.xml
│       │       │   ├── movie_item_banner.xml
│       │       │   ├── movie_item_library.xml
│       │       │   ├── movie_item_recycler.xml
│       │       │   ├── refresh_time_dialog.xml
│       │       │   └── tvshow_item.xml
│       │       ├── menu/
│       │       │   └── bottom_navigation_menu.xml
│       │       ├── mipmap-anydpi-v26/
│       │       │   └── ic_launcher.xml
│       │       ├── values/
│       │       │   ├── bg.xml
│       │       │   ├── color.xml
│       │       │   ├── strings.xml
│       │       │   ├── style.xml
│       │       │   └── themes.xml
│       │       └── xml/
│       │           ├── backup_rules.xml
│       │           └── data_extraction_rules.xml
│       └── test/
│           └── java/
│               └── com/
│                   └── theflexproject/
│                       └── thunder/
│                           └── ExampleUnitTest.java
├── build.gradle
├── gradle/
│   └── wrapper/
│       ├── gradle-wrapper.jar
│       └── gradle-wrapper.properties
├── gradle.properties
├── gradlew
├── gradlew.bat
└── settings.gradle
Download .txt
SYMBOL INDEX (1115 symbols across 99 files)

FILE: app/src/androidTest/java/com/theflexproject/thunder/ExampleInstrumentedTest.java
  class ExampleInstrumentedTest (line 18) | @RunWith(AndroidJUnit4.class)
    method useAppContext (line 20) | @Test

FILE: app/src/main/java/com/theflexproject/thunder/Constants.java
  class Constants (line 5) | public class Constants {
    method getFanartApiKey (line 15) | public static String getFanartApiKey(){

FILE: app/src/main/java/com/theflexproject/thunder/MainActivity.java
  class MainActivity (line 37) | public class MainActivity extends AppCompatActivity {
    method onCreate (line 51) | @Override
    method onBackPressed (line 94) | @Override
    method initWidgets (line 101) | private void initWidgets() {
    method setUpBottomNavigationView (line 110) | private void setUpBottomNavigationView() {
    method blurBottom (line 146) | private void blurBottom() {
    method scheduleWork (line 162) | private void scheduleWork(int hour, int minute) {

FILE: app/src/main/java/com/theflexproject/thunder/SplashScreenActivity.java
  class SplashScreenActivity (line 9) | public class SplashScreenActivity extends AppCompatActivity {
    method onCreate (line 10) | @Override

FILE: app/src/main/java/com/theflexproject/thunder/adapter/BannerRecyclerAdapter.java
  class BannerRecyclerAdapter (line 25) | public class BannerRecyclerAdapter extends RecyclerView.Adapter<BannerRe...
    method BannerRecyclerAdapter (line 30) | public BannerRecyclerAdapter(Context context, List<Movie> mediaList, B...
    method onCreateViewHolder (line 36) | @NonNull
    method onBindViewHolder (line 43) | @Override
    method getItemCount (line 55) | @Override
    class MovieViewHolder (line 60) | public class MovieViewHolder extends RecyclerView.ViewHolder implement...
      method MovieViewHolder (line 64) | public MovieViewHolder(@NonNull View itemView) {
      method onClick (line 72) | @Override
    type OnItemClickListener (line 78) | public interface OnItemClickListener {
      method onClick (line 79) | public void onClick(View view, int position);

FILE: app/src/main/java/com/theflexproject/thunder/adapter/EpisodeAdapter.java
  class EpisodeAdapter (line 42) | public class EpisodeAdapter extends RecyclerView.Adapter<EpisodeAdapter....
    method EpisodeAdapter (line 48) | public EpisodeAdapter(Context context, List<Episode> episodeList, Epis...
    method onCreateViewHolder (line 54) | @NonNull
    method onBindViewHolder (line 61) | @Override
    method getItemCount (line 110) | @Override
    class EpisodeAdapterHolder (line 117) | public class EpisodeAdapterHolder extends RecyclerView.ViewHolder impl...
      method EpisodeAdapterHolder (line 130) | public EpisodeAdapterHolder(@NonNull View itemView) {
      method onClick (line 151) | @Override
      method playEpisode (line 156) | private void playEpisode(Episode episode){
      method addToLastPlayed (line 175) | private void addToLastPlayed(int id) {
      method blurBottom (line 185) | void blurBottom(){
    type OnItemClickListener (line 200) | public interface OnItemClickListener {
      method onClick (line 201) | public void onClick(View view, int position);
    method setAnimation (line 205) | private void setAnimation(View itemView , int position){

FILE: app/src/main/java/com/theflexproject/thunder/adapter/FileItemAdapter.java
  class FileItemAdapter (line 45) | public class FileItemAdapter extends RecyclerView.Adapter<FileItemAdapte...
    method FileItemAdapter (line 51) | public FileItemAdapter(Context context, List<MyMedia> mediaList) {
    method onCreateViewHolder (line 57) | @NonNull
    method onBindViewHolder (line 64) | @Override
    method getItemCount (line 174) | @Override
    class FileItemAdapterHolder (line 180) | public class FileItemAdapterHolder extends RecyclerView.ViewHolder{
      method FileItemAdapterHolder (line 197) | public FileItemAdapterHolder(@NonNull View itemView) {
      method playMedia (line 216) | private void playMedia(String url) {
      method downloadMedia (line 230) | private void downloadMedia(String url) {
      method blurBottom (line 240) | private void blurBottom(){
      method changeTMDBFragmet (line 254) | public void changeTMDBFragmet(MyMedia myMedia) {
    type OnItemClickListener (line 264) | public interface OnItemClickListener {
      method onClick (line 265) | public void onClick(View view , int position);
    method setAnimation (line 269) | private void setAnimation (View itemView ,int position){

FILE: app/src/main/java/com/theflexproject/thunder/adapter/FileItemDialogAdapter.java
  class FileItemDialogAdapter (line 19) | public class FileItemDialogAdapter extends RecyclerView.Adapter<FileItem...
    method FileItemDialogAdapter (line 24) | public FileItemDialogAdapter(List<MyMedia> mediaList , FileItemDialogA...
    method onCreateViewHolder (line 30) | @NonNull
    method onBindViewHolder (line 37) | @Override
    method getItemCount (line 66) | @Override
    class FileItemDialogAdapterViewHolder (line 72) | public class FileItemDialogAdapterViewHolder extends RecyclerView.View...
      method FileItemDialogAdapterViewHolder (line 77) | public FileItemDialogAdapterViewHolder(@NonNull View itemView) {
      method onClick (line 89) | @Override
    type OnItemClickListener (line 94) | public interface OnItemClickListener {
      method onClick (line 95) | void onClick(View view , int position);

FILE: app/src/main/java/com/theflexproject/thunder/adapter/FragmentViewPagerAdapter.java
  class FragmentViewPagerAdapter (line 11) | public class FragmentViewPagerAdapter extends FragmentStateAdapter {
    method FragmentViewPagerAdapter (line 14) | public FragmentViewPagerAdapter(@NonNull Fragment fragment) {
    method createFragment (line 18) | @NonNull
    method getItemCount (line 32) | @Override

FILE: app/src/main/java/com/theflexproject/thunder/adapter/IndexAdapter.java
  class IndexAdapter (line 25) | public class IndexAdapter extends RecyclerView.Adapter<IndexAdapter.Inde...
    method IndexAdapter (line 30) | public IndexAdapter(Context mCtx , List<IndexLink> indexLinkList) {
    method onCreateViewHolder (line 35) | @Override
    method onBindViewHolder (line 41) | @Override
    method getItemCount (line 134) | @Override
    class IndexViewHolder (line 143) | protected class IndexViewHolder extends RecyclerView.ViewHolder implem...
      method IndexViewHolder (line 152) | public IndexViewHolder(View itemView) {
      method onClick (line 165) | @Override

FILE: app/src/main/java/com/theflexproject/thunder/adapter/MediaAdapter.java
  class MediaAdapter (line 30) | public class MediaAdapter extends RecyclerView.Adapter<MediaAdapter.Medi...
    method MediaAdapter (line 36) | public MediaAdapter(Context context, List<MyMedia> mediaList, MediaAda...
    method onCreateViewHolder (line 42) | @NonNull
    method onBindViewHolder (line 49) | @Override
    method getItemCount (line 114) | @Override
    class MediaAdapterHolder (line 121) | public class MediaAdapterHolder extends RecyclerView.ViewHolder implem...
      method MediaAdapterHolder (line 127) | public MediaAdapterHolder(@NonNull View itemView) {
      method onClick (line 136) | @Override
    type OnItemClickListener (line 143) | public interface OnItemClickListener {
      method onClick (line 144) | public void onClick(View view, int position);
    method setAnimation (line 147) | private void setAnimation(View itemView , int position){

FILE: app/src/main/java/com/theflexproject/thunder/adapter/ScaleCenterItemLayoutManager.java
  class ScaleCenterItemLayoutManager (line 51) | public class ScaleCenterItemLayoutManager extends LinearLayoutManager {
    method ScaleCenterItemLayoutManager (line 56) | public ScaleCenterItemLayoutManager(Context context) {
    method ScaleCenterItemLayoutManager (line 60) | public ScaleCenterItemLayoutManager(Context context, int orientation, ...
    method scrollHorizontallyBy (line 64) | @Override

FILE: app/src/main/java/com/theflexproject/thunder/database/AppDatabase.java
  class AppDatabase (line 15) | @Database(entities = {ResFormat.class, Movie.class, IndexLink.class, TVS...
    method resFormatDao (line 22) | public abstract ResFormatDao resFormatDao();
    method movieDao (line 23) | public abstract MovieDao movieDao();
    method tvShowDao (line 24) | public abstract TVShowDao tvShowDao();
    method episodeDao (line 25) | public abstract EpisodeDao episodeDao();
    method tvShowSeasonDetailsDao (line 26) | public abstract TVShowSeasonDetailsDao tvShowSeasonDetailsDao();
    method indexLinksDao (line 27) | public abstract IndexLinksDao indexLinksDao();

FILE: app/src/main/java/com/theflexproject/thunder/database/Converters.java
  class Converters (line 19) | public class Converters {
    method fromTimestamp (line 21) | @TypeConverter
    method dateToTimestamp (line 26) | @TypeConverter
    method fromData (line 32) | @TypeConverter
    method fromStringToData (line 37) | @TypeConverter
    method fromEpisodes (line 56) | @TypeConverter
    method fromStringToEpisodes (line 71) | @TypeConverter
    method fromSeasons (line 108) | @TypeConverter
    method fromStringToSeasons (line 125) | @TypeConverter
    method fromGenreList (line 148) | @TypeConverter
    method fromStringToGenres (line 165) | @TypeConverter

FILE: app/src/main/java/com/theflexproject/thunder/database/DatabaseClient.java
  class DatabaseClient (line 7) | public class DatabaseClient {
    method DatabaseClient (line 15) | private DatabaseClient(Context mCtx) {
    method getInstance (line 23) | public static synchronized DatabaseClient getInstance(Context mCtx) {
    method getAppDatabase (line 30) | public AppDatabase getAppDatabase() {

FILE: app/src/main/java/com/theflexproject/thunder/database/EpisodeDao.java
  type EpisodeDao (line 12) | @Dao
    method getAll (line 14) | @Query("SELECT * FROM Episode ")
    method find (line 17) | @Query("SELECT * FROM Episode WHERE id LIKE :id and disabled =0")
    method findByFileName (line 20) | @Query("SELECT * FROM Episode WHERE fileName LIKE :fileName and disabl...
    method getNextEpisodeInSeason (line 23) | @Query("SELECT * FROM Episode WHERE season_id=:season_id AND played=0 ...
    method getNextEpisodeInTVShow (line 26) | @Query("SELECT * FROM Episode WHERE show_id=:show_id AND played=0 and ...
    method byEpisodeId (line 29) | @Query("SELECT * FROM Episode WHERE id=:id and disabled =0")
    method byEpisodeIdLargest (line 32) | @Query("SELECT * FROM Episode WHERE id=:id and disabled =0 ORDER BY ca...
    method updatePlayed (line 35) | @Query("UPDATE Episode SET played = 1 WHERE id = :episodeId and disabl...
    method getFromThisSeason (line 38) | @Query("SELECT * FROM Episode WHERE show_id=:show_id AND season_id=:se...
    method getFromSeasonOnly (line 42) | @Query("SELECT * FROM Episode WHERE season_id=:season_id and disabled ...
    method getFromThisShow (line 46) | @Query("SELECT * FROM Episode WHERE show_id=:show_id and disabled =0")
    method insert (line 48) | @Insert
    method delete (line 51) | @Delete
    method deleteAllFromThisIndex (line 54) | @Query("Delete from Episode where  index_id = :index_id")
    method findByLink (line 58) | @Query("select * from Episode where  index_id = :index_id and disabled...
    method deleteByLink (line 61) | @Query("Delete from Episode where urlString=:link ")
    method getNoOfShows (line 64) | @Query("select count( distinct show_id ) from Episode  where index_id ...
    method disableFromThisIndex (line 67) | @Query("UPDATE Episode set disabled=1 WHERE  index_id = :index_id")
    method enableFromThisIndex (line 70) | @Query("UPDATE Episode set disabled=0 WHERE index_id = :index_id")
    method getFirstAvailableEpisode (line 73) | @Query("SELECT * FROM Episode WHERE show_id=:show_id and disabled =0 o...
    method findByGdId (line 77) | @Query("SELECT * FROM Episode WHERE gd_id =:id")
    method deleteByGdId (line 80) | @Query("DELETE FROM Episode WHERE gd_id =:id")

FILE: app/src/main/java/com/theflexproject/thunder/database/IndexLinksDao.java
  type IndexLinksDao (line 12) | @Dao
    method getAll (line 15) | @Query("SELECT * FROM IndexLink")
    method getAllEnabled (line 18) | @Query("SELECT * FROM IndexLink where disabled=0")
    method find (line 21) | @Query("SELECT * FROM IndexLink WHERE link=:link")
    method insert (line 24) | @Insert
    method delete (line 27) | @Delete
    method deleteById (line 30) | @Query("DELETE FROM IndexLink WHERE id=:id")
    method disableIndex (line 33) | @Query("Update indexlink set disabled=1 WHERE id=:index_id  ")
    method enableIndex (line 36) | @Query("Update indexlink set disabled=0 WHERE id=:index_id  ")

FILE: app/src/main/java/com/theflexproject/thunder/database/MovieDao.java
  type MovieDao (line 12) | @Dao
    method getAll (line 14) | @Query("SELECT * FROM Movie WHERE title is not null and disabled=0 GRO...
    method byId (line 17) | @Query("SELECT * FROM Movie WHERE id=:id and disabled=0")
    method getAllById (line 20) | @Query("SELECT * FROM Movie WHERE id=:id and disabled=0")
    method byIdLargest (line 23) | @Query("SELECT * FROM Movie WHERE id=:id and disabled=0 ORDER BY size ...
    method getSearchQuery (line 26) | @Query("SELECT * FROM Movie WHERE (fileName LIKE '%' || :string || '%'...
    method getByFileName (line 29) | @Query("SELECT * FROM Movie WHERE fileName LIKE :fileName and disabled...
    method getTopRated (line 32) | @Query("SELECT * FROM Movie WHERE poster_path IS NOT NULL and disabled...
    method getrecentlyadded (line 35) | @Query("SELECT * from Movie  WHERE backdrop_path IS NOT NULL and disab...
    method getrecentreleases (line 38) | @Query("SELECT * FROM Movie WHERE poster_path IS NOT NULL and disabled...
    method insert (line 41) | @Insert
    method delete (line 44) | @Delete
    method deleteAllFromthisIndex (line 47) | @Query("Delete from Movie where index_id = :index_id")
    method getPlayed (line 50) | @Query("SELECT * FROM Movie WHERE Played = 1 and title is not null gro...
    method updatePlayed (line 53) | @Query("Update Movie set played = 1 where id =:id and disabled=0")
    method getFilesWithNoTitle (line 56) | @Query("SELECT * FROM Movie WHERE title is NULL and disabled=0")
    method getAllByFileName (line 59) | @Query("SELECT * FROM Movie WHERE fileName LIKE :fileName and disabled...
    method getNoOfMovies (line 63) | @Query("SELECT COUNT (fileName) FROM Movie WHERE index_id =:index_id A...
    method disableFromThisIndex (line 66) | @Query("UPDATE Movie set disabled=1 WHERE index_id=:index_id ")
    method enableFromThisIndex (line 69) | @Query("Update movie set disabled = 0 where index_id=:index_id")
    method getByGdId (line 72) | @Query("SELECT * FROM Movie WHERE gd_id =:gd_id")
    method deleteByGdId (line 75) | @Query("DELETE FROM Movie WHERE gd_id =:id")
    method updateAddToList (line 78) | @Query("UPDATE Movie SET addToList=1 WHERE id=:movieId")
    method getWatchlisted (line 81) | @Query("SELECT * FROM Movie WHERE addToList=1 and disabled=0")
    method updateRemoveFromList (line 84) | @Query("UPDATE Movie SET addToList=0 WHERE id=:movieId")

FILE: app/src/main/java/com/theflexproject/thunder/database/ResFormatDao.java
  type ResFormatDao (line 12) | @Dao
    method getAll (line 14) | @Query("SELECT * FROM ResFormat")
    method insert (line 17) | @Insert
    method delete (line 20) | @Delete

FILE: app/src/main/java/com/theflexproject/thunder/database/TVShowDao.java
  type TVShowDao (line 12) | @Dao
    method getAll (line 14) | @Query("SELECT  * FROM TVShow")
    method getAllByTitles (line 17) | @Query("SELECT Distinct * FROM TVShow")
    method getSearchQuery (line 20) | @Query("SELECT * FROM TVShow WHERE TVShow.name LIKE '%' || :string || ...
    method find (line 23) | @Query("SELECT * FROM TVShow WHERE id LIKE :id")
    method getByShowName (line 26) | @Query("SELECT * FROM TVShow WHERE name LIKE :name")
    method getNewShows (line 29) | @Query("SELECT * FROM TVShow order by last_air_date desc limit 10")
    method getTopRated (line 32) | @Query("SELECT * FROM TVShow order by vote_average desc limit 10")
    method deleteById (line 35) | @Query("Delete FROM TVShow WHERE id = :show_id")
    method insert (line 38) | @Insert
    method delete (line 41) | @Delete
    method findByName (line 45) | @Query("select * from TVShow where name like :finalShowName ")
    method updateAddToList (line 48) | @Query("UPDATE TVShow SET addToList=1 WHERE id=:tvId")
    method getWatchlisted (line 51) | @Query("select * from TVShow where addToList=1 ")
    method updateRemoveFromList (line 54) | @Query("UPDATE TVShow SET addToList=0 WHERE id=:tvShowId")

FILE: app/src/main/java/com/theflexproject/thunder/database/TVShowSeasonDetailsDao.java
  type TVShowSeasonDetailsDao (line 12) | @Dao
    method getAll (line 14) | @Query("SELECT * FROM TVShowSeasonDetails")
    method insert (line 17) | @Insert
    method delete (line 20) | @Delete
    method find (line 23) | @Query("SELECT * FROM TVShowSeasonDetails WHERE id like :id")
    method deleteById (line 26) | @Query("Delete FROM TVShowSeasonDetails WHERE id=:season_id")
    method deleteByShowId (line 29) | @Query("Delete FROM TVShowSeasonDetails WHERE show_id=:show_id")
    method findByShowId (line 32) | @Query("SELECT * FROM TVShowSeasonDetails WHERE show_id=:show_id order...
    method findByShowIdAndSeasonNumber (line 35) | @Query("SELECT * FROM TVShowSeasonDetails WHERE show_id=:tvShowId and ...

FILE: app/src/main/java/com/theflexproject/thunder/fragments/AddNewIndexFragment.java
  class AddNewIndexFragment (line 27) | public class AddNewIndexFragment extends BaseFragment {
    method onCreateView (line 53) | @Nullable
    method onViewCreated (line 61) | public void onViewCreated(@NonNull View view, @Nullable Bundle savedIn...

FILE: app/src/main/java/com/theflexproject/thunder/fragments/BaseFragment.java
  class BaseFragment (line 9) | public abstract class BaseFragment extends Fragment {
    method onAttach (line 13) | @Override

FILE: app/src/main/java/com/theflexproject/thunder/fragments/ChangeTMDBFragment.java
  class ChangeTMDBFragment (line 26) | public class ChangeTMDBFragment extends BaseFragment {
    method ChangeTMDBFragment (line 34) | public ChangeTMDBFragment() {
    method ChangeTMDBFragment (line 38) | public ChangeTMDBFragment(MyMedia myMedia) {
    method onCreateView (line 42) | @Override
    method onViewCreated (line 49) | @Override

FILE: app/src/main/java/com/theflexproject/thunder/fragments/CustomFileListDialogFragment.java
  class CustomFileListDialogFragment (line 29) | public class CustomFileListDialogFragment extends DialogFragment  {
    method CustomFileListDialogFragment (line 37) | public CustomFileListDialogFragment(Context context,View source, List<...
    method onCreate (line 42) | @Override
    method onCreateView (line 61) | @Override
    method onViewCreated (line 69) | @Override
    method onAttach (line 109) | @Override public void onAttach(@NonNull Context context)
    type OnInputListener (line 154) | public interface OnInputListener {
      method sendInput (line 155) | void sendInput(int selection);

FILE: app/src/main/java/com/theflexproject/thunder/fragments/EpisodeDetailsFragment.java
  class EpisodeDetailsFragment (line 51) | public class EpisodeDetailsFragment extends BaseFragment {
    method EpisodeDetailsFragment (line 86) | public EpisodeDetailsFragment() {
    method EpisodeDetailsFragment (line 90) | public EpisodeDetailsFragment(TVShow tvShow , TVShowSeasonDetails tvSh...
    method onCreate (line 96) | @Override
    method onCreateView (line 102) | @Override
    method onViewCreated (line 108) | @Override
    method initWidgets (line 117) | private void initWidgets(View view) {
    method loadDetails (line 143) | private void loadDetails() {
    method loadEpisodeFilesRecycler (line 247) | private void loadEpisodeFilesRecycler() {
    method setOnClickListner (line 278) | private void setOnClickListner() {
    method addToLastPlayed (line 316) | private void addToLastPlayed() {

FILE: app/src/main/java/com/theflexproject/thunder/fragments/FilesLibraryFragment.java
  class FilesLibraryFragment (line 24) | public class FilesLibraryFragment extends BaseFragment {
    method FilesLibraryFragment (line 31) | public FilesLibraryFragment() {
    method onCreateView (line 35) | @Override
    method onViewCreated (line 42) | @Override
    method showFileLibrary (line 48) | private void showFileLibrary() {
    method showRecyclerFiles (line 68) | private void showRecyclerFiles(List<Movie> movieList) {

FILE: app/src/main/java/com/theflexproject/thunder/fragments/HomeFragment.java
  class HomeFragment (line 27) | public class HomeFragment extends BaseFragment {
    method HomeFragment (line 80) | public HomeFragment() {
    method onCreateView (line 83) | @Override
    method onViewCreated (line 89) | @Override
    method loadWatchlist (line 109) | private void loadWatchlist() {
    method loadRecentlyAddedMovies (line 149) | private void  loadRecentlyAddedMovies() {
    method loadRecentlyReleasedMovies (line 177) | private void loadRecentlyReleasedMovies () {
    method loadTopRatedMovies (line 206) | private void loadTopRatedMovies() {
    method loadLastPlayedMovies (line 234) | private void loadLastPlayedMovies() {
    method loadNewSeason (line 265) | private void loadNewSeason(){
    method loadTopRatedShows (line 295) | private void loadTopRatedShows(){
    method setOnClickListner (line 325) | private void setOnClickListner() {

FILE: app/src/main/java/com/theflexproject/thunder/fragments/LibraryFragment.java
  class LibraryFragment (line 19) | public class LibraryFragment extends BaseFragment {
    method LibraryFragment (line 35) | public LibraryFragment() {
    method onCreate (line 39) | @Override
    method onCreateView (line 44) | @Override
    method onViewCreated (line 50) | @Override
    method initWidgets (line 87) | private void initWidgets() {

FILE: app/src/main/java/com/theflexproject/thunder/fragments/ManageDatabaseFragment.java
  class ManageDatabaseFragment (line 27) | public class ManageDatabaseFragment extends BaseFragment {
    method ManageDatabaseFragment (line 32) | public ManageDatabaseFragment() {
    method onCreateView (line 36) | @Override
    method onViewCreated (line 43) | @Override
    method setMyOnClickListeners (line 54) | private void setMyOnClickListeners() {
    method initWidgets (line 140) | private void initWidgets() {

FILE: app/src/main/java/com/theflexproject/thunder/fragments/ManageIndexesFragment.java
  class ManageIndexesFragment (line 22) | public class ManageIndexesFragment extends BaseFragment{
    method ManageIndexesFragment (line 26) | public ManageIndexesFragment() {
    method onCreate (line 30) | @Override
    method onCreateView (line 35) | @Override
    method onViewCreated (line 42) | @Override

FILE: app/src/main/java/com/theflexproject/thunder/fragments/MovieDetailsFragment.java
  class MovieDetailsFragment (line 55) | public class MovieDetailsFragment extends BaseFragment{
    method MovieDetailsFragment (line 103) | public MovieDetailsFragment() {
    method MovieDetailsFragment (line 106) | public MovieDetailsFragment(int id){
    method MovieDetailsFragment (line 110) | public MovieDetailsFragment(String fileName) {
    method onCreateView (line 114) | @Override
    method onViewCreated (line 121) | @Override
    method initWidgets (line 141) | private void initWidgets(View view) {
    method loadDetails (line 179) | private void loadDetails(){
    method blurBottom (line 363) | void blurBottom(){
    method setMyOnClickLiseners (line 379) | private void setMyOnClickLiseners(){
    method addToLastPlayed (line 553) | private void addToLastPlayed() {
    method loadMovieFilesRecycler (line 563) | private void loadMovieFilesRecycler() {

FILE: app/src/main/java/com/theflexproject/thunder/fragments/MovieLibraryFragment.java
  class MovieLibraryFragment (line 24) | public class MovieLibraryFragment extends BaseFragment {
    method MovieLibraryFragment (line 31) | public MovieLibraryFragment() {
    method onCreateView (line 36) | @Override
    method onViewCreated (line 43) | @Override
    method showLibraryMovies (line 49) | void showLibraryMovies() {
    method showRecyclerMovies (line 68) | private void showRecyclerMovies(List<Movie> newmediaList) {
    method setOnClickListner (line 94) | private void setOnClickListner() {

FILE: app/src/main/java/com/theflexproject/thunder/fragments/SearchFragment.java
  class SearchFragment (line 34) | public class SearchFragment extends BaseFragment {
    method SearchFragment (line 49) | public SearchFragment() {
    method onCreate (line 52) | @Override
    method onCreateView (line 57) | @Override
    method onViewCreated (line 64) | @Override
    method showSearchResults (line 85) | void showSearchResults(){
    method showbyGenre (line 158) | void showbyGenre(){
    method setOnClickListner (line 184) | private void setOnClickListner() {

FILE: app/src/main/java/com/theflexproject/thunder/fragments/SeasonDetailsFragment.java
  class SeasonDetailsFragment (line 43) | public class SeasonDetailsFragment extends BaseFragment {
    method SeasonDetailsFragment (line 75) | public SeasonDetailsFragment() {
    method SeasonDetailsFragment (line 79) | public SeasonDetailsFragment(TVShow tvShow , TVShowSeasonDetails tvSho...
    method onCreate (line 84) | @Override
    method onCreateView (line 91) | @Override
    method onViewCreated (line 98) | @Override
    method initWidgets (line 107) | private void initWidgets(View view) {
    method loadDetails (line 129) | private void loadDetails() {
    method loadEpisodesRecycler (line 262) | private void loadEpisodesRecycler() {
    method setOnClickListner (line 291) | private void setOnClickListner() {

FILE: app/src/main/java/com/theflexproject/thunder/fragments/SettingsFragment.java
  class SettingsFragment (line 31) | public class SettingsFragment extends BaseFragment {
    method SettingsFragment (line 50) | public SettingsFragment() {}
    method onCreate (line 52) | @Override
    method onCreateView (line 57) | @Override
    method onViewCreated (line 63) | @Override
    method initWidgets (line 71) | private void initWidgets() {
    method setMyOnClickListeners (line 92) | private void setMyOnClickListeners() {
    method setStatesOfToggleSwitches (line 166) | private void setStatesOfToggleSwitches() {
    method showTimeDialog (line 188) | public void showTimeDialog()

FILE: app/src/main/java/com/theflexproject/thunder/fragments/TvShowDetailsFragment.java
  class TvShowDetailsFragment (line 46) | public class TvShowDetailsFragment extends BaseFragment {
    method TvShowDetailsFragment (line 95) | public TvShowDetailsFragment() {
    method TvShowDetailsFragment (line 98) | public TvShowDetailsFragment(int tvShowId) {
    method onCreateView (line 102) | @Override
    method onViewCreated (line 109) | @Override
    method initWidgets (line 117) | private void initWidgets(View view) {
    method loadDetails (line 151) | private void loadDetails(){
    method loadSeasonRecycler (line 295) | private void loadSeasonRecycler() {
    method setOnClickListner (line 350) | private void setOnClickListner(){

FILE: app/src/main/java/com/theflexproject/thunder/fragments/TvShowsLibraryFragment.java
  class TvShowsLibraryFragment (line 24) | public class TvShowsLibraryFragment extends BaseFragment {
    method TvShowsLibraryFragment (line 30) | public TvShowsLibraryFragment() {
    method onCreateView (line 35) | @Override
    method onViewCreated (line 42) | @Override
    method showLibraryTVShows (line 47) | void showLibraryTVShows() {
    method showRecyclerTVShows (line 78) | private void showRecyclerTVShows(List<TVShow> tvShowList) {
    method setOnClickListner (line 103) | private void setOnClickListner() {

FILE: app/src/main/java/com/theflexproject/thunder/fragments/UpdateAppFragment.java
  class UpdateAppFragment (line 18) | public class UpdateAppFragment extends BaseFragment {
    method UpdateAppFragment (line 27) | public UpdateAppFragment(GitHubResponse[] gitHubResponse) {
    method onCreate (line 33) | @Override
    method onCreateView (line 38) | @Override
    method onViewCreated (line 45) | @Override

FILE: app/src/main/java/com/theflexproject/thunder/model/Data.java
  class Data (line 5) | public class Data {
    method toString (line 8) | @Override
    method getFiles (line 15) | public ArrayList<File> getFiles() {
    method setFiles (line 19) | public void setFiles(ArrayList<File> files) {

FILE: app/src/main/java/com/theflexproject/thunder/model/ExternalIds.java
  class ExternalIds (line 3) | public class ExternalIds{
    method getId (line 14) | public int getId() {
    method setId (line 18) | public void setId(int id) {
    method getImdb_id (line 22) | public String getImdb_id() {
    method setImdb_id (line 26) | public void setImdb_id(String imdb_id) {
    method getFreebase_mid (line 30) | public Object getFreebase_mid() {
    method setFreebase_mid (line 34) | public void setFreebase_mid(Object freebase_mid) {
    method getFreebase_id (line 38) | public Object getFreebase_id() {
    method setFreebase_id (line 42) | public void setFreebase_id(Object freebase_id) {
    method getTvdb_id (line 46) | public int getTvdb_id() {
    method setTvdb_id (line 50) | public void setTvdb_id(int tvdb_id) {
    method getTvrage_id (line 54) | public Object getTvrage_id() {
    method setTvrage_id (line 58) | public void setTvrage_id(Object tvrage_id) {
    method getFacebook_id (line 62) | public Object getFacebook_id() {
    method setFacebook_id (line 66) | public void setFacebook_id(Object facebook_id) {
    method getInstagram_id (line 70) | public String getInstagram_id() {
    method setInstagram_id (line 74) | public void setInstagram_id(String instagram_id) {
    method getTwitter_id (line 78) | public String getTwitter_id() {
    method setTwitter_id (line 82) | public void setTwitter_id(String twitter_id) {
    method toString (line 86) | @Override

FILE: app/src/main/java/com/theflexproject/thunder/model/FanArt/Clearlogo.java
  class Clearlogo (line 3) | public class Clearlogo {
    method toString (line 9) | @Override
    method getId (line 19) | public String getId() {
    method setId (line 23) | public void setId(String id) {
    method getUrl (line 27) | public String getUrl() {
    method setUrl (line 31) | public void setUrl(String url) {
    method getLang (line 35) | public String getLang() {
    method setLang (line 39) | public void setLang(String lang) {
    method getLikes (line 43) | public String getLikes() {
    method setLikes (line 47) | public void setLikes(String likes) {

FILE: app/src/main/java/com/theflexproject/thunder/model/FanArt/FanArtMovieResponseModel.java
  class FanArtMovieResponseModel (line 7) | public class FanArtMovieResponseModel{
    method getName (line 15) | public String getName() {
    method setName (line 19) | public void setName(String name) {
    method getTmdb_id (line 23) | public String getTmdb_id() {
    method setTmdb_id (line 27) | public void setTmdb_id(String tmdb_id) {
    method getImdb_id (line 31) | public String getImdb_id() {
    method setImdb_id (line 35) | public void setImdb_id(String imdb_id) {
    method getHdmovielogo (line 39) | public ArrayList<Hdmovielogo> getHdmovielogo() {
    method setHdmovielogo (line 43) | public void setHdmovielogo(ArrayList<Hdmovielogo> hdmovielogo) {
    method getMoviebackground (line 47) | public ArrayList<Moviebackground> getMoviebackground() {
    method setMoviebackground (line 51) | public void setMoviebackground(ArrayList<Moviebackground> moviebackgro...
    method getMovieposter (line 55) | public ArrayList<Movieposter> getMovieposter() {
    method setMovieposter (line 59) | public void setMovieposter(ArrayList<Movieposter> movieposter) {
    method getHdmovieclearart (line 63) | public ArrayList<Hdmovieclearart> getHdmovieclearart() {
    method setHdmovieclearart (line 67) | public void setHdmovieclearart(ArrayList<Hdmovieclearart> hdmovieclear...
    method getMovielogo (line 71) | public ArrayList<Movielogo> getMovielogo() {
    method setMovielogo (line 75) | public void setMovielogo(ArrayList<Movielogo> movielogo) {
    method getMoviethumb (line 79) | public ArrayList<Moviethumb> getMoviethumb() {
    method setMoviethumb (line 83) | public void setMoviethumb(ArrayList<Moviethumb> moviethumb) {
    method getMoviedisc (line 87) | public ArrayList<Moviedisc> getMoviedisc() {
    method setMoviedisc (line 91) | public void setMoviedisc(ArrayList<Moviedisc> moviedisc) {
    method getMoviebanner (line 95) | public ArrayList<Moviebanner> getMoviebanner() {
    method setMoviebanner (line 99) | public void setMoviebanner(ArrayList<Moviebanner> moviebanner) {
    method getMovieart (line 103) | public ArrayList<Movieart> getMovieart() {
    method setMovieart (line 107) | public void setMovieart(ArrayList<Movieart> movieart) {
    method toString (line 118) | @Override
  class Hdmovieclearart (line 137) | class Hdmovieclearart{
    method getId (line 143) | public String getId() {
    method setId (line 147) | public void setId(String id) {
    method getUrl (line 151) | public String getUrl() {
    method setUrl (line 155) | public void setUrl(String url) {
    method getLang (line 159) | public String getLang() {
    method setLang (line 163) | public void setLang(String lang) {
    method getLikes (line 167) | public String getLikes() {
    method setLikes (line 171) | public void setLikes(String likes) {
    method toString (line 175) | @Override
  class Movieart (line 186) | class Movieart{
    method getId (line 192) | public String getId() {
    method setId (line 196) | public void setId(String id) {
    method getUrl (line 200) | public String getUrl() {
    method setUrl (line 204) | public void setUrl(String url) {
    method getLang (line 208) | public String getLang() {
    method setLang (line 212) | public void setLang(String lang) {
    method getLikes (line 216) | public String getLikes() {
    method setLikes (line 220) | public void setLikes(String likes) {
    method toString (line 224) | @Override
  class Moviebackground (line 235) | class Moviebackground{
    method getId (line 241) | public String getId() {
    method setId (line 245) | public void setId(String id) {
    method getUrl (line 249) | public String getUrl() {
    method setUrl (line 253) | public void setUrl(String url) {
    method getLang (line 257) | public String getLang() {
    method setLang (line 261) | public void setLang(String lang) {
    method getLikes (line 265) | public String getLikes() {
    method setLikes (line 269) | public void setLikes(String likes) {
    method toString (line 273) | @Override
  class Moviebanner (line 284) | class Moviebanner{
    method getId (line 290) | public String getId() {
    method setId (line 294) | public void setId(String id) {
    method getUrl (line 298) | public String getUrl() {
    method setUrl (line 302) | public void setUrl(String url) {
    method getLang (line 306) | public String getLang() {
    method setLang (line 310) | public void setLang(String lang) {
    method getLikes (line 314) | public String getLikes() {
    method setLikes (line 318) | public void setLikes(String likes) {
    method toString (line 322) | @Override
  class Moviedisc (line 333) | class Moviedisc{
  class Movieposter (line 342) | class Movieposter{
    method getId (line 348) | public String getId() {
    method setId (line 352) | public void setId(String id) {
    method getUrl (line 356) | public String getUrl() {
    method setUrl (line 360) | public void setUrl(String url) {
    method getLang (line 364) | public String getLang() {
    method setLang (line 368) | public void setLang(String lang) {
    method getLikes (line 372) | public String getLikes() {
    method setLikes (line 376) | public void setLikes(String likes) {
    method toString (line 380) | @Override
  class Moviethumb (line 391) | class Moviethumb{
    method setId (line 397) | public void setId(String id) {
    method setUrl (line 401) | public void setUrl(String url) {
    method setLang (line 405) | public void setLang(String lang) {
    method setLikes (line 409) | public void setLikes(String likes) {
    method toString (line 413) | @Override

FILE: app/src/main/java/com/theflexproject/thunder/model/FanArt/FanArtTvResponseModel.java
  class Characterart (line 5) | class Characterart{
  class Clearart (line 12) | class Clearart{
  class Hdclearart (line 19) | class Hdclearart{
  class FanArtTvResponseModel (line 26) | public class FanArtTvResponseModel{
    method toString (line 42) | @Override
    method getName (line 62) | public String getName() {
    method setName (line 66) | public void setName(String name) {
    method getThetvdb_id (line 70) | public String getThetvdb_id() {
    method setThetvdb_id (line 74) | public void setThetvdb_id(String thetvdb_id) {
    method getClearlogo (line 78) | public ArrayList<Clearlogo> getClearlogo() {
    method setClearlogo (line 82) | public void setClearlogo(ArrayList<Clearlogo> clearlogo) {
    method getHdtvlogo (line 86) | public ArrayList<Hdtvlogo> getHdtvlogo() {
    method setHdtvlogo (line 90) | public void setHdtvlogo(ArrayList<Hdtvlogo> hdtvlogo) {
    method getClearart (line 94) | public ArrayList<Clearart> getClearart() {
    method setClearart (line 98) | public void setClearart(ArrayList<Clearart> clearart) {
    method getShowbackground (line 102) | public ArrayList<Showbackground> getShowbackground() {
    method setShowbackground (line 106) | public void setShowbackground(ArrayList<Showbackground> showbackground) {
    method getTvthumb (line 110) | public ArrayList<Tvthumb> getTvthumb() {
    method setTvthumb (line 114) | public void setTvthumb(ArrayList<Tvthumb> tvthumb) {
    method getSeasonposter (line 118) | public ArrayList<Seasonposter> getSeasonposter() {
    method setSeasonposter (line 122) | public void setSeasonposter(ArrayList<Seasonposter> seasonposter) {
    method getSeasonthumb (line 126) | public ArrayList<Seasonthumb> getSeasonthumb() {
    method setSeasonthumb (line 130) | public void setSeasonthumb(ArrayList<Seasonthumb> seasonthumb) {
    method getHdclearart (line 134) | public ArrayList<Hdclearart> getHdclearart() {
    method setHdclearart (line 138) | public void setHdclearart(ArrayList<Hdclearart> hdclearart) {
    method getTvbanner (line 142) | public ArrayList<Tvbanner> getTvbanner() {
    method setTvbanner (line 146) | public void setTvbanner(ArrayList<Tvbanner> tvbanner) {
    method getCharacterart (line 150) | public ArrayList<Characterart> getCharacterart() {
    method setCharacterart (line 154) | public void setCharacterart(ArrayList<Characterart> characterart) {
    method getTvposter (line 158) | public ArrayList<Tvposter> getTvposter() {
    method setTvposter (line 162) | public void setTvposter(ArrayList<Tvposter> tvposter) {
    method getSeasonbanner (line 166) | public ArrayList<Seasonbanner> getSeasonbanner() {
    method setSeasonbanner (line 170) | public void setSeasonbanner(ArrayList<Seasonbanner> seasonbanner) {
  class Seasonbanner (line 175) | class Seasonbanner{
  class Seasonposter (line 183) | class Seasonposter{
  class Seasonthumb (line 190) | class Seasonthumb{
  class Showbackground (line 198) | class Showbackground{
  class Tvbanner (line 206) | class Tvbanner{
  class Tvposter (line 213) | class Tvposter{
  class Tvthumb (line 220) | class Tvthumb{
    method getId (line 226) | public String getId() {
    method setId (line 230) | public void setId(String id) {
    method getUrl (line 234) | public String getUrl() {
    method setUrl (line 238) | public void setUrl(String url) {
    method getLang (line 242) | public String getLang() {
    method setLang (line 246) | public void setLang(String lang) {
    method getLikes (line 250) | public String getLikes() {
    method setLikes (line 254) | public void setLikes(String likes) {

FILE: app/src/main/java/com/theflexproject/thunder/model/FanArt/Hdmovielogo.java
  class Hdmovielogo (line 3) | public class Hdmovielogo {
    method getId (line 9) | public String getId() {
    method setId (line 13) | public void setId(String id) {
    method getUrl (line 17) | public String getUrl() {
    method setUrl (line 21) | public void setUrl(String url) {
    method getLang (line 25) | public String getLang() {
    method setLang (line 29) | public void setLang(String lang) {
    method getLikes (line 33) | public String getLikes() {
    method setLikes (line 37) | public void setLikes(String likes) {
    method toString (line 41) | @Override

FILE: app/src/main/java/com/theflexproject/thunder/model/FanArt/Hdtvlogo.java
  class Hdtvlogo (line 3) | public class Hdtvlogo {
    method toString (line 9) | @Override
    method getId (line 19) | public String getId() {
    method setId (line 23) | public void setId(String id) {
    method getUrl (line 27) | public String getUrl() {
    method setUrl (line 31) | public void setUrl(String url) {
    method getLang (line 35) | public String getLang() {
    method setLang (line 39) | public void setLang(String lang) {
    method getLikes (line 43) | public String getLikes() {
    method setLikes (line 47) | public void setLikes(String likes) {

FILE: app/src/main/java/com/theflexproject/thunder/model/FanArt/Movielogo.java
  class Movielogo (line 3) | public class Movielogo {
    method getId (line 9) | public String getId() {
    method setId (line 13) | public void setId(String id) {
    method getUrl (line 17) | public String getUrl() {
    method setUrl (line 21) | public void setUrl(String url) {
    method getLang (line 25) | public String getLang() {
    method setLang (line 29) | public void setLang(String lang) {
    method getLikes (line 33) | public String getLikes() {
    method setLikes (line 37) | public void setLikes(String likes) {
    method toString (line 41) | @Override

FILE: app/src/main/java/com/theflexproject/thunder/model/File.java
  class File (line 5) | public class File {
    method getUrlstring (line 14) | public String getUrlstring() {
    method setUrlstring (line 18) | public void setUrlstring(String urlString) {
    method getId (line 22) | public String getId() {
    method setId (line 26) | public void setId(String id) {
    method getName (line 30) | public String getName() {
    method setName (line 34) | public void setName(String name) {
    method getMimeType (line 38) | public String getMimeType() {
    method setMimeType (line 42) | public void setMimeType(String mimeType) {
    method getModifiedTime (line 46) | public Date getModifiedTime() {
    method setModifiedTime (line 50) | public void setModifiedTime(Date modifiedTime) {
    method getSize (line 54) | public String getSize() {
    method setSize (line 58) | public void setSize(String size) {
    method getUrlString (line 62) | public String getUrlString() {
    method setUrlString (line 66) | public void setUrlString(String urlString) {
    method toString (line 70) | @Override

FILE: app/src/main/java/com/theflexproject/thunder/model/Genre.java
  class Genre (line 3) | public class Genre {
    method toString (line 7) | @Override
    method getId (line 18) | public int getId() {
    method setId (line 22) | public void setId(int id) {
    method getName (line 26) | public String getName() {
    method setName (line 30) | public void setName(String name) {

FILE: app/src/main/java/com/theflexproject/thunder/model/GitHubResponse.java
  class Asset (line 7) | class Asset{
  class Author (line 23) | class Author{
  class GitHubResponse (line 44) | public class GitHubResponse{
  class Uploader (line 65) | class Uploader{

FILE: app/src/main/java/com/theflexproject/thunder/model/IndexLink.java
  class IndexLink (line 9) | @Entity
    method getDisabled (line 20) | public int getDisabled() {
    method setDisabled (line 24) | public void setDisabled(int disabled) {
    method getIndexType (line 31) | public String getIndexType() {
    method setIndexType (line 35) | public void setIndexType(String indexType) {
    method getFolderType (line 39) | public String getFolderType() {
    method setFolderType (line 43) | public void setFolderType(String folderType) {
    method getId (line 47) | public int getId() {
    method setId (line 51) | public void setId(int id) {
    method getLink (line 55) | public String getLink() {
    method setLink (line 59) | public void setLink(String link) {
    method getUsername (line 63) | public String getUsername() {
    method setUsername (line 67) | public void setUsername(String username) {
    method getPassword (line 71) | public String getPassword() {
    method setPassword (line 75) | public void setPassword(String password) {

FILE: app/src/main/java/com/theflexproject/thunder/model/Movie.java
  class Movie (line 11) | @Entity
    method getLogo_path (line 23) | public String getLogo_path() {
    method setLogo_path (line 27) | public void setLogo_path(String logo_path) {
    method getIndex_id (line 40) | public int getIndex_id() {
    method setIndex_id (line 44) | public void setIndex_id(int index_id) {
    method getDisabled (line 48) | public int getDisabled() {
    method setDisabled (line 52) | public void setDisabled(int disabled) {
    method getAddToList (line 56) | public int getAddToList() {
    method setAddToList (line 60) | public void setAddToList(int addToList) {
    method toString (line 99) | @Override
    method getGd_id (line 140) | public String getGd_id() {
    method setGd_id (line 144) | public void setGd_id(String gd_id) {
    method getFileidForDB (line 148) | public int getFileidForDB() {
    method setFileidForDB (line 152) | public void setFileidForDB(int fileidForDB) {
    method getFileName (line 156) | public String getFileName() {
    method setFileName (line 160) | public void setFileName(String fileName) {
    method getMimeType (line 164) | public String getMimeType() {
    method setMimeType (line 168) | public void setMimeType(String mimeType) {
    method getModifiedTime (line 172) | public Date getModifiedTime() {
    method setModifiedTime (line 176) | public void setModifiedTime(Date modifiedTime) {
    method getSize (line 180) | public String getSize() {
    method setSize (line 184) | public void setSize(String size) {
    method getUrlString (line 188) | public String getUrlString() {
    method setUrlString (line 192) | public void setUrlString(String urlString) {
    method getPlayed (line 196) | public int getPlayed() {
    method setPlayed (line 200) | public void setPlayed(int played) {
    method isAdult (line 204) | public boolean isAdult() {
    method setAdult (line 208) | public void setAdult(boolean adult) {
    method getBackdrop_path (line 212) | public String getBackdrop_path() {
    method setBackdrop_path (line 216) | public void setBackdrop_path(String backdrop_path) {
    method getGenres (line 229) | public ArrayList<Genre> getGenres() {
    method setGenres (line 233) | public void setGenres(ArrayList<Genre> genres) {
    method getHomepage (line 237) | public String getHomepage() {
    method setHomepage (line 241) | public void setHomepage(String homepage) {
    method getId (line 245) | public int getId() {
    method setId (line 249) | public void setId(int id) {
    method getImdb_id (line 253) | public String getImdb_id() {
    method setImdb_id (line 257) | public void setImdb_id(String imdb_id) {
    method getOriginal_language (line 261) | public String getOriginal_language() {
    method setOriginal_language (line 265) | public void setOriginal_language(String original_language) {
    method getOriginal_title (line 269) | public String getOriginal_title() {
    method setOriginal_title (line 273) | public void setOriginal_title(String original_title) {
    method getOverview (line 277) | public String getOverview() {
    method setOverview (line 281) | public void setOverview(String overview) {
    method getPopularity (line 285) | public double getPopularity() {
    method setPopularity (line 289) | public void setPopularity(double popularity) {
    method getPoster_path (line 293) | public String getPoster_path() {
    method setPoster_path (line 297) | public void setPoster_path(String poster_path) {
    method getRelease_date (line 317) | public String getRelease_date() {
    method setRelease_date (line 321) | public void setRelease_date(String release_date) {
    method getRuntime (line 326) | public int getRuntime() {
    method setRuntime (line 330) | public void setRuntime(int runtime) {
    method getStatus (line 342) | public String getStatus() {
    method setStatus (line 346) | public void setStatus(String status) {
    method getTagline (line 350) | public String getTagline() {
    method setTagline (line 354) | public void setTagline(String tagline) {
    method getTitle (line 358) | public String getTitle() {
    method setTitle (line 362) | public void setTitle(String title) {
    method isVideo (line 366) | public boolean isVideo() {
    method setVideo (line 370) | public void setVideo(boolean video) {
    method getVote_average (line 374) | public double getVote_average() {
    method setVote_average (line 378) | public void setVote_average(double vote_average) {
    method getVote_count (line 382) | public int getVote_count() {
    method setVote_count (line 386) | public void setVote_count(int vote_count) {
    method setBudget (line 390) | public void setBudget(long budget) {
    method setRevenue (line 394) | public void setRevenue(long revenue) {

FILE: app/src/main/java/com/theflexproject/thunder/model/MoviesResponseFromTMDB.java
  class MoviesResponseFromTMDB (line 4) | public class MoviesResponseFromTMDB {
    method toString (line 9) | @Override

FILE: app/src/main/java/com/theflexproject/thunder/model/MyMedia.java
  type MyMedia (line 3) | public interface MyMedia {

FILE: app/src/main/java/com/theflexproject/thunder/model/ProductionCompany.java
  class ProductionCompany (line 3) | public class ProductionCompany {
    method getId (line 9) | public int getId() {
    method setId (line 13) | public void setId(int id) {
    method getLogo_path (line 17) | public String getLogo_path() {
    method setLogo_path (line 21) | public void setLogo_path(String logo_path) {
    method getName (line 25) | public String getName() {
    method setName (line 29) | public void setName(String name) {
    method getOrigin_country (line 33) | public String getOrigin_country() {
    method setOrigin_country (line 37) | public void setOrigin_country(String origin_country) {
    method toString (line 41) | @Override

FILE: app/src/main/java/com/theflexproject/thunder/model/ProductionCountry.java
  class ProductionCountry (line 3) | public class ProductionCountry {

FILE: app/src/main/java/com/theflexproject/thunder/model/ResFormat.java
  class ResFormat (line 8) | @Entity
    method getCode (line 19) | public int getCode() {
    method setCode (line 23) | public void setCode(int code) {
    method getNextPageToken (line 27) | public String getNextPageToken() {
    method setNextPageToken (line 31) | public void setNextPageToken(String nextPageToken) {
    method getCurPageIndex (line 35) | public String getCurPageIndex() {
    method setCurPageIndex (line 39) | public void setCurPageIndex(String curPageIndex) {
    method getData (line 43) | public Data getData() {
    method setData (line 47) | public void setData(Data data) {
    method toString (line 51) | @Override

FILE: app/src/main/java/com/theflexproject/thunder/model/SimpleLink.java
  class SimpleLink (line 3) | public class SimpleLink{
    method getStatus (line 7) | public String getStatus() {
    method setStatus (line 11) | public void setStatus(String status) {
    method getUrl (line 15) | public String getUrl() {
    method setUrl (line 19) | public void setUrl(String url) {
    method toString (line 23) | @Override

FILE: app/src/main/java/com/theflexproject/thunder/model/SpokenLanguage.java
  class SpokenLanguage (line 3) | public class SpokenLanguage {

FILE: app/src/main/java/com/theflexproject/thunder/model/TVShowInfo/CreatedBy.java
  class CreatedBy (line 3) | public class CreatedBy {

FILE: app/src/main/java/com/theflexproject/thunder/model/TVShowInfo/Crew.java
  class Crew (line 3) | public class Crew {
    method getDepartment (line 16) | public String getDepartment() {
    method setDepartment (line 20) | public void setDepartment(String department) {
    method getJob (line 24) | public String getJob() {
    method setJob (line 28) | public void setJob(String job) {
    method getCredit_id (line 32) | public String getCredit_id() {
    method setCredit_id (line 36) | public void setCredit_id(String credit_id) {
    method isAdult (line 40) | public boolean isAdult() {
    method setAdult (line 44) | public void setAdult(boolean adult) {
    method getGender (line 48) | public int getGender() {
    method setGender (line 52) | public void setGender(int gender) {
    method getId (line 56) | public int getId() {
    method setId (line 60) | public void setId(int id) {
    method getKnown_for_department (line 64) | public String getKnown_for_department() {
    method setKnown_for_department (line 68) | public void setKnown_for_department(String known_for_department) {
    method getName (line 72) | public String getName() {
    method setName (line 76) | public void setName(String name) {
    method getOriginal_name (line 80) | public String getOriginal_name() {
    method setOriginal_name (line 84) | public void setOriginal_name(String original_name) {
    method getPopularity (line 88) | public double getPopularity() {
    method setPopularity (line 92) | public void setPopularity(double popularity) {
    method getProfile_path (line 96) | public String getProfile_path() {
    method setProfile_path (line 100) | public void setProfile_path(String profile_path) {
    method toString (line 104) | @Override

FILE: app/src/main/java/com/theflexproject/thunder/model/TVShowInfo/Episode.java
  class Episode (line 13) | @Entity
    method getDisabled (line 28) | public int getDisabled() {
    method setDisabled (line 32) | public void setDisabled(int disabled) {
    method getIndex_id (line 39) | public int getIndex_id() {
    method setIndex_id (line 43) | public void setIndex_id(int index_id) {
    method toString (line 72) | @Override
    method getGd_id (line 102) | public String getGd_id() {
    method setGd_id (line 106) | public void setGd_id(String gd_id) {
    method getAir_date (line 110) | public String getAir_date() {
    method setAir_date (line 114) | public void setAir_date(String air_date) {
    method getEpisode_number (line 118) | public int getEpisode_number() {
    method setEpisode_number (line 122) | public void setEpisode_number(int episode_number) {
    method getId (line 126) | public int getId() {
    method setId (line 130) | public void setId(int id) {
    method getName (line 134) | public String getName() {
    method setName (line 138) | public void setName(String name) {
    method getOverview (line 142) | public String getOverview() {
    method setOverview (line 146) | public void setOverview(String overview) {
    method getProduction_code (line 150) | public String getProduction_code() {
    method setProduction_code (line 154) | public void setProduction_code(String production_code) {
    method getRuntime (line 158) | public int getRuntime() {
    method setRuntime (line 162) | public void setRuntime(int runtime) {
    method getSeason_number (line 166) | public int getSeason_number() {
    method setSeason_number (line 170) | public void setSeason_number(int season_number) {
    method getShow_id (line 174) | public long getShow_id() {
    method setShow_id (line 178) | public void setShow_id(long show_id) {
    method getStill_path (line 182) | public String getStill_path() {
    method setStill_path (line 186) | public void setStill_path(String still_path) {
    method getVote_average (line 190) | public double getVote_average() {
    method setVote_average (line 194) | public void setVote_average(double vote_average) {
    method getVote_count (line 198) | public int getVote_count() {
    method setVote_count (line 202) | public void setVote_count(int vote_count) {
    method getUrlString (line 222) | public String getUrlString() {
    method setUrlString (line 226) | public void setUrlString(String urlString) {
    method getIdForDB (line 230) | public int getIdForDB() {
    method setIdForDB (line 234) | public void setIdForDB(int idForDB) {
    method getFileName (line 238) | public String getFileName() {
    method setFileName (line 242) | public void setFileName(String fileName) {
    method getMimeType (line 246) | public String getMimeType() {
    method setMimeType (line 250) | public void setMimeType(String mimeType) {
    method getModifiedTime (line 254) | public Date getModifiedTime() {
    method setModifiedTime (line 258) | public void setModifiedTime(Date modifiedTime) {
    method getSize (line 262) | public String getSize() {
    method setSize (line 266) | public void setSize(String size) {
    method getPlayed (line 270) | public int getPlayed() {
    method setPlayed (line 274) | public void setPlayed(int played) {
    method getSeason_id (line 279) | public int getSeason_id() {
    method setSeason_id (line 283) | public void setSeason_id(int season_id) {

FILE: app/src/main/java/com/theflexproject/thunder/model/TVShowInfo/GuestStar.java
  class GuestStar (line 3) | public class GuestStar {
    method getCharacter (line 16) | public String getCharacter() {
    method setCharacter (line 20) | public void setCharacter(String character) {
    method getCredit_id (line 24) | public String getCredit_id() {
    method setCredit_id (line 28) | public void setCredit_id(String credit_id) {
    method getOrder (line 32) | public int getOrder() {
    method setOrder (line 36) | public void setOrder(int order) {
    method isAdult (line 40) | public boolean isAdult() {
    method setAdult (line 44) | public void setAdult(boolean adult) {
    method getGender (line 48) | public int getGender() {
    method setGender (line 52) | public void setGender(int gender) {
    method getId (line 56) | public int getId() {
    method setId (line 60) | public void setId(int id) {
    method getKnown_for_department (line 64) | public String getKnown_for_department() {
    method setKnown_for_department (line 68) | public void setKnown_for_department(String known_for_department) {
    method getName (line 72) | public String getName() {
    method setName (line 76) | public void setName(String name) {
    method getOriginal_name (line 80) | public String getOriginal_name() {
    method setOriginal_name (line 84) | public void setOriginal_name(String original_name) {
    method getPopularity (line 88) | public double getPopularity() {
    method setPopularity (line 92) | public void setPopularity(double popularity) {
    method getProfile_path (line 96) | public String getProfile_path() {
    method setProfile_path (line 100) | public void setProfile_path(String profile_path) {
    method toString (line 104) | @Override

FILE: app/src/main/java/com/theflexproject/thunder/model/TVShowInfo/LastEpisodeToAir.java
  class LastEpisodeToAir (line 3) | public class LastEpisodeToAir {
    method getAir_date (line 17) | public String getAir_date() {
    method setAir_date (line 21) | public void setAir_date(String air_date) {
    method getEpisode_number (line 25) | public int getEpisode_number() {
    method setEpisode_number (line 29) | public void setEpisode_number(int episode_number) {
    method getId (line 33) | public int getId() {
    method setId (line 37) | public void setId(int id) {
    method getName (line 41) | public String getName() {
    method setName (line 45) | public void setName(String name) {
    method getOverview (line 49) | public String getOverview() {
    method setOverview (line 53) | public void setOverview(String overview) {
    method getProduction_code (line 57) | public String getProduction_code() {
    method setProduction_code (line 61) | public void setProduction_code(String production_code) {
    method getRuntime (line 65) | public int getRuntime() {
    method setRuntime (line 69) | public void setRuntime(int runtime) {
    method getSeason_number (line 73) | public int getSeason_number() {
    method setSeason_number (line 77) | public void setSeason_number(int season_number) {
    method getShow_id (line 81) | public int getShow_id() {
    method setShow_id (line 85) | public void setShow_id(int show_id) {
    method getStill_path (line 89) | public String getStill_path() {
    method setStill_path (line 93) | public void setStill_path(String still_path) {
    method getVote_average (line 97) | public double getVote_average() {
    method setVote_average (line 101) | public void setVote_average(double vote_average) {
    method getVote_count (line 105) | public int getVote_count() {
    method setVote_count (line 109) | public void setVote_count(int vote_count) {
    method toString (line 113) | @Override

FILE: app/src/main/java/com/theflexproject/thunder/model/TVShowInfo/Network.java
  class Network (line 3) | public class Network {
    method getId (line 9) | public int getId() {
    method setId (line 13) | public void setId(int id) {
    method getName (line 17) | public String getName() {
    method setName (line 21) | public void setName(String name) {
    method getLogo_path (line 25) | public String getLogo_path() {
    method setLogo_path (line 29) | public void setLogo_path(String logo_path) {
    method getOrigin_country (line 33) | public String getOrigin_country() {
    method setOrigin_country (line 37) | public void setOrigin_country(String origin_country) {
    method toString (line 41) | @Override

FILE: app/src/main/java/com/theflexproject/thunder/model/TVShowInfo/Result.java
  class Result (line 5) | public class Result {
    method getBackdrop_path (line 20) | public String getBackdrop_path() {
    method setBackdrop_path (line 24) | public void setBackdrop_path(String backdrop_path) {
    method getFirst_air_date (line 28) | public String getFirst_air_date() {
    method setFirst_air_date (line 32) | public void setFirst_air_date(String first_air_date) {
    method getGenre_ids (line 36) | public ArrayList<Integer> getGenre_ids() {
    method setGenre_ids (line 40) | public void setGenre_ids(ArrayList<Integer> genre_ids) {
    method getId (line 44) | public long getId() {
    method setId (line 48) | public void setId(int id) {
    method getName (line 52) | public String getName() {
    method setName (line 56) | public void setName(String name) {
    method getOrigin_country (line 60) | public ArrayList<String> getOrigin_country() {
    method setOrigin_country (line 64) | public void setOrigin_country(ArrayList<String> origin_country) {
    method getOriginal_language (line 68) | public String getOriginal_language() {
    method setOriginal_language (line 72) | public void setOriginal_language(String original_language) {
    method getOriginal_name (line 76) | public String getOriginal_name() {
    method setOriginal_name (line 80) | public void setOriginal_name(String original_name) {
    method getOverview (line 84) | public String getOverview() {
    method setOverview (line 88) | public void setOverview(String overview) {
    method getPopularity (line 92) | public double getPopularity() {
    method setPopularity (line 96) | public void setPopularity(double popularity) {
    method getPoster_path (line 100) | public String getPoster_path() {
    method setPoster_path (line 104) | public void setPoster_path(String poster_path) {
    method getVote_average (line 108) | public double getVote_average() {
    method setVote_average (line 112) | public void setVote_average(double vote_average) {
    method getVote_count (line 116) | public int getVote_count() {
    method setVote_count (line 120) | public void setVote_count(int vote_count) {
    method toString (line 124) | @Override

FILE: app/src/main/java/com/theflexproject/thunder/model/TVShowInfo/Season.java
  class Season (line 3) | public class Season {
    method getAir_date (line 12) | public String getAir_date() {
    method setAir_date (line 16) | public void setAir_date(String air_date) {
    method getEpisode_count (line 20) | public int getEpisode_count() {
    method setEpisode_count (line 24) | public void setEpisode_count(int episode_count) {
    method getId (line 28) | public int getId() {
    method setId (line 32) | public void setId(int id) {
    method getName (line 36) | public String getName() {
    method setName (line 40) | public void setName(String name) {
    method getOverview (line 44) | public String getOverview() {
    method setOverview (line 48) | public void setOverview(String overview) {
    method getPoster_path (line 52) | public String getPoster_path() {
    method setPoster_path (line 56) | public void setPoster_path(String poster_path) {
    method getSeason_number (line 60) | public int getSeason_number() {
    method setSeason_number (line 64) | public void setSeason_number(int season_number) {
    method toString (line 68) | @Override

FILE: app/src/main/java/com/theflexproject/thunder/model/TVShowInfo/TVShow.java
  class TVShow (line 13) | @Entity
    method getAddToList (line 21) | public int getAddToList() {
    method setAddToList (line 25) | public void setAddToList(int addToList) {
    method isAdult (line 68) | public boolean isAdult() {
    method setAdult (line 72) | public void setAdult(boolean adult) {
    method getBackdrop_path (line 76) | public String getBackdrop_path() {
    method setBackdrop_path (line 80) | public void setBackdrop_path(String backdrop_path) {
    method getLogo_path (line 85) | public String getLogo_path() {
    method setLogo_path (line 89) | public void setLogo_path(String logo_path) {
    method getFirst_air_date (line 108) | public String getFirst_air_date() {
    method setFirst_air_date (line 112) | public void setFirst_air_date(String first_air_date) {
    method getGenres (line 116) | public ArrayList<Genre> getGenres() {
    method setGenres (line 120) | public void setGenres(ArrayList<Genre> genres) {
    method getHomepage (line 124) | public String getHomepage() {
    method setHomepage (line 128) | public void setHomepage(String homepage) {
    method getId (line 132) | public int getId() {
    method setId (line 136) | public void setId(int id) {
    method isIn_production (line 140) | public boolean isIn_production() {
    method setIn_production (line 144) | public void setIn_production(boolean in_production) {
    method getLast_air_date (line 156) | public String getLast_air_date() {
    method setLast_air_date (line 160) | public void setLast_air_date(String last_air_date) {
    method getName (line 172) | public String getName() {
    method setName (line 176) | public void setName(String name) {
    method getNumber_of_episodes (line 196) | public int getNumber_of_episodes() {
    method setNumber_of_episodes (line 200) | public void setNumber_of_episodes(int number_of_episodes) {
    method getNumber_of_seasons (line 204) | public int getNumber_of_seasons() {
    method setNumber_of_seasons (line 208) | public void setNumber_of_seasons(int number_of_seasons) {
    method getOriginal_language (line 220) | public String getOriginal_language() {
    method setOriginal_language (line 224) | public void setOriginal_language(String original_language) {
    method getOriginal_name (line 228) | public String getOriginal_name() {
    method setOriginal_name (line 232) | public void setOriginal_name(String original_name) {
    method getOverview (line 236) | public String getOverview() {
    method setOverview (line 240) | public void setOverview(String overview) {
    method getPopularity (line 244) | public double getPopularity() {
    method setPopularity (line 248) | public void setPopularity(double popularity) {
    method getPoster_path (line 252) | public String getPoster_path() {
    method setPoster_path (line 256) | public void setPoster_path(String poster_path) {
    method getSeasons (line 276) | public ArrayList<Season> getSeasons() {
    method setSeasons (line 280) | public void setSeasons(ArrayList<Season> seasons) {
    method getStatus (line 292) | public String getStatus() {
    method setStatus (line 296) | public void setStatus(String status) {
    method getTagline (line 300) | public String getTagline() {
    method setTagline (line 304) | public void setTagline(String tagline) {
    method getType (line 308) | public String getType() {
    method setType (line 312) | public void setType(String type) {
    method getVote_average (line 316) | public double getVote_average() {
    method setVote_average (line 320) | public void setVote_average(double vote_average) {
    method getVote_count (line 324) | public int getVote_count() {
    method setVote_count (line 328) | public void setVote_count(int vote_count) {
    method getIdForDB (line 332) | public int getIdForDB() {
    method setIdForDB (line 336) | public void setIdForDB(int idForDB) {
    method toString (line 340) | @Override

FILE: app/src/main/java/com/theflexproject/thunder/model/TVShowInfo/TVShowSeasonDetails.java
  class TVShowSeasonDetails (line 12) | @Entity
    method get_id (line 28) | @NonNull
    method set_id (line 33) | public void set_id(@NonNull String _id) {
    method getAir_date (line 37) | public String getAir_date() {
    method setAir_date (line 41) | public void setAir_date(String air_date) {
    method getEpisodes (line 45) | public ArrayList<Episode> getEpisodes() {
    method setEpisodes (line 49) | public void setEpisodes(ArrayList<Episode> episodes) {
    method getName (line 53) | public String getName() {
    method setName (line 57) | public void setName(String name) {
    method getOverview (line 61) | public String getOverview() {
    method setOverview (line 65) | public void setOverview(String overview) {
    method getId (line 69) | public int getId() {
    method setId (line 73) | public void setId(int id) {
    method getPoster_path (line 77) | public String getPoster_path() {
    method setPoster_path (line 81) | public void setPoster_path(String poster_path) {
    method getSeason_number (line 85) | public int getSeason_number() {
    method setSeason_number (line 89) | public void setSeason_number(int season_number) {
    method getIdfordb (line 95) | @NonNull
    method setIdfordb (line 100) | public void setIdfordb(int idfordb) {
    method toString (line 104) | @Override
    method getShow_id (line 120) | public long getShow_id() {
    method setShow_id (line 124) | public void setShow_id(long show_id) {

FILE: app/src/main/java/com/theflexproject/thunder/model/TVShowInfo/TVShowsResponseFromTMDB.java
  class TVShowsResponseFromTMDB (line 6) | public class TVShowsResponseFromTMDB{
    method getPage (line 13) | public int getPage() {
    method setPage (line 17) | public void setPage(int page) {
    method getResults (line 21) | public ArrayList<Result> getResults() {
    method setResults (line 25) | public void setResults(ArrayList<Result> results) {
    method getTotal_pages (line 29) | public int getTotal_pages() {
    method setTotal_pages (line 33) | public void setTotal_pages(int total_pages) {
    method getTotal_results (line 37) | public int getTotal_results() {
    method setTotal_results (line 41) | public void setTotal_results(int total_results) {
    method toString (line 45) | @Override

FILE: app/src/main/java/com/theflexproject/thunder/model/tmdbImages/Backdrop.java
  class Backdrop (line 3) | public class Backdrop {
    method getAspect_ratio (line 12) | public double getAspect_ratio() {
    method setAspect_ratio (line 16) | public void setAspect_ratio(double aspect_ratio) {
    method getHeight (line 20) | public int getHeight() {
    method setHeight (line 24) | public void setHeight(int height) {
    method getIso_639_1 (line 28) | public String getIso_639_1() {
    method setIso_639_1 (line 32) | public void setIso_639_1(String iso_639_1) {
    method getFile_path (line 36) | public String getFile_path() {
    method setFile_path (line 40) | public void setFile_path(String file_path) {
    method getVote_average (line 44) | public double getVote_average() {
    method setVote_average (line 48) | public void setVote_average(double vote_average) {
    method getVote_count (line 52) | public int getVote_count() {
    method setVote_count (line 56) | public void setVote_count(int vote_count) {
    method getWidth (line 60) | public int getWidth() {
    method setWidth (line 64) | public void setWidth(int width) {

FILE: app/src/main/java/com/theflexproject/thunder/model/tmdbImages/Logo.java
  class Logo (line 3) | public class Logo {
    method getAspect_ratio (line 12) | public double getAspect_ratio() {
    method setAspect_ratio (line 16) | public void setAspect_ratio(double aspect_ratio) {
    method getHeight (line 20) | public int getHeight() {
    method setHeight (line 24) | public void setHeight(int height) {
    method getIso_639_1 (line 28) | public String getIso_639_1() {
    method setIso_639_1 (line 32) | public void setIso_639_1(String iso_639_1) {
    method getFile_path (line 36) | public String getFile_path() {
    method setFile_path (line 40) | public void setFile_path(String file_path) {
    method getVote_average (line 44) | public double getVote_average() {
    method setVote_average (line 48) | public void setVote_average(double vote_average) {
    method getVote_count (line 52) | public int getVote_count() {
    method setVote_count (line 56) | public void setVote_count(int vote_count) {
    method getWidth (line 60) | public int getWidth() {
    method setWidth (line 64) | public void setWidth(int width) {

FILE: app/src/main/java/com/theflexproject/thunder/model/tmdbImages/Poster.java
  class Poster (line 3) | public class Poster {
    method getAspect_ratio (line 12) | public double getAspect_ratio() {
    method setAspect_ratio (line 16) | public void setAspect_ratio(double aspect_ratio) {
    method getHeight (line 20) | public int getHeight() {
    method setHeight (line 24) | public void setHeight(int height) {
    method getIso_639_1 (line 28) | public String getIso_639_1() {
    method setIso_639_1 (line 32) | public void setIso_639_1(String iso_639_1) {
    method getFile_path (line 36) | public String getFile_path() {
    method setFile_path (line 40) | public void setFile_path(String file_path) {
    method getVote_average (line 44) | public double getVote_average() {
    method setVote_average (line 48) | public void setVote_average(double vote_average) {
    method getVote_count (line 52) | public int getVote_count() {
    method setVote_count (line 56) | public void setVote_count(int vote_count) {
    method getWidth (line 60) | public int getWidth() {
    method setWidth (line 64) | public void setWidth(int width) {

FILE: app/src/main/java/com/theflexproject/thunder/model/tmdbImages/TMDBImagesResponse.java
  class TMDBImagesResponse (line 6) | public class TMDBImagesResponse{
    method getBackdrops (line 12) | public ArrayList<Backdrop> getBackdrops() {
    method setBackdrops (line 16) | public void setBackdrops(ArrayList<Backdrop> backdrops) {
    method getId (line 20) | public int getId() {
    method setId (line 24) | public void setId(int id) {
    method getLogos (line 28) | public ArrayList<Logo> getLogos() {
    method setLogos (line 32) | public void setLogos(ArrayList<Logo> logos) {
    method getPosters (line 36) | public ArrayList<Poster> getPosters() {
    method setPosters (line 40) | public void setPosters(ArrayList<Poster> posters) {

FILE: app/src/main/java/com/theflexproject/thunder/player/DemoUtil.java
  class DemoUtil (line 23) | public final class DemoUtil {
    method buildRenderersFactory (line 34) | public static RenderersFactory buildRenderersFactory(
    method getHttpDataSourceFactory (line 42) | public static synchronized DataSource.Factory getHttpDataSourceFactory...
    method getDataSourceFactory (line 56) | public static synchronized DataSource.Factory getDataSourceFactory(Con...
    method getDownloadCache (line 66) | private static synchronized Cache getDownloadCache(Context context) {
    method getDatabaseProvider (line 78) | private static synchronized DatabaseProvider getDatabaseProvider(Conte...
    method getDownloadDirectory (line 85) | private static synchronized File getDownloadDirectory(Context context) {
    method buildReadOnlyCacheDataSource (line 95) | private static CacheDataSource.Factory buildReadOnlyCacheDataSource(
    method DemoUtil (line 104) | private DemoUtil() {}

FILE: app/src/main/java/com/theflexproject/thunder/player/PlayerActivity.java
  class PlayerActivity (line 35) | public class PlayerActivity extends AppCompatActivity implements View.On...
    method onCreate (line 59) | @Override
    method onNewIntent (line 99) | @Override
    method onStart (line 108) | @Override
    method onResume (line 119) | @Override
    method onPause (line 131) | @Override
    method onStop (line 142) | @Override
    method onDestroy (line 153) | @Override
    method onSaveInstanceState (line 160) | @Override
    method dispatchKeyEvent (line 173) | @Override
    method onVisibilityChanged (line 183) | @Override
    method onClick (line 187) | @Override
    method setContentView (line 194) | protected void setContentView() {
    method initializePlayer (line 201) | protected boolean initializePlayer() {
    method createMediaSourceFactory (line 232) | private MediaSource.Factory createMediaSourceFactory() {
    method setRenderersFactory (line 242) | private void setRenderersFactory(
    method releasePlayer (line 250) | protected void releasePlayer() {
    method updateTrackSelectorParameters (line 261) | private void updateTrackSelectorParameters() {
    method updateStartPosition (line 267) | private void updateStartPosition() {
    method clearStartPosition (line 275) | protected void clearStartPosition() {
    method showControls (line 281) | private void showControls() {
    method showToast (line 285) | private void showToast(int messageId) {
    method showToast (line 289) | private void showToast(String message) {
    class PlayerEventListener (line 293) | private class PlayerEventListener implements Player.Listener {
      method onPlaybackStateChanged (line 295) | @Override
      method onPlayerError (line 303) | @Override

FILE: app/src/main/java/com/theflexproject/thunder/utils/AnimeNameExtractor.java
  class AnimeNameExtractor (line 6) | public class AnimeNameExtractor {
    method getAnimeName (line 11) | public static String[] getAnimeName (String matchString) {

FILE: app/src/main/java/com/theflexproject/thunder/utils/CheckForUpdates.java
  class CheckForUpdates (line 16) | public class CheckForUpdates extends BaseFragment {
    method checkForUpdates (line 17) | public GitHubResponse[] checkForUpdates() throws IOException {
    method versionCompare (line 60) | static int versionCompare(String v1, String v2)

FILE: app/src/main/java/com/theflexproject/thunder/utils/IndexUtils.java
  class IndexUtils (line 19) | public class IndexUtils{
    method refreshIndex (line 21) | public static boolean refreshIndex(Context mContext , IndexLink indexL...
    method deleteIndex (line 86) | public static boolean deleteIndex(Context mContext,IndexLink indexLink) {
    method getNoOfMedia (line 154) | public static int getNoOfMedia(Context mContext,IndexLink t) {
    method disableIndex (line 184) | public static void disableIndex(Context mContext,IndexLink indexLink){
    method enableIndex (line 202) | public static void enableIndex(Context mContext,IndexLink indexLink){

FILE: app/src/main/java/com/theflexproject/thunder/utils/MovieQualityExtractor.java
  class MovieQualityExtractor (line 5) | public class MovieQualityExtractor {
    method extractQualtiy (line 6) | public static String extractQualtiy(String name){

FILE: app/src/main/java/com/theflexproject/thunder/utils/MovieTitleExtractor2.java
  class MovieTitleExtractor2 (line 13) | public class MovieTitleExtractor2 {
    method instance (line 15) | public static MovieTitleExtractor2 instance() {
    method MovieTitleExtractor2 (line 22) | private MovieTitleExtractor2() {
    method getTitle2 (line 26) | public static String[] getTitle2(String input) {
    method cutOffBeforeFirstMatch (line 113) | private static String cutOffBeforeFirstMatch(String input, Pattern[] p...
    method cutOffBeforeFirstMatch (line 126) | public static final String cutOffBeforeFirstMatch(String input, String...

FILE: app/src/main/java/com/theflexproject/thunder/utils/Pair.java
  type Pair (line 5) | public interface Pair {

FILE: app/src/main/java/com/theflexproject/thunder/utils/PairMovies.java
  class PairMovies (line 7) | public class PairMovies implements Pair {
    method PairMovies (line 14) | public PairMovies(String recyclerTitle , List<Movie> mediaList){
    method getRecyclerTitle (line 20) | public String getRecyclerTitle() {
    method setRecyclerTitle (line 24) | public void setRecyclerTitle(String recyclerTitle) {
    method getmediaList (line 28) | public List<Movie> getmediaList() {
    method setmediaList (line 32) | public void setmediaList(List<Movie> mediaList) {

FILE: app/src/main/java/com/theflexproject/thunder/utils/PairTvShows.java
  class PairTvShows (line 7) | public class PairTvShows implements Pair {
    method PairTvShows (line 14) | public PairTvShows(String recyclerTitle , List<TVShow> tvShowList){
    method getRecyclerTitle (line 19) | public String getRecyclerTitle() {
    method setRecyclerTitle (line 23) | public void setRecyclerTitle(String recyclerTitle) {
    method getTvShowList (line 28) | public List<TVShow> getTvShowList() {
    method setTvShowList (line 32) | public void setTvShowList(List<TVShow> tvShowList) {

FILE: app/src/main/java/com/theflexproject/thunder/utils/ParseUtils.java
  class ParseUtils (line 9) | public class ParseUtils {
    method removeNumbering (line 42) | public static String removeNumbering(String input) {
    method removeNumberingDash (line 46) | public static String removeNumberingDash(String input) {
    method replaceAcronyms (line 51) | public static String replaceAcronyms(String input) {
    method unifyApostrophes (line 56) | public static String unifyApostrophes(String input) {
    method removeInnerAndOutterSeparatorJunk (line 61) | public static String removeInnerAndOutterSeparatorJunk(String input) {
    method removeAfterEmptyParenthesis (line 68) | public static String removeAfterEmptyParenthesis(String input) {
    method ParseUtils (line 86) | private ParseUtils() {
    method yearExtractor (line 92) | public static Pair<String, String> yearExtractor(String input) {
    method twoPatternExtractor2 (line 97) | public static Pair<String, String> twoPatternExtractor2(String input, ...
    method getCountryOfOrigin (line 109) | public static Pair<String, String> getCountryOfOrigin(String input) {
    method parenthesisYearExtractor (line 115) | public static Pair<String, String> parenthesisYearExtractor(String inp...

FILE: app/src/main/java/com/theflexproject/thunder/utils/PlexMovieExtractor.java
  class PlexMovieExtractor (line 6) | public class PlexMovieExtractor {
    method getTMDBId (line 15) | public static String getTMDBId (String matchString) {
    method getVideoDetails (line 34) | public static String[] getVideoDetails(String matchString){

FILE: app/src/main/java/com/theflexproject/thunder/utils/RefreshWorker.java
  class RefreshWorker (line 19) | public class RefreshWorker extends Worker {
    method RefreshWorker (line 21) | public RefreshWorker(
    method doWork (line 29) | @Override
    method isNetworkAvailable (line 44) | private boolean isNetworkAvailable() {

FILE: app/src/main/java/com/theflexproject/thunder/utils/SceneMovieTitleExtractor.java
  class SceneMovieTitleExtractor (line 6) | public class SceneMovieTitleExtractor {
    method instance (line 8) | public static SceneMovieTitleExtractor instance() {
    method SceneMovieTitleExtractor (line 15) | SceneMovieTitleExtractor() {
    method getTitleYear (line 19) | public static String[] getTitleYear(String matchString) {

FILE: app/src/main/java/com/theflexproject/thunder/utils/SendGetRequestTMDB.java
  class SendGetRequestTMDB (line 51) | public class SendGetRequestTMDB {
    method sendGet2 (line 54) | static void sendGet2(Movie movie) {
    method searchMovieOnTmdbByName (line 125) | private static String searchMovieOnTmdbByName(String titleExtracted , ...
    method getMovieById (line 153) | private static void getMovieById(long id , MyMedia myMedia) {
    method sendGetTVShow (line 225) | static void sendGetTVShow(Episode episode) {
    method getTVById (line 335) | private static void getTVById(long tvShowId , MyMedia myMedia) {
    method getTVSeasonById2 (line 417) | private static void getTVSeasonById2(long tvShowId , String finalSeaso...
    method tmdbGetByID (line 551) | public static void tmdbGetByID(MyMedia myMedia , long id , boolean isS...
    method findIndexOfClosestMatch (line 567) | private static int findIndexOfClosestMatch(String s , ArrayList<String...
    method getLogo2 (line 581) | private static String getLogo2(Long id , boolean isShow) {
    method getLogo (line 648) | private static String getLogo(Long id , boolean isShow) {
    method getTVDBId (line 735) | private static long getTVDBId(long tvShowId) {

FILE: app/src/main/java/com/theflexproject/thunder/utils/SendPostRequest.java
  class SendPostRequest (line 39) | public class SendPostRequest {
    method postRequestGDIndex (line 46) | public static void postRequestGDIndex(String urlString , String user ,...
    method postRequestGoIndex (line 220) | public static void postRequestGoIndex(String urlString , String user ,...
    method postRequestMapleIndex (line 339) | public static void postRequestMapleIndex(String urlString , String use...
    method postRequestSimpleProgramIndex (line 456) | public static void postRequestSimpleProgramIndex(String urlString , St...
    method checkFilesAndSendToTMDBMovie (line 575) | private static void checkFilesAndSendToTMDBMovie(List<String> folders ...
    method isAlreadyPresent (line 637) | private static boolean isAlreadyPresent(String id , Date modifiedTime) {
    method generateDownloadLinkSimpleProgram (line 657) | private static String generateDownloadLinkSimpleProgram(String id) {
    method checkFilesAndSendToTMDBTVShow (line 687) | private static void checkFilesAndSendToTMDBTVShow(List<String> showFol...

FILE: app/src/main/java/com/theflexproject/thunder/utils/SettingsManager.java
  class SettingsManager (line 7) | public class SettingsManager {
    method SettingsManager (line 11) | public SettingsManager(Context context) {
    method saveRefresh (line 22) | public void saveRefresh(Boolean REFRESH_PERIODICALLY_BUTTON,Integer ti...
    method saveCast (line 28) | public void saveCast(Boolean CAST_BUTTON) {
    method saveExternal (line 33) | public void saveExternal(Boolean EXTERNAL_PLAYER_BUTTON) {

FILE: app/src/main/java/com/theflexproject/thunder/utils/ShowUtils.java
  class ShowUtils (line 20) | public final class ShowUtils {
    method ShowUtils (line 37) | private ShowUtils() {
    method cleanUpName (line 68) | public static String cleanUpName(String name) {
    method parseShowName (line 81) | public static Map<String, String> parseShowName(String filename) {
    method isTvShow (line 133) | public static boolean isTvShow(String file, String searchString) {
    method urlEncode (line 159) | public static String urlEncode(String input) {

FILE: app/src/main/java/com/theflexproject/thunder/utils/StorageUtils.java
  class StorageUtils (line 9) | public class StorageUtils {
    method verifyStoragePermissions (line 23) | public static boolean verifyStoragePermissions(Activity activity) {

FILE: app/src/main/java/com/theflexproject/thunder/utils/StringUtils.java
  class StringUtils (line 6) | public class StringUtils {
    method replaceAll (line 8) | public static String replaceAll(String input, String replacement, Patt...
    method replaceAllChars (line 12) | public static String replaceAllChars(String input, char[] badChars, ch...
    method runtimeIntegerToString (line 33) | public static String runtimeIntegerToString(int runtime){
    method StringUtils (line 47) | private StringUtils() {
    method tmdbIdExtractor_FromLink (line 51) | public static long tmdbIdExtractor_FromLink(String input) {
    method tmdbIdExtractor_FromLink_TV (line 64) | public static long tmdbIdExtractor_FromLink_TV(String input) {

FILE: app/src/main/java/com/theflexproject/thunder/utils/UpdateUtils.java
  class UpdateUtils (line 12) | public class UpdateUtils {
    method checkForUpdates (line 13) | public static void checkForUpdates(AppCompatActivity appCompatActivity){

FILE: app/src/main/java/com/theflexproject/thunder/utils/downloadUtils.java
  class downloadUtils (line 12) | public class downloadUtils {
    method downloadFile (line 13) | private static void downloadFile(String url, File outputFile) {

FILE: app/src/main/java/com/theflexproject/thunder/utils/imageVotesComparator.java
  class imageVotesComparator (line 7) | public class imageVotesComparator implements Comparator<Logo> {
    method compare (line 8) | @Override

FILE: app/src/main/java/com/theflexproject/thunder/utils/sizetoReadablesize.java
  class sizetoReadablesize (line 6) | public class sizetoReadablesize {
    method humanReadableByteCountBin (line 8) | public static String humanReadableByteCountBin(long bytes) {

FILE: app/src/test/java/com/theflexproject/thunder/ExampleUnitTest.java
  class ExampleUnitTest (line 12) | public class ExampleUnitTest {
    method addition_isCorrect (line 13) | @Test
Condensed preview — 261 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (1,374K chars).
[
  {
    "path": ".github/workflows/notify.yml",
    "chars": 580,
    "preview": "name: Notify on Telegram\n\non:\n  fork:\n  push:\n  release:\n  issue_comment:\n    types: created\n  watch:\n    types: started"
  },
  {
    "path": ".gitignore",
    "chars": 225,
    "preview": "*.iml\n.gradle\n/local.properties\n/.idea/caches\n/.idea/libraries\n/.idea/modules.xml\n/.idea/workspace.xml\n/.idea/navEditor."
  },
  {
    "path": ".idea/.gitignore",
    "chars": 47,
    "preview": "# Default ignored files\n/shelf/\n/workspace.xml\n"
  },
  {
    "path": ".idea/.name",
    "chars": 7,
    "preview": "Thunder"
  },
  {
    "path": ".idea/compiler.xml",
    "chars": 169,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project version=\"4\">\n  <component name=\"CompilerConfiguration\">\n    <bytecodeTar"
  },
  {
    "path": ".idea/deploymentTargetDropDown.xml",
    "chars": 1236,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project version=\"4\">\n  <component name=\"deploymentTargetDropDown\">\n    <targetSe"
  },
  {
    "path": ".idea/gradle.xml",
    "chars": 680,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project version=\"4\">\n  <component name=\"GradleMigrationSettings\" migrationVersio"
  },
  {
    "path": ".idea/misc.xml",
    "chars": 23494,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project version=\"4\">\n  <component name=\"DesignSurface\">\n    <option name=\"filePa"
  },
  {
    "path": ".idea/vcs.xml",
    "chars": 180,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project version=\"4\">\n  <component name=\"VcsDirectoryMappings\">\n    <mapping dire"
  },
  {
    "path": "LICENSE.md",
    "chars": 35155,
    "preview": "                    GNU GENERAL PUBLIC LICENSE\n                       Version 3, 29 June 2007\n\n Copyright (C) 2007 Free "
  },
  {
    "path": "README.md",
    "chars": 5839,
    "preview": "### **⚡ Thunder** :\n\nAn Android app to stream and download your media stored in Google Drive in an Awesome way !!\n\n<p al"
  },
  {
    "path": "Screenshots/test",
    "chars": 1,
    "preview": "\n"
  },
  {
    "path": "app/.gitignore",
    "chars": 6,
    "preview": "/build"
  },
  {
    "path": "app/build.gradle",
    "chars": 2756,
    "preview": "plugins {\n    id 'com.android.application'\n}\n\n\nandroid {\n    compileSdk 32\n\n    defaultConfig {\n        applicationId \"c"
  },
  {
    "path": "app/proguard-rules.pro",
    "chars": 750,
    "preview": "# Add project specific ProGuard rules here.\n# You can control the set of applied configuration files using the\n# proguar"
  },
  {
    "path": "app/schemas/com.example.myapplication.AppDatabase/5.json",
    "chars": 6365,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 5,\n    \"identityHash\": \"e7e8f2094f612b155f61f46396c10450\",\n    \"e"
  },
  {
    "path": "app/schemas/com.example.myapplication.database.AppDatabase/10.json",
    "chars": 6552,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 10,\n    \"identityHash\": \"a3191ca2c9aec41d6069b616bb985e84\",\n    \""
  },
  {
    "path": "app/schemas/com.theflexproject.thunder.database.AppDatabase/10.json",
    "chars": 6552,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 10,\n    \"identityHash\": \"a3191ca2c9aec41d6069b616bb985e84\",\n    \""
  },
  {
    "path": "app/schemas/com.theflexproject.thunder.database.AppDatabase/11.json",
    "chars": 6718,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 11,\n    \"identityHash\": \"dc2b4b8434670c24490e48c6d3f709de\",\n    \""
  },
  {
    "path": "app/schemas/com.theflexproject.thunder.database.AppDatabase/12.json",
    "chars": 6884,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 12,\n    \"identityHash\": \"8f3e141fb570a3206f81f4dbd6f7f241\",\n    \""
  },
  {
    "path": "app/schemas/com.theflexproject.thunder.database.AppDatabase/13.json",
    "chars": 6898,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 13,\n    \"identityHash\": \"e5ffc1c9484edf1b54be13fe8145052d\",\n    \""
  },
  {
    "path": "app/schemas/com.theflexproject.thunder.database.AppDatabase/14.json",
    "chars": 6899,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 14,\n    \"identityHash\": \"d5ae92f3371d6e4ee02a9de4fad13d0e\",\n    \""
  },
  {
    "path": "app/schemas/com.theflexproject.thunder.database.AppDatabase/15.json",
    "chars": 7098,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 15,\n    \"identityHash\": \"f5918f60ec7ae38a4c4862d9ae41a9f6\",\n    \""
  },
  {
    "path": "app/schemas/com.theflexproject.thunder.database.AppDatabase/16.json",
    "chars": 7098,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 16,\n    \"identityHash\": \"f5918f60ec7ae38a4c4862d9ae41a9f6\",\n    \""
  },
  {
    "path": "app/schemas/com.theflexproject.thunder.database.AppDatabase/17.json",
    "chars": 8890,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 17,\n    \"identityHash\": \"c6828cd08c7bdbfe17209d6d425a34ca\",\n    \""
  },
  {
    "path": "app/schemas/com.theflexproject.thunder.database.AppDatabase/18.json",
    "chars": 13588,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 18,\n    \"identityHash\": \"e52e100e7bfc5d329c82081604154530\",\n    \""
  },
  {
    "path": "app/schemas/com.theflexproject.thunder.database.AppDatabase/19.json",
    "chars": 13588,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 19,\n    \"identityHash\": \"e52e100e7bfc5d329c82081604154530\",\n    \""
  },
  {
    "path": "app/schemas/com.theflexproject.thunder.database.AppDatabase/20.json",
    "chars": 16578,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 20,\n    \"identityHash\": \"8279f91be4c0d700c1f0aec994bd5375\",\n    \""
  },
  {
    "path": "app/schemas/com.theflexproject.thunder.database.AppDatabase/21.json",
    "chars": 19136,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 21,\n    \"identityHash\": \"6c4feea74dfccbdfe2c6552af9c5354f\",\n    \""
  },
  {
    "path": "app/schemas/com.theflexproject.thunder.database.AppDatabase/22.json",
    "chars": 19331,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 22,\n    \"identityHash\": \"d115ad8a61aa31d89423122f4aa92bef\",\n    \""
  },
  {
    "path": "app/schemas/com.theflexproject.thunder.database.AppDatabase/23.json",
    "chars": 19520,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 23,\n    \"identityHash\": \"a0bbc978153e637904929ea13844473e\",\n    \""
  },
  {
    "path": "app/schemas/com.theflexproject.thunder.database.AppDatabase/24.json",
    "chars": 19948,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 24,\n    \"identityHash\": \"561cb3fd64265ed78934319e2c94bd96\",\n    \""
  },
  {
    "path": "app/schemas/com.theflexproject.thunder.database.AppDatabase/25.json",
    "chars": 20400,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 25,\n    \"identityHash\": \"2be09190b63be5b52ac6c0e6c5356be3\",\n    \""
  },
  {
    "path": "app/schemas/com.theflexproject.thunder.database.AppDatabase/26.json",
    "chars": 20870,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 26,\n    \"identityHash\": \"99fb2eb83ccb2c0c2666022170d6c67f\",\n    \""
  },
  {
    "path": "app/schemas/com.theflexproject.thunder.database.AppDatabase/27.json",
    "chars": 21105,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 27,\n    \"identityHash\": \"4cf471989e9c84dd1effa1f15216c613\",\n    \""
  },
  {
    "path": "app/schemas/com.theflexproject.thunder.database.AppDatabase/28.json",
    "chars": 21618,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 28,\n    \"identityHash\": \"f68d7cbfd2ddff4cce4a16c128a6a157\",\n    \""
  },
  {
    "path": "app/schemas/com.theflexproject.thunder.database.AppDatabase/29.json",
    "chars": 22067,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 29,\n    \"identityHash\": \"c6309fec0dd689975366aaf8744427ff\",\n    \""
  },
  {
    "path": "app/schemas/com.theflexproject.thunder.database.AppDatabase/30.json",
    "chars": 22051,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 30,\n    \"identityHash\": \"2e3e519f236c609767841a095fe5bd36\",\n    \""
  },
  {
    "path": "app/schemas/com.theflexproject.thunder.database.AppDatabase/5.json",
    "chars": 6377,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 5,\n    \"identityHash\": \"871dacadfe3b813019c74fcaff8c4237\",\n    \"e"
  },
  {
    "path": "app/schemas/com.theflexproject.thunder.database.AppDatabase/6.json",
    "chars": 6365,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 6,\n    \"identityHash\": \"e7e8f2094f612b155f61f46396c10450\",\n    \"e"
  },
  {
    "path": "app/schemas/com.theflexproject.thunder.database.AppDatabase/7.json",
    "chars": 6551,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 7,\n    \"identityHash\": \"a3191ca2c9aec41d6069b616bb985e84\",\n    \"e"
  },
  {
    "path": "app/schemas/com.theflexproject.thunder.database.AppDatabase/8.json",
    "chars": 6732,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 8,\n    \"identityHash\": \"f4bba22419bf9b41ada2d7c30d66c102\",\n    \"e"
  },
  {
    "path": "app/schemas/com.theflexproject.thunder.database.AppDatabase/9.json",
    "chars": 6551,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 9,\n    \"identityHash\": \"a3191ca2c9aec41d6069b616bb985e84\",\n    \"e"
  },
  {
    "path": "app/src/androidTest/java/com/theflexproject/thunder/ExampleInstrumentedTest.java",
    "chars": 776,
    "preview": "package com.theflexproject.thunder;\n\nimport static org.junit.Assert.assertEquals;\n\nimport android.content.Context;\n\nimpo"
  },
  {
    "path": "app/src/main/AndroidManifest.xml",
    "chars": 2357,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:to"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/Constants.java",
    "chars": 1039,
    "preview": "package com.theflexproject.thunder;\n\nimport java.util.Random;\n\npublic class Constants {\n    public static final String T"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/MainActivity.java",
    "chars": 7248,
    "preview": "package com.theflexproject.thunder;\n\nimport static com.theflexproject.thunder.utils.UpdateUtils.checkForUpdates;\n\nimport"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/SplashScreenActivity.java",
    "chars": 430,
    "preview": "package com.theflexproject.thunder;\n\nimport android.content.Intent;\nimport android.os.Bundle;\n\nimport androidx.appcompat"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/adapter/ArchivedAdapters/HomeItemAdapter.java",
    "chars": 6788,
    "preview": "//package com.theflexproject.thunder.adapter;\n//\n//import android.content.Context;\n//import android.view.LayoutInflater;"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/adapter/ArchivedAdapters/MovieRecyclerAdapter.java",
    "chars": 2821,
    "preview": "//package com.theflexproject.thunder.adapter;\n//\n//import static com.theflexproject.thunder.Constants.TMDB_IMAGE_BASE_UR"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/adapter/ArchivedAdapters/MovieRecyclerAdapterLibrary.java",
    "chars": 4038,
    "preview": "//package com.theflexproject.thunder.adapter;\n//\n//import android.content.Context;\n//import android.graphics.Color;\n//im"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/adapter/ArchivedAdapters/TVShowRecyclerAdapter.java",
    "chars": 3971,
    "preview": "package com.theflexproject.thunder.adapter.ArchivedAdapters;\n\n//public class MediaAdapter extends RecyclerView.Adapter<T"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/adapter/BannerRecyclerAdapter.java",
    "chars": 2778,
    "preview": "package com.theflexproject.thunder.adapter;\n\nimport static com.theflexproject.thunder.Constants.TMDB_IMAGE_BASE_URL;\n\nim"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/adapter/EpisodeAdapter.java",
    "chars": 7909,
    "preview": "package com.theflexproject.thunder.adapter;\n\nimport android.annotation.SuppressLint;\nimport android.app.Activity;\nimport"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/adapter/FileItemAdapter.java",
    "chars": 11150,
    "preview": "package com.theflexproject.thunder.adapter;\n\nimport static android.content.Context.DOWNLOAD_SERVICE;\n\nimport android.ann"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/adapter/FileItemDialogAdapter.java",
    "chars": 3193,
    "preview": "package com.theflexproject.thunder.adapter;\n\nimport android.view.LayoutInflater;\nimport android.view.View;\nimport androi"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/adapter/FragmentViewPagerAdapter.java",
    "chars": 946,
    "preview": "package com.theflexproject.thunder.adapter;\n\nimport androidx.annotation.NonNull;\nimport androidx.fragment.app.Fragment;\n"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/adapter/IndexAdapter.java",
    "chars": 6181,
    "preview": "package com.theflexproject.thunder.adapter;\n\nimport static com.theflexproject.thunder.utils.IndexUtils.deleteIndex;\nimpo"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/adapter/MediaAdapter.java",
    "chars": 9753,
    "preview": "\npackage com.theflexproject.thunder.adapter;\n\nimport android.content.Context;\nimport android.graphics.Color;\nimport andr"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/adapter/ScaleCenterItemLayoutManager.java",
    "chars": 3167,
    "preview": "package com.theflexproject.thunder.adapter;\n\nimport android.content.Context;\nimport android.view.View;\n\nimport androidx."
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/database/AppDatabase.java",
    "chars": 1339,
    "preview": "package com.theflexproject.thunder.database;\n\nimport androidx.room.AutoMigration;\nimport androidx.room.Database;\nimport "
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/database/Converters.java",
    "chars": 5531,
    "preview": "package com.theflexproject.thunder.database;\n\nimport android.util.Log;\n\nimport androidx.room.TypeConverter;\n\nimport com."
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/database/DatabaseClient.java",
    "chars": 829,
    "preview": "package com.theflexproject.thunder.database;\n\nimport android.content.Context;\n\nimport androidx.room.Room;\n\npublic class "
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/database/EpisodeDao.java",
    "chars": 2906,
    "preview": "package com.theflexproject.thunder.database;\n\nimport androidx.room.Dao;\nimport androidx.room.Delete;\nimport androidx.roo"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/database/IndexLinksDao.java",
    "chars": 921,
    "preview": "package com.theflexproject.thunder.database;\n\nimport androidx.room.Dao;\nimport androidx.room.Delete;\nimport androidx.roo"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/database/MovieDao.java",
    "chars": 3108,
    "preview": "package com.theflexproject.thunder.database;\n\nimport androidx.room.Dao;\nimport androidx.room.Delete;\nimport androidx.roo"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/database/ResFormatDao.java",
    "chars": 449,
    "preview": "package com.theflexproject.thunder.database;\n\nimport androidx.room.Dao;\nimport androidx.room.Delete;\nimport androidx.roo"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/database/TVShowDao.java",
    "chars": 1575,
    "preview": "package com.theflexproject.thunder.database;\n\nimport androidx.room.Dao;\nimport androidx.room.Delete;\nimport androidx.roo"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/database/TVShowSeasonDetailsDao.java",
    "chars": 1186,
    "preview": "package com.theflexproject.thunder.database;\n\nimport androidx.room.Dao;\nimport androidx.room.Delete;\nimport androidx.roo"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/fragments/AddNewIndexFragment.java",
    "chars": 10531,
    "preview": "package com.theflexproject.thunder.fragments;\n\nimport static com.theflexproject.thunder.utils.SendPostRequest.postReques"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/fragments/BaseFragment.java",
    "chars": 498,
    "preview": "package com.theflexproject.thunder.fragments;\n\nimport android.app.Activity;\nimport android.content.Context;\n\nimport andr"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/fragments/ChangeTMDBFragment.java",
    "chars": 4799,
    "preview": "package com.theflexproject.thunder.fragments;\n\nimport static com.theflexproject.thunder.utils.SendGetRequestTMDB.tmdbGet"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/fragments/CustomFileListDialogFragment.java",
    "chars": 5324,
    "preview": "package com.theflexproject.thunder.fragments;\n\nimport android.app.Activity;\nimport android.content.Context;\nimport andro"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/fragments/CustomFileSelectionDialog.java",
    "chars": 651,
    "preview": "//package com.theflexproject.thunder.fragments;\n//\n//import android.os.Bundle;\n//import android.view.LayoutInflater;\n//i"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/fragments/EpisodeDetailsFragment.java",
    "chars": 12596,
    "preview": "package com.theflexproject.thunder.fragments;\n\nimport static com.theflexproject.thunder.Constants.TMDB_BACKDROP_IMAGE_BA"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/fragments/FilesLibraryFragment.java",
    "chars": 2747,
    "preview": "package com.theflexproject.thunder.fragments;\n\nimport android.os.Bundle;\nimport android.util.Log;\nimport android.view.La"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/fragments/HomeFragment.java",
    "chars": 23123,
    "preview": "package com.theflexproject.thunder.fragments;\n\nimport android.os.Bundle;\nimport android.view.LayoutInflater;\nimport andr"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/fragments/LibraryFragment.java",
    "chars": 8711,
    "preview": "package com.theflexproject.thunder.fragments;\n\nimport android.os.Bundle;\nimport android.view.LayoutInflater;\nimport andr"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/fragments/ManageDatabaseFragment.java",
    "chars": 5454,
    "preview": "package com.theflexproject.thunder.fragments;\n\nimport static com.theflexproject.thunder.utils.StorageUtils.verifyStorage"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/fragments/ManageIndexesFragment.java",
    "chars": 2965,
    "preview": "package com.theflexproject.thunder.fragments;\n\nimport android.os.Bundle;\nimport android.view.LayoutInflater;\nimport andr"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/fragments/MovieDetailsFragment.java",
    "chars": 25222,
    "preview": "package com.theflexproject.thunder.fragments;\n\nimport static android.content.Context.DOWNLOAD_SERVICE;\nimport static com"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/fragments/MovieLibraryFragment.java",
    "chars": 3645,
    "preview": "package com.theflexproject.thunder.fragments;\n\nimport android.os.Bundle;\nimport android.util.DisplayMetrics;\nimport andr"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/fragments/SearchFragment.java",
    "chars": 9670,
    "preview": "package com.theflexproject.thunder.fragments;\n\n\nimport android.os.Bundle;\nimport android.text.Editable;\nimport android.t"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/fragments/SeasonDetailsFragment.java",
    "chars": 15203,
    "preview": "package com.theflexproject.thunder.fragments;\n\nimport static com.theflexproject.thunder.Constants.TMDB_BACKDROP_IMAGE_BA"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/fragments/SettingsFragment.java",
    "chars": 8648,
    "preview": "package com.theflexproject.thunder.fragments;\n\nimport android.app.Dialog;\nimport android.content.Context;\nimport android"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/fragments/TvShowDetailsFragment.java",
    "chars": 19510,
    "preview": "package com.theflexproject.thunder.fragments;\n\nimport static com.theflexproject.thunder.Constants.TMDB_BACKDROP_IMAGE_BA"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/fragments/TvShowsLibraryFragment.java",
    "chars": 4503,
    "preview": "package com.theflexproject.thunder.fragments;\n\nimport android.os.Bundle;\nimport android.util.DisplayMetrics;\nimport andr"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/fragments/UpdateAppFragment.java",
    "chars": 2092,
    "preview": "package com.theflexproject.thunder.fragments;\n\nimport android.content.Intent;\nimport android.net.Uri;\nimport android.os."
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/model/Data.java",
    "chars": 415,
    "preview": "package com.theflexproject.thunder.model;\n\nimport java.util.ArrayList;\n\npublic class Data {\n    public ArrayList<File> f"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/model/ExternalIds.java",
    "chars": 2287,
    "preview": "package com.theflexproject.thunder.model;\n\npublic class ExternalIds{\n    public int id;\n    public String imdb_id;\n    p"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/model/FanArt/Clearlogo.java",
    "chars": 948,
    "preview": "package com.theflexproject.thunder.model.FanArt;\n\npublic class Clearlogo {\n    public String id;\n    public String url;\n"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/model/FanArt/FanArtMovieResponseModel.java",
    "chars": 8904,
    "preview": "package com.theflexproject.thunder.model.FanArt;\n\nimport java.util.ArrayList;\n\n\n\npublic class FanArtMovieResponseModel{\n"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/model/FanArt/FanArtTvResponseModel.java",
    "chars": 5874,
    "preview": "package com.theflexproject.thunder.model.FanArt;\n\nimport java.util.ArrayList;\n\n class Characterart{\n    public String id"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/model/FanArt/Hdmovielogo.java",
    "chars": 952,
    "preview": "package com.theflexproject.thunder.model.FanArt;\n\npublic class Hdmovielogo {\n    public String id;\n    public String url"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/model/FanArt/Hdtvlogo.java",
    "chars": 946,
    "preview": "package com.theflexproject.thunder.model.FanArt;\n\npublic class Hdtvlogo {\n    public String id;\n    public String url;\n "
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/model/FanArt/Movielogo.java",
    "chars": 948,
    "preview": "package com.theflexproject.thunder.model.FanArt;\n\npublic class Movielogo {\n    public String id;\n    public String url;\n"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/model/File.java",
    "chars": 1845,
    "preview": "package com.theflexproject.thunder.model;\n\nimport java.util.Date;\n\npublic class File {\n\n    public String id;\n    public"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/model/Genre.java",
    "chars": 642,
    "preview": "package com.theflexproject.thunder.model;\n\npublic class Genre {\n    public int id;\n    public String name;\n\n    @Overrid"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/model/GitHubResponse.java",
    "chars": 2112,
    "preview": "package com.theflexproject.thunder.model;\n\nimport java.util.ArrayList;\nimport java.util.Date;\n\n\nclass Asset{\n    public "
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/model/IndexLink.java",
    "chars": 1522,
    "preview": "package com.theflexproject.thunder.model;\n\nimport androidx.annotation.NonNull;\nimport androidx.room.ColumnInfo;\nimport a"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/model/Movie.java",
    "chars": 10262,
    "preview": "package com.theflexproject.thunder.model;\n\nimport androidx.annotation.NonNull;\nimport androidx.room.ColumnInfo;\nimport a"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/model/MoviesResponseFromTMDB.java",
    "chars": 510,
    "preview": "package com.theflexproject.thunder.model;\n\nimport java.util.ArrayList;\npublic class MoviesResponseFromTMDB {\n    public "
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/model/MyMedia.java",
    "chars": 72,
    "preview": "package com.theflexproject.thunder.model;\n\npublic interface MyMedia {\n}\n"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/model/ProductionCompany.java",
    "chars": 1075,
    "preview": "package com.theflexproject.thunder.model;\n\npublic class ProductionCompany {\n    public int id;\n    public String logo_pa"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/model/ProductionCountry.java",
    "chars": 133,
    "preview": "package com.theflexproject.thunder.model;\n\npublic class ProductionCountry {\n    public String iso_3166_1;\n    public Str"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/model/ResFormat.java",
    "chars": 1246,
    "preview": "package com.theflexproject.thunder.model;\n\n\nimport androidx.annotation.NonNull;\nimport androidx.room.Entity;\nimport andr"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/model/SimpleLink.java",
    "chars": 574,
    "preview": "package com.theflexproject.thunder.model;\n\npublic class SimpleLink{\n    public String status;\n    public String url;\n\n  "
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/model/SpokenLanguage.java",
    "chars": 160,
    "preview": "package com.theflexproject.thunder.model;\n\npublic class SpokenLanguage {\n    public String english_name;\n    public Stri"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/model/TVShowInfo/CreatedBy.java",
    "chars": 209,
    "preview": "package com.theflexproject.thunder.model.TVShowInfo;\n\npublic class CreatedBy {\n    public int id;\n    public String cred"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/model/TVShowInfo/Crew.java",
    "chars": 2741,
    "preview": "package com.theflexproject.thunder.model.TVShowInfo;\n\npublic class Crew {\n    public String department;\n    public Strin"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/model/TVShowInfo/Episode.java",
    "chars": 6878,
    "preview": "package com.theflexproject.thunder.model.TVShowInfo;\n\nimport androidx.annotation.NonNull;\nimport androidx.room.ColumnInf"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/model/TVShowInfo/GuestStar.java",
    "chars": 2743,
    "preview": "package com.theflexproject.thunder.model.TVShowInfo;\n\npublic class GuestStar {\n    public String character;\n    public S"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/model/TVShowInfo/LastEpisodeToAir.java",
    "chars": 3008,
    "preview": "package com.theflexproject.thunder.model.TVShowInfo;\n\npublic class LastEpisodeToAir {\n    public String air_date;\n    pu"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/model/TVShowInfo/Network.java",
    "chars": 1066,
    "preview": "package com.theflexproject.thunder.model.TVShowInfo;\n\npublic class Network {\n    public int id;\n    public String name;\n"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/model/TVShowInfo/Result.java",
    "chars": 3536,
    "preview": "package com.theflexproject.thunder.model.TVShowInfo;\n\nimport java.util.ArrayList;\n\npublic class Result {\n    public Stri"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/model/TVShowInfo/Season.java",
    "chars": 1973,
    "preview": "package com.theflexproject.thunder.model.TVShowInfo;\n\npublic class Season {\n    public String air_date;\n    public int e"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/model/TVShowInfo/TVShow.java",
    "chars": 9560,
    "preview": "package com.theflexproject.thunder.model.TVShowInfo;\n\nimport androidx.annotation.NonNull;\nimport androidx.room.ColumnInf"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/model/TVShowInfo/TVShowSeasonDetails.java",
    "chars": 2721,
    "preview": "\npackage com.theflexproject.thunder.model.TVShowInfo;\n\nimport androidx.annotation.NonNull;\nimport androidx.room.Entity;\n"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/model/TVShowInfo/TVShowsResponseFromTMDB.java",
    "chars": 1174,
    "preview": "package com.theflexproject.thunder.model.TVShowInfo;\n\n\nimport java.util.ArrayList;\n\npublic class TVShowsResponseFromTMDB"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/model/tmdbImages/Backdrop.java",
    "chars": 1376,
    "preview": "package com.theflexproject.thunder.model.tmdbImages;\n\npublic class Backdrop {\n    public double aspect_ratio;\n    public"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/model/tmdbImages/Logo.java",
    "chars": 1372,
    "preview": "package com.theflexproject.thunder.model.tmdbImages;\n\npublic class Logo {\n    public double aspect_ratio;\n    public int"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/model/tmdbImages/Poster.java",
    "chars": 1374,
    "preview": "package com.theflexproject.thunder.model.tmdbImages;\n\npublic class Poster {\n    public double aspect_ratio;\n    public i"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/model/tmdbImages/TMDBImagesResponse.java",
    "chars": 873,
    "preview": "package com.theflexproject.thunder.model.tmdbImages;\n\n\nimport java.util.ArrayList;\n\npublic class TMDBImagesResponse{\n   "
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/player/DemoUtil.java",
    "chars": 4468,
    "preview": "package com.theflexproject.thunder.player;\n\nimport android.content.Context;\n\nimport com.google.android.exoplayer2.Defaul"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/player/PlayerActivity.java",
    "chars": 10352,
    "preview": "package com.theflexproject.thunder.player;\n\nimport android.content.Intent;\nimport android.content.pm.ActivityInfo;\nimpor"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/utils/AnimeNameExtractor.java",
    "chars": 822,
    "preview": "package com.theflexproject.thunder.utils;\n\nimport java.util.regex.Matcher;\nimport java.util.regex.Pattern;\n\npublic class"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/utils/BlurBitmap.java",
    "chars": 6629,
    "preview": "//package com.theflexproject.thunder.utils;\n//\n//import android.graphics.Bitmap;\n//\n//public class BlurBitmap {\n//    pr"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/utils/CheckForUpdates.java",
    "chars": 2913,
    "preview": "package com.theflexproject.thunder.utils;\n\nimport android.util.Log;\n\nimport com.google.gson.Gson;\nimport com.theflexproj"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/utils/IndexUtils.java",
    "chars": 9380,
    "preview": "package com.theflexproject.thunder.utils;\n\nimport static com.theflexproject.thunder.MainActivity.context;\nimport static "
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/utils/MovieQualityExtractor.java",
    "chars": 1336,
    "preview": "package com.theflexproject.thunder.utils;\n\nimport java.util.regex.Pattern;\n\npublic class MovieQualityExtractor {\n    pub"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/utils/MovieTitleExtractor2.java",
    "chars": 6862,
    "preview": "package com.theflexproject.thunder.utils;\n\nimport static com.theflexproject.thunder.utils.ParseUtils.BRACKETS;\nimport st"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/utils/Pair.java",
    "chars": 71,
    "preview": "package com.theflexproject.thunder.utils;\n\n\n\npublic interface Pair {\n}\n"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/utils/PairMovies.java",
    "chars": 838,
    "preview": "package com.theflexproject.thunder.utils;\n\nimport com.theflexproject.thunder.model.Movie;\n\nimport java.util.List;\n\npubli"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/utils/PairTvShows.java",
    "chars": 769,
    "preview": "package com.theflexproject.thunder.utils;\n\nimport com.theflexproject.thunder.model.TVShowInfo.TVShow;\n\nimport java.util."
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/utils/ParseUtils.java",
    "chars": 5177,
    "preview": "package com.theflexproject.thunder.utils;\n\nimport android.util.Log;\nimport android.util.Pair;\n\nimport java.util.regex.Ma"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/utils/PlexMovieExtractor.java",
    "chars": 2039,
    "preview": "package com.theflexproject.thunder.utils;\n\nimport java.util.regex.Matcher;\nimport java.util.regex.Pattern;\n\npublic class"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/utils/RefreshWorker.java",
    "chars": 1639,
    "preview": "package com.theflexproject.thunder.utils;\n\n\nimport static com.theflexproject.thunder.utils.IndexUtils.refreshIndex;\n\nimp"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/utils/SceneMovieTitleExtractor.java",
    "chars": 2286,
    "preview": "package com.theflexproject.thunder.utils;\n\nimport java.util.regex.Matcher;\nimport java.util.regex.Pattern;\n\npublic class"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/utils/SendGetRequestTMDB.java",
    "chars": 54666,
    "preview": "package com.theflexproject.thunder.utils;\n\nimport static com.theflexproject.thunder.Constants.FANART_IMAGE_BASE_URL;\nimp"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/utils/SendPostRequest.java",
    "chars": 42956,
    "preview": "package com.theflexproject.thunder.utils;\n\nimport static com.theflexproject.thunder.Constants.CF_CACHE_TOKEN;\nimport sta"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/utils/SettingsManager.java",
    "chars": 1371,
    "preview": "package com.theflexproject.thunder.utils;\n\n\nimport android.content.Context;\nimport android.content.SharedPreferences;\n\np"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/utils/ShowUtils.java",
    "chars": 8171,
    "preview": "package com.theflexproject.thunder.utils;\n\n\nimport static com.theflexproject.thunder.utils.ParseUtils.getCountryOfOrigin"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/utils/StorageUtils.java",
    "chars": 1251,
    "preview": "package com.theflexproject.thunder.utils;\n\nimport android.Manifest;\nimport android.app.Activity;\nimport android.content."
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/utils/StringUtils.java",
    "chars": 2694,
    "preview": "package com.theflexproject.thunder.utils;\n\nimport java.util.regex.Matcher;\nimport java.util.regex.Pattern;\n\npublic class"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/utils/UpdateUtils.java",
    "chars": 1134,
    "preview": "package com.theflexproject.thunder.utils;\n\nimport androidx.appcompat.app.AppCompatActivity;\n\nimport com.theflexproject.t"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/utils/downloadUtils.java",
    "chars": 1074,
    "preview": "package com.theflexproject.thunder.utils;\n\nimport java.io.DataInputStream;\nimport java.io.DataOutputStream;\nimport java."
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/utils/imageVotesComparator.java",
    "chars": 317,
    "preview": "package com.theflexproject.thunder.utils;\n\nimport com.theflexproject.thunder.model.tmdbImages.Logo;\n\nimport java.util.Co"
  },
  {
    "path": "app/src/main/java/com/theflexproject/thunder/utils/sizetoReadablesize.java",
    "chars": 722,
    "preview": "package com.theflexproject.thunder.utils;\n\nimport java.text.CharacterIterator;\nimport java.text.StringCharacterIterator;"
  },
  {
    "path": "app/src/main/res/anim/fade_in.xml",
    "chars": 723,
    "preview": "<set xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:ordering=\"together\"\n    android:fillAfter=\"f"
  },
  {
    "path": "app/src/main/res/anim/fade_out.xml",
    "chars": 728,
    "preview": "<set xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:fillAfter=\"true\"\n    android:ordering=\"toget"
  },
  {
    "path": "app/src/main/res/anim/from_left.xml",
    "chars": 300,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<set xmlns:android=\"http://schemas.android.com/apk/res/android\">\n\n    <translate\n"
  },
  {
    "path": "app/src/main/res/anim/from_right.xml",
    "chars": 299,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<set xmlns:android=\"http://schemas.android.com/apk/res/android\">\n\n    <translate\n"
  },
  {
    "path": "app/src/main/res/anim/pop_in.xml",
    "chars": 342,
    "preview": "<set xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:fillAfter=\"true\" >\n\n    <scale\n        andro"
  },
  {
    "path": "app/src/main/res/anim/to_left.xml",
    "chars": 300,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<set xmlns:android=\"http://schemas.android.com/apk/res/android\">\n\n    <translate\n"
  },
  {
    "path": "app/src/main/res/anim/to_right.xml",
    "chars": 299,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<set xmlns:android=\"http://schemas.android.com/apk/res/android\">\n\n    <translate\n"
  },
  {
    "path": "app/src/main/res/color/about_item_bg_color.xml",
    "chars": 374,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item a"
  },
  {
    "path": "app/src/main/res/color/button_text_color.xml",
    "chars": 367,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item a"
  },
  {
    "path": "app/src/main/res/color/delete_button_color.xml",
    "chars": 364,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item a"
  },
  {
    "path": "app/src/main/res/color/download_button_bg_color.xml",
    "chars": 367,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item a"
  },
  {
    "path": "app/src/main/res/color/episode_item_bg_color.xml",
    "chars": 364,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item a"
  },
  {
    "path": "app/src/main/res/color/media_item_bg_color.xml",
    "chars": 377,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item a"
  },
  {
    "path": "app/src/main/res/color/switch_bg_color.xml",
    "chars": 369,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item a"
  },
  {
    "path": "app/src/main/res/drawable/bottom_navigation_background.xml",
    "chars": 254,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<shape xmlns:android=\"http://schemas.android.com/apk/res/android\">\n<solid android"
  },
  {
    "path": "app/src/main/res/drawable/bottom_navigation_color_selector.xml",
    "chars": 956,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n        <it"
  },
  {
    "path": "app/src/main/res/drawable/bottom_navigation_item_background.xml",
    "chars": 998,
    "preview": "<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item android:state_checked=\"true\">\n        <l"
  },
  {
    "path": "app/src/main/res/drawable/discord.xml",
    "chars": 1148,
    "preview": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n"
  },
  {
    "path": "app/src/main/res/drawable/gradient_top_bottom_bg.xml",
    "chars": 358,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<shape xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <gradient\n"
  },
  {
    "path": "app/src/main/res/drawable/ic_add.xml",
    "chars": 311,
    "preview": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"24dp\"\n    android:height=\"24dp\"\n\n "
  },
  {
    "path": "app/src/main/res/drawable/ic_add_box.xml",
    "chars": 418,
    "preview": "<vector android:height=\"24dp\" android:tint=\"#FFFFFF\"\n    android:viewportHeight=\"24\" android:viewportWidth=\"24\"\n    andr"
  },
  {
    "path": "app/src/main/res/drawable/ic_change.xml",
    "chars": 863,
    "preview": "<vector android:height=\"24dp\" android:tint=\"#FFFFFF\"\n    android:viewportHeight=\"24\" android:viewportWidth=\"24\"\n    andr"
  },
  {
    "path": "app/src/main/res/drawable/ic_delete.xml",
    "chars": 389,
    "preview": "<vector android:height=\"24dp\" android:tint=\"#FFFEFE\"\n    android:viewportHeight=\"24\" android:viewportWidth=\"24\"\n    andr"
  },
  {
    "path": "app/src/main/res/drawable/ic_download.xml",
    "chars": 413,
    "preview": "<vector android:height=\"24dp\" android:tint=\"#fff\"\n    android:viewportHeight=\"24\" android:viewportWidth=\"24\"\n    android"
  },
  {
    "path": "app/src/main/res/drawable/ic_edit.xml",
    "chars": 4331,
    "preview": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"24dp\"\n    android:height=\"24dp\"\n  "
  },
  {
    "path": "app/src/main/res/drawable/ic_export.xml",
    "chars": 491,
    "preview": "<vector android:height=\"24dp\" android:tint=\"#FFFFFF\"\n    android:viewportHeight=\"24\" android:viewportWidth=\"24\"\n    andr"
  },
  {
    "path": "app/src/main/res/drawable/ic_github.xml",
    "chars": 1155,
    "preview": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"32dp\"\n    android:height=\"32dp\"\n  "
  },
  {
    "path": "app/src/main/res/drawable/ic_home.xml",
    "chars": 398,
    "preview": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"24dp\"\n    android:height=\"24dp\"\n  "
  },
  {
    "path": "app/src/main/res/drawable/ic_import.xml",
    "chars": 467,
    "preview": "<vector android:height=\"24dp\" android:tint=\"#FFFFFF\"\n    android:viewportHeight=\"24\" android:viewportWidth=\"24\"\n    andr"
  },
  {
    "path": "app/src/main/res/drawable/ic_import_export.xml",
    "chars": 359,
    "preview": "<vector android:height=\"24dp\" android:tint=\"#FFFFFF\"\n    android:viewportHeight=\"24\" android:viewportWidth=\"24\"\n    andr"
  },
  {
    "path": "app/src/main/res/drawable/ic_info.xml",
    "chars": 383,
    "preview": "<vector android:height=\"24dp\" android:tint=\"#ffffff\"\n    android:viewportHeight=\"24\" android:viewportWidth=\"24\"\n    andr"
  },
  {
    "path": "app/src/main/res/drawable/ic_library.xml",
    "chars": 443,
    "preview": "<vector android:height=\"24dp\" android:tint=\"#000000\"\n    android:viewportHeight=\"24\" android:viewportWidth=\"24\"\n    andr"
  },
  {
    "path": "app/src/main/res/drawable/ic_list.xml",
    "chars": 600,
    "preview": "<vector android:height=\"24dp\" android:tint=\"#FFFFFF\"\n    android:viewportHeight=\"24\" android:viewportWidth=\"24\"\n    andr"
  },
  {
    "path": "app/src/main/res/drawable/ic_next.xml",
    "chars": 332,
    "preview": "<vector android:height=\"24dp\" android:tint=\"@color/white\"\n    android:viewportHeight=\"24\" android:viewportWidth=\"24\"\n   "
  },
  {
    "path": "app/src/main/res/drawable/ic_play.xml",
    "chars": 301,
    "preview": "<vector android:height=\"24dp\" android:tint=\"@color/white\"\n    android:viewportHeight=\"24\" android:viewportWidth=\"24\"\n\n  "
  },
  {
    "path": "app/src/main/res/drawable/ic_play_rounded.xml",
    "chars": 579,
    "preview": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"24dp\"\n    android:height=\"24dp\"\n  "
  },
  {
    "path": "app/src/main/res/drawable/ic_refresh.xml",
    "chars": 495,
    "preview": "<vector android:height=\"24dp\" android:tint=\"#fff\"\n    android:viewportHeight=\"24\" android:viewportWidth=\"24\"\n    android"
  },
  {
    "path": "app/src/main/res/drawable/ic_search.xml",
    "chars": 706,
    "preview": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"24dp\"\n    android:height=\"24dp\"\n  "
  },
  {
    "path": "app/src/main/res/drawable/ic_settings.xml",
    "chars": 1184,
    "preview": "<vector android:height=\"24dp\" android:tint=\"#FFFFFF\"\n    android:viewportHeight=\"24\" android:viewportWidth=\"24\"\n    andr"
  },
  {
    "path": "app/src/main/res/drawable/ic_update.xml",
    "chars": 589,
    "preview": "<vector android:height=\"24dp\" android:tint=\"#FFFFFF\"\n    android:viewportHeight=\"24\" android:viewportWidth=\"24\"\n    andr"
  },
  {
    "path": "app/src/main/res/drawable/index_link_bg.xml",
    "chars": 189,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<shape xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <solid and"
  },
  {
    "path": "app/src/main/res/drawable/media_item_selector.xml",
    "chars": 806,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n<item\n    a"
  },
  {
    "path": "app/src/main/res/drawable/oval.xml",
    "chars": 524,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<layer-list xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item"
  },
  {
    "path": "app/src/main/res/drawable/play_shape.xml",
    "chars": 681,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n<item andro"
  },
  {
    "path": "app/src/main/res/drawable/rounded_controls_background.xml",
    "chars": 242,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<shape xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:sha"
  },
  {
    "path": "app/src/main/res/drawable/rounded_corner_labels.xml",
    "chars": 225,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<shape xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:sha"
  },
  {
    "path": "app/src/main/res/drawable/search_bg.xml",
    "chars": 585,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n\n\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item"
  },
  {
    "path": "app/src/main/res/drawable/splash_background.xml",
    "chars": 312,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<layer-list xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item"
  },
  {
    "path": "app/src/main/res/drawable/splash_bg_gradient.xml",
    "chars": 266,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<shape xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <gradient\n"
  },
  {
    "path": "app/src/main/res/drawable/switch_ios_selector.xml",
    "chars": 945,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item a"
  },
  {
    "path": "app/src/main/res/drawable/switch_ios_track.xml",
    "chars": 975,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item a"
  },
  {
    "path": "app/src/main/res/drawable/tab_indicator_bg.xml",
    "chars": 290,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<shape xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <gradient "
  }
]

// ... and 61 more files (download for full content)

About this extraction

This page contains the full source code of the anujd64/Thunder GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 261 files (1.2 MB), approximately 285.5k tokens, and a symbol index with 1115 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!