├── .env_example
├── .gitignore
├── .metadata
├── .vscode
└── settings.json
├── LICENSE
├── README.md
├── analysis_options.yaml
├── android
├── .gitignore
├── app
│ ├── build.gradle
│ └── src
│ │ ├── debug
│ │ └── AndroidManifest.xml
│ │ ├── main
│ │ ├── AndroidManifest.xml
│ │ ├── java
│ │ │ └── io
│ │ │ │ └── flutter
│ │ │ │ └── app
│ │ │ │ └── FlutterMultiDexApplication.java
│ │ ├── kotlin
│ │ │ └── app
│ │ │ │ └── animestream
│ │ │ │ └── MainActivity.kt
│ │ └── res
│ │ │ ├── drawable-hdpi
│ │ │ ├── android12splash.png
│ │ │ ├── ic_launcher_background.png
│ │ │ ├── ic_launcher_foreground.png
│ │ │ └── splash.png
│ │ │ ├── drawable-mdpi
│ │ │ ├── android12splash.png
│ │ │ ├── ic_launcher_background.png
│ │ │ ├── ic_launcher_foreground.png
│ │ │ └── splash.png
│ │ │ ├── drawable-night-hdpi
│ │ │ ├── android12splash.png
│ │ │ └── splash.png
│ │ │ ├── drawable-night-mdpi
│ │ │ ├── android12splash.png
│ │ │ └── splash.png
│ │ │ ├── drawable-night-v21
│ │ │ ├── background.png
│ │ │ └── launch_background.xml
│ │ │ ├── drawable-night-xhdpi
│ │ │ ├── android12splash.png
│ │ │ └── splash.png
│ │ │ ├── drawable-night-xxhdpi
│ │ │ ├── android12splash.png
│ │ │ └── splash.png
│ │ │ ├── drawable-night-xxxhdpi
│ │ │ ├── android12splash.png
│ │ │ └── splash.png
│ │ │ ├── drawable-night
│ │ │ ├── background.png
│ │ │ └── launch_background.xml
│ │ │ ├── drawable-v21
│ │ │ ├── background.png
│ │ │ └── launch_background.xml
│ │ │ ├── drawable-xhdpi
│ │ │ ├── android12splash.png
│ │ │ ├── ic_launcher_background.png
│ │ │ ├── ic_launcher_foreground.png
│ │ │ └── splash.png
│ │ │ ├── drawable-xxhdpi
│ │ │ ├── android12splash.png
│ │ │ ├── ic_launcher_background.png
│ │ │ ├── ic_launcher_foreground.png
│ │ │ └── splash.png
│ │ │ ├── drawable-xxxhdpi
│ │ │ ├── android12splash.png
│ │ │ ├── ic_launcher_background.png
│ │ │ ├── ic_launcher_foreground.png
│ │ │ └── splash.png
│ │ │ ├── drawable
│ │ │ ├── background.png
│ │ │ ├── banner.png
│ │ │ └── launch_background.xml
│ │ │ ├── mipmap-anydpi-v26
│ │ │ └── ic_launcher.xml
│ │ │ ├── mipmap-hdpi
│ │ │ └── ic_launcher.png
│ │ │ ├── mipmap-mdpi
│ │ │ └── ic_launcher.png
│ │ │ ├── mipmap-xhdpi
│ │ │ └── ic_launcher.png
│ │ │ ├── mipmap-xxhdpi
│ │ │ └── ic_launcher.png
│ │ │ ├── mipmap-xxxhdpi
│ │ │ └── ic_launcher.png
│ │ │ ├── values-night-v31
│ │ │ └── styles.xml
│ │ │ ├── values-night
│ │ │ └── styles.xml
│ │ │ ├── values-v31
│ │ │ └── styles.xml
│ │ │ └── values
│ │ │ ├── colors.xml
│ │ │ └── styles.xml
│ │ └── profile
│ │ └── AndroidManifest.xml
├── build.gradle
├── gradle.properties
├── gradle
│ └── wrapper
│ │ └── gradle-wrapper.properties
└── settings.gradle
├── changelog.md
├── devtools_options.yaml
├── ios
├── .gitignore
├── Flutter
│ ├── AppFrameworkInfo.plist
│ ├── Debug.xcconfig
│ └── Release.xcconfig
├── Runner.xcodeproj
│ ├── project.pbxproj
│ ├── project.xcworkspace
│ │ ├── contents.xcworkspacedata
│ │ └── xcshareddata
│ │ │ ├── IDEWorkspaceChecks.plist
│ │ │ └── WorkspaceSettings.xcsettings
│ └── xcshareddata
│ │ └── xcschemes
│ │ └── Runner.xcscheme
├── Runner.xcworkspace
│ ├── contents.xcworkspacedata
│ └── xcshareddata
│ │ ├── IDEWorkspaceChecks.plist
│ │ └── WorkspaceSettings.xcsettings
├── Runner
│ ├── AppDelegate.swift
│ ├── Assets.xcassets
│ │ ├── AppIcon.appiconset
│ │ │ ├── Contents.json
│ │ │ ├── Icon-App-1024x1024@1x.png
│ │ │ ├── Icon-App-20x20@1x.png
│ │ │ ├── Icon-App-20x20@2x.png
│ │ │ ├── Icon-App-20x20@3x.png
│ │ │ ├── Icon-App-29x29@1x.png
│ │ │ ├── Icon-App-29x29@2x.png
│ │ │ ├── Icon-App-29x29@3x.png
│ │ │ ├── Icon-App-40x40@1x.png
│ │ │ ├── Icon-App-40x40@2x.png
│ │ │ ├── Icon-App-40x40@3x.png
│ │ │ ├── Icon-App-50x50@1x.png
│ │ │ ├── Icon-App-50x50@2x.png
│ │ │ ├── Icon-App-57x57@1x.png
│ │ │ ├── Icon-App-57x57@2x.png
│ │ │ ├── Icon-App-60x60@2x.png
│ │ │ ├── Icon-App-60x60@3x.png
│ │ │ ├── Icon-App-72x72@1x.png
│ │ │ ├── Icon-App-72x72@2x.png
│ │ │ ├── Icon-App-76x76@1x.png
│ │ │ ├── Icon-App-76x76@2x.png
│ │ │ └── Icon-App-83.5x83.5@2x.png
│ │ ├── LaunchBackground.imageset
│ │ │ ├── Contents.json
│ │ │ ├── background.png
│ │ │ └── darkbackground.png
│ │ └── LaunchImage.imageset
│ │ │ ├── Contents.json
│ │ │ ├── LaunchImage.png
│ │ │ ├── LaunchImage@2x.png
│ │ │ ├── LaunchImage@3x.png
│ │ │ ├── LaunchImageDark.png
│ │ │ ├── LaunchImageDark@2x.png
│ │ │ ├── LaunchImageDark@3x.png
│ │ │ └── README.md
│ ├── Base.lproj
│ │ ├── LaunchScreen.storyboard
│ │ └── Main.storyboard
│ ├── Info.plist
│ └── Runner-Bridging-Header.h
└── RunnerTests
│ └── RunnerTests.swift
├── lib
├── assets
│ ├── fonts
│ │ ├── ARIAL.TTF
│ │ ├── ARIALBD.TTF
│ │ ├── Helvetica-Bold.ttf
│ │ ├── Helvetica.ttf
│ │ ├── NotoSans-Bold.ttf
│ │ ├── NotoSans-Regular.ttf
│ │ ├── NunitoSans_10pt-Bold.ttf
│ │ ├── NunitoSans_10pt-Medium.ttf
│ │ ├── Poppins-Bold.ttf
│ │ ├── Rubik-Bold.ttf
│ │ └── Rubik-Medium.ttf
│ ├── icons
│ │ ├── logo.png
│ │ ├── logo_background.png
│ │ ├── logo_foreground.png
│ │ ├── logo_foreground_splash.png
│ │ └── logo_monochrome.png
│ └── images
│ │ ├── broken_heart.png
│ │ ├── check.png
│ │ ├── chisato.jpeg
│ │ ├── chisato_AI.jpg
│ │ ├── ghost.png
│ │ ├── mitsuha.jpg
│ │ ├── profile_banner.jpg
│ │ └── search.png
├── core
│ ├── anime
│ │ ├── downloader
│ │ │ ├── downloader.dart
│ │ │ └── types.dart
│ │ ├── extractors
│ │ │ ├── kwik.dart
│ │ │ ├── streamwish.dart
│ │ │ └── type.dart
│ │ └── providers
│ │ │ ├── animeProvider.dart
│ │ │ ├── animeonsen.dart
│ │ │ ├── animepahe.dart
│ │ │ ├── aniplay.dart
│ │ │ ├── apRemote.dart
│ │ │ ├── bridge.dart
│ │ │ ├── gojo.dart
│ │ │ ├── providerDetails.dart
│ │ │ ├── providerManager.dart
│ │ │ ├── providerPlugin.dart
│ │ │ ├── registers
│ │ │ ├── html.dart
│ │ │ └── http.dart
│ │ │ └── types.dart
│ ├── app
│ │ ├── logging.dart
│ │ ├── runtimeDatas.dart
│ │ └── update.dart
│ ├── commons
│ │ ├── enums.dart
│ │ ├── extractQuality.dart
│ │ ├── genresAndTags.dart
│ │ ├── subtitleParsers.dart
│ │ ├── types.dart
│ │ └── utils.dart
│ ├── data
│ │ ├── animeSpecificPreference.dart
│ │ ├── hive.dart
│ │ ├── misc.dart
│ │ ├── preferences.dart
│ │ ├── providers.dart
│ │ ├── secureStorage.dart
│ │ ├── settings.dart
│ │ ├── theme.dart
│ │ ├── types.dart
│ │ └── watching.dart
│ ├── database
│ │ ├── anilist
│ │ │ ├── anilist.dart
│ │ │ ├── login.dart
│ │ │ ├── mutations.dart
│ │ │ ├── queries.dart
│ │ │ └── types.dart
│ │ ├── database.dart
│ │ ├── handler
│ │ │ ├── handler.dart
│ │ │ └── syncHandler.dart
│ │ ├── mal
│ │ │ ├── login.dart
│ │ │ ├── mal.dart
│ │ │ ├── mutations.dart
│ │ │ └── types.dart
│ │ ├── simkl
│ │ │ ├── login.dart
│ │ │ ├── mutations.dart
│ │ │ ├── simkl.dart
│ │ │ └── types.dart
│ │ └── types.dart
│ └── news
│ │ └── animenews.dart
├── main.dart
└── ui
│ ├── models
│ ├── bottomSheets
│ │ ├── customControlsSheet.dart
│ │ ├── manualSearchSheet.dart
│ │ ├── mediaListStatus.dart
│ │ └── serverSelectionSheet.dart
│ ├── extensions.dart
│ ├── notification.dart
│ ├── providers
│ │ ├── infoProvider.dart
│ │ ├── playerDataProvider.dart
│ │ ├── playerProvider.dart
│ │ └── themeProvider.dart
│ ├── snackBar.dart
│ ├── sources.dart
│ ├── watchPageUtil.dart
│ └── widgets
│ │ ├── ContextMenu.dart
│ │ ├── appWrapper.dart
│ │ ├── bottomBar.dart
│ │ ├── cards.dart
│ │ ├── cards
│ │ ├── animeCard.dart
│ │ └── animeCardExtended.dart
│ │ ├── clickableItem.dart
│ │ ├── header.dart
│ │ ├── infoPageWidgets
│ │ ├── commonInfo.dart
│ │ ├── continueBoxes.dart
│ │ ├── episodeGrid.dart
│ │ ├── infoSection.dart
│ │ ├── scrollingList.dart
│ │ ├── sourceBoxes.dart
│ │ └── watchSection.dart
│ │ ├── loader.dart
│ │ ├── navRail.dart
│ │ ├── player
│ │ ├── customControls.dart
│ │ ├── desktopControls.dart
│ │ └── playerUtils.dart
│ │ ├── slider.dart
│ │ ├── sourceTile.dart
│ │ ├── subtitles
│ │ ├── subViewer.dart
│ │ ├── subtitle.dart
│ │ ├── subtitleSettings.dart
│ │ └── subtitleText.dart
│ │ └── toggleItem.dart
│ ├── pages
│ ├── Discover.dart
│ ├── genres.dart
│ ├── home.dart
│ ├── info.dart
│ ├── info
│ │ ├── infoDesktop.dart
│ │ └── infoMobile.dart
│ ├── lists.dart
│ ├── mainNav.dart
│ ├── news.dart
│ ├── newsDetail.dart
│ ├── search.dart
│ ├── settingPages
│ │ ├── account.dart
│ │ ├── appInfo.dart
│ │ ├── common.dart
│ │ ├── general.dart
│ │ ├── player.dart
│ │ ├── plugin.dart
│ │ ├── stats.dart
│ │ ├── subtitle.dart
│ │ └── ui.dart
│ ├── settings.dart
│ └── watch.dart
│ └── theme
│ ├── amethyst.dart
│ ├── coldPurple.dart
│ ├── hotPink.dart
│ ├── lime.dart
│ ├── mocha.dart
│ ├── monochrome.dart
│ ├── neonGreen.dart
│ ├── sakura.dart
│ ├── themes.dart
│ └── types.dart
├── linux
├── .gitignore
├── CMakeLists.txt
├── flutter
│ ├── CMakeLists.txt
│ ├── generated_plugin_registrant.cc
│ ├── generated_plugin_registrant.h
│ └── generated_plugins.cmake
├── main.cc
├── my_application.cc
└── my_application.h
├── macos
├── .gitignore
├── Flutter
│ ├── Flutter-Debug.xcconfig
│ ├── Flutter-Release.xcconfig
│ └── GeneratedPluginRegistrant.swift
├── Runner.xcodeproj
│ ├── project.pbxproj
│ ├── project.xcworkspace
│ │ └── xcshareddata
│ │ │ └── IDEWorkspaceChecks.plist
│ └── xcshareddata
│ │ └── xcschemes
│ │ └── Runner.xcscheme
├── Runner.xcworkspace
│ ├── contents.xcworkspacedata
│ └── xcshareddata
│ │ └── IDEWorkspaceChecks.plist
├── Runner
│ ├── AppDelegate.swift
│ ├── Assets.xcassets
│ │ └── AppIcon.appiconset
│ │ │ ├── Contents.json
│ │ │ ├── app_icon_1024.png
│ │ │ ├── app_icon_128.png
│ │ │ ├── app_icon_16.png
│ │ │ ├── app_icon_256.png
│ │ │ ├── app_icon_32.png
│ │ │ ├── app_icon_512.png
│ │ │ └── app_icon_64.png
│ ├── Base.lproj
│ │ └── MainMenu.xib
│ ├── Configs
│ │ ├── AppInfo.xcconfig
│ │ ├── Debug.xcconfig
│ │ ├── Release.xcconfig
│ │ └── Warnings.xcconfig
│ ├── DebugProfile.entitlements
│ ├── Info.plist
│ ├── MainFlutterWindow.swift
│ └── Release.entitlements
└── RunnerTests
│ └── RunnerTests.swift
├── pubspec.lock
├── pubspec.yaml
├── test
└── widget_test.dart
├── web
├── favicon.png
├── icons
│ ├── Icon-192.png
│ ├── Icon-512.png
│ ├── Icon-maskable-192.png
│ └── Icon-maskable-512.png
├── index.html
├── manifest.json
└── splash
│ └── img
│ ├── dark-1x.png
│ ├── dark-2x.png
│ ├── dark-3x.png
│ ├── dark-4x.png
│ ├── light-1x.png
│ ├── light-2x.png
│ ├── light-3x.png
│ └── light-4x.png
└── windows
├── .gitignore
├── CMakeLists.txt
├── flutter
├── CMakeLists.txt
├── generated_plugin_registrant.cc
├── generated_plugin_registrant.h
└── generated_plugins.cmake
└── runner
├── CMakeLists.txt
├── Runner.rc
├── flutter_window.cpp
├── flutter_window.h
├── main.cpp
├── resource.h
├── resources
└── app_icon.ico
├── runner.exe.manifest
├── utils.cpp
├── utils.h
├── win32_window.cpp
└── win32_window.h
/.env_example:
--------------------------------------------------------------------------------
1 | SIMKL_CLIENT_ID="YOUR CLIENT ID"
2 | SIMKL_CLIENT_SECRET="YOUR CLIENT SECRET"
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Miscellaneous
2 | *.class
3 | *.log
4 | *.pyc
5 | *.swp
6 | .DS_Store
7 | .atom/
8 | .buildlog/
9 | .history
10 | .svn/
11 | migrate_working_dir/
12 |
13 | # IntelliJ related
14 | *.iml
15 | *.ipr
16 | *.iws
17 | .idea/
18 |
19 | # The .vscode folder contains launch configuration and tasks you configure in
20 | # VS Code which you may wish to be included in version control, so this line
21 | # is commented out by default.
22 | #.vscode/
23 |
24 | # Flutter/Dart/Pub related
25 | **/doc/api/
26 | **/ios/Flutter/.last_build_id
27 | .dart_tool/
28 | .flutter-plugins
29 | .flutter-plugins-dependencies
30 | .pub-cache/
31 | .pub/
32 | /build/
33 |
34 | # Symbolication related
35 | app.*.symbols
36 |
37 | # Obfuscation related
38 | app.*.map.json
39 |
40 | # Android Studio will place build artifacts here
41 | /android/app/debug
42 | /android/app/profile
43 | /android/app/release
44 |
45 | flutter_*.png
46 |
47 | *.env
48 | *.env.g.dart
49 |
50 | todo.md
--------------------------------------------------------------------------------
/.metadata:
--------------------------------------------------------------------------------
1 | # This file tracks properties of this Flutter project.
2 | # Used by Flutter tool to assess capabilities and perform upgrades etc.
3 | #
4 | # This file should be version controlled and should not be manually edited.
5 |
6 | version:
7 | revision: "db7ef5bf9f59442b0e200a90587e8fa5e0c6336a"
8 | channel: "stable"
9 |
10 | project_type: app
11 |
12 | # Tracks metadata for the flutter migrate command
13 | migration:
14 | platforms:
15 | - platform: root
16 | create_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
17 | base_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
18 | - platform: android
19 | create_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
20 | base_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
21 | - platform: ios
22 | create_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
23 | base_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
24 | - platform: linux
25 | create_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
26 | base_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
27 | - platform: macos
28 | create_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
29 | base_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
30 | - platform: web
31 | create_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
32 | base_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
33 | - platform: windows
34 | create_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
35 | base_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
36 |
37 | # User provided section
38 |
39 | # List of Local paths (relative to this file) that should be
40 | # ignored by the migrate tool.
41 | #
42 | # Files that are not part of the templates will be ignored by default.
43 | unmanaged_files:
44 | - 'lib/main.dart'
45 | - 'ios/Runner.xcodeproj/project.pbxproj'
46 |
--------------------------------------------------------------------------------
/.vscode/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | "java.configuration.updateBuildConfiguration": "interactive",
3 | "cmake.ignoreCMakeListsMissing": true
4 | }
--------------------------------------------------------------------------------
/analysis_options.yaml:
--------------------------------------------------------------------------------
1 | # This file configures the analyzer, which statically analyzes Dart code to
2 | # check for errors, warnings, and lints.
3 | #
4 | # The issues identified by the analyzer are surfaced in the UI of Dart-enabled
5 | # IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be
6 | # invoked from the command line by running `flutter analyze`.
7 |
8 | # The following line activates a set of recommended lints for Flutter apps,
9 | # packages, and plugins designed to encourage good coding practices.
10 |
11 | linter:
12 | # The lint rules applied to this project can be customized in the
13 | # section below to disable rules from the `package:flutter_lints/flutter.yaml`
14 | # included above or to enable additional rules. A list of all available lints
15 | # and their documentation is published at https://dart.dev/lints.
16 | #
17 | # Instead of disabling a lint rule for the entire project in the
18 | # section below, it can also be suppressed for a single line of code
19 | # or a specific dart file by using the `// ignore: name_of_lint` and
20 | # `// ignore_for_file: name_of_lint` syntax on the line or in the file
21 | # producing the lint.
22 | rules:
23 | # avoid_print: false # Uncomment to disable the `avoid_print` rule
24 | # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule
25 |
26 | # Additional information about this file can be found at
27 | # https://dart.dev/guides/language/analysis-options
28 |
--------------------------------------------------------------------------------
/android/.gitignore:
--------------------------------------------------------------------------------
1 | gradle-wrapper.jar
2 | /.gradle
3 | /captures/
4 | /gradlew
5 | /gradlew.bat
6 | /local.properties
7 | GeneratedPluginRegistrant.java
8 |
9 | # Remember to never publicly share your keystore.
10 | # See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
11 | key.properties
12 | **/*.keystore
13 | **/*.jks
14 |
15 | #cxx folder
16 | **/.cxx
17 |
--------------------------------------------------------------------------------
/android/app/build.gradle:
--------------------------------------------------------------------------------
1 | plugins {
2 | id "com.android.application"
3 | id "kotlin-android"
4 | id "dev.flutter.flutter-gradle-plugin"
5 | }
6 |
7 | def localProperties = new Properties()
8 | def localPropertiesFile = rootProject.file('local.properties')
9 | if (localPropertiesFile.exists()) {
10 | localPropertiesFile.withReader('UTF-8') { reader ->
11 | localProperties.load(reader)
12 | }
13 | }
14 |
15 | def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
16 | if (flutterVersionCode == null) {
17 | flutterVersionCode = '1'
18 | }
19 |
20 | def flutterVersionName = localProperties.getProperty('flutter.versionName')
21 | if (flutterVersionName == null) {
22 | flutterVersionName = '1.0'
23 | }
24 |
25 | def keystoreProperties = new Properties()
26 |
27 | def keystorePropertiesFile = rootProject.file('key.properties')
28 | if(keystorePropertiesFile.exists()) {
29 | keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
30 | }
31 |
32 | android {
33 | namespace "app.animestream"
34 | compileSdkVersion 35
35 | ndkVersion flutter.ndkVersion
36 |
37 | compileOptions {
38 | sourceCompatibility JavaVersion.VERSION_17
39 | targetCompatibility JavaVersion.VERSION_17
40 | }
41 |
42 | kotlinOptions {
43 | jvmTarget = JavaVersion.VERSION_17
44 | }
45 |
46 | sourceSets {
47 | main.java.srcDirs += 'src/main/kotlin'
48 | }
49 |
50 | defaultConfig {
51 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
52 | applicationId "app.animestream"
53 | // You can update the following values to match your application needs.
54 | // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
55 | minSdkVersion 24
56 | targetSdkVersion 34
57 | versionCode flutterVersionCode.toInteger()
58 | versionName flutterVersionName
59 | }
60 |
61 | signingConfigs {
62 | release {
63 | keyAlias keystoreProperties['keyAlias']
64 | keyPassword keystoreProperties['keyPassword']
65 | storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
66 | storePassword keystoreProperties['storePassword']
67 | }
68 | }
69 |
70 | buildTypes {
71 | release {
72 | // TODO: Add your own signing config for the release build.
73 | // Signing with the debug keys for now, so `flutter run --release` works.
74 | signingConfig signingConfigs.release
75 | }
76 |
77 | debug {
78 | applicationIdSuffix ".debug"
79 | }
80 | }
81 | }
82 |
83 | flutter {
84 | source '../..'
85 | }
86 |
87 | dependencies {
88 | implementation 'androidx.multidex:multidex:2.0.1'
89 | }
90 |
--------------------------------------------------------------------------------
/android/app/src/debug/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/android/app/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
18 |
26 |
30 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
44 |
45 |
46 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
61 |
64 |
65 |
--------------------------------------------------------------------------------
/android/app/src/main/java/io/flutter/app/FlutterMultiDexApplication.java:
--------------------------------------------------------------------------------
1 | // Generated file.
2 | //
3 | // If you wish to remove Flutter's multidex support, delete this entire file.
4 | //
5 | // Modifications to this file should be done in a copy under a different name
6 | // as this file may be regenerated.
7 |
8 | package io.flutter.app;
9 |
10 | import android.app.Application;
11 | import android.content.Context;
12 | import androidx.annotation.CallSuper;
13 | import androidx.multidex.MultiDex;
14 |
15 | /**
16 | * Extension of {@link android.app.Application}, adding multidex support.
17 | */
18 | public class FlutterMultiDexApplication extends Application {
19 | @Override
20 | @CallSuper
21 | protected void attachBaseContext(Context base) {
22 | super.attachBaseContext(base);
23 | MultiDex.install(this);
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/android/app/src/main/kotlin/app/animestream/MainActivity.kt:
--------------------------------------------------------------------------------
1 | package app.animestream
2 |
3 | import android.widget.Toast
4 | import android.os.Looper
5 | import android.os.Handler
6 | import androidx.annotation.NonNull
7 |
8 | import io.flutter.embedding.android.FlutterActivity
9 | import io.flutter.embedding.engine.FlutterEngine
10 | import io.flutter.plugin.common.MethodChannel
11 |
12 |
13 | class MainActivity: FlutterActivity() {
14 |
15 | override fun configureFlutterEngine(@NonNull flutterEngine: FlutterEngine) {
16 | super.configureFlutterEngine(flutterEngine)
17 | MethodChannel(flutterEngine.dartExecutor.binaryMessenger, "animestream.app/utils").setMethodCallHandler {
18 | call, result ->
19 | if(call.method == "showToast") {
20 | val message = call.argument("message")
21 | if(message == null || message.length == 0) {
22 | result.error("MESSAGE_NOT_PROVIDED", "MESSAGE IS NULL OR EMPTY", null)
23 | }
24 | showToast(message ?: "")
25 | } else {
26 | result.notImplemented()
27 | }
28 | }
29 | }
30 |
31 | fun showToast(message: String) {
32 | Handler(Looper.getMainLooper()).post {
33 | Toast.makeText(this, message, Toast.LENGTH_SHORT).show();
34 | }
35 | }
36 | }
37 |
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-hdpi/android12splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/drawable-hdpi/android12splash.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-hdpi/ic_launcher_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/drawable-hdpi/ic_launcher_background.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-hdpi/ic_launcher_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/drawable-hdpi/ic_launcher_foreground.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-hdpi/splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/drawable-hdpi/splash.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-mdpi/android12splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/drawable-mdpi/android12splash.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-mdpi/ic_launcher_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/drawable-mdpi/ic_launcher_background.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-mdpi/ic_launcher_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/drawable-mdpi/ic_launcher_foreground.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-mdpi/splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/drawable-mdpi/splash.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-night-hdpi/android12splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/drawable-night-hdpi/android12splash.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-night-hdpi/splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/drawable-night-hdpi/splash.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-night-mdpi/android12splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/drawable-night-mdpi/android12splash.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-night-mdpi/splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/drawable-night-mdpi/splash.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-night-v21/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/drawable-night-v21/background.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-night-v21/launch_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 | -
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-night-xhdpi/android12splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/drawable-night-xhdpi/android12splash.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-night-xhdpi/splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/drawable-night-xhdpi/splash.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-night-xxhdpi/android12splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/drawable-night-xxhdpi/android12splash.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-night-xxhdpi/splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/drawable-night-xxhdpi/splash.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-night-xxxhdpi/android12splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/drawable-night-xxxhdpi/android12splash.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-night-xxxhdpi/splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/drawable-night-xxxhdpi/splash.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-night/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/drawable-night/background.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-night/launch_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 | -
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-v21/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/drawable-v21/background.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-v21/launch_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 | -
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-xhdpi/android12splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/drawable-xhdpi/android12splash.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-xhdpi/ic_launcher_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/drawable-xhdpi/ic_launcher_background.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-xhdpi/ic_launcher_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/drawable-xhdpi/ic_launcher_foreground.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-xhdpi/splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/drawable-xhdpi/splash.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-xxhdpi/android12splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/drawable-xxhdpi/android12splash.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-xxhdpi/ic_launcher_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/drawable-xxhdpi/ic_launcher_background.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-xxhdpi/splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/drawable-xxhdpi/splash.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-xxxhdpi/android12splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/drawable-xxxhdpi/android12splash.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-xxxhdpi/ic_launcher_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/drawable-xxxhdpi/ic_launcher_background.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-xxxhdpi/splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/drawable-xxxhdpi/splash.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/drawable/background.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable/banner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/drawable/banner.png
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable/launch_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 | -
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
8 |
9 |
10 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/values-night-v31/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
12 |
18 |
21 |
22 |
--------------------------------------------------------------------------------
/android/app/src/main/res/values-night/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
13 |
19 |
22 |
23 |
--------------------------------------------------------------------------------
/android/app/src/main/res/values-v31/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
12 |
18 |
21 |
22 |
--------------------------------------------------------------------------------
/android/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #1a1718
4 |
--------------------------------------------------------------------------------
/android/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
13 |
19 |
22 |
23 |
--------------------------------------------------------------------------------
/android/app/src/profile/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/android/build.gradle:
--------------------------------------------------------------------------------
1 | allprojects {
2 | repositories {
3 | google()
4 | mavenCentral()
5 | }
6 | }
7 |
8 | rootProject.buildDir = '../build'
9 | subprojects {
10 | project.buildDir = "${rootProject.buildDir}/${project.name}"
11 | }
12 | subprojects {
13 | project.evaluationDependsOn(':app')
14 | }
15 |
16 | tasks.register("clean", Delete) {
17 | delete rootProject.buildDir
18 | }
19 |
--------------------------------------------------------------------------------
/android/gradle.properties:
--------------------------------------------------------------------------------
1 | org.gradle.jvmargs=-Xmx4G
2 | android.useAndroidX=true
3 | android.enableJetifier=true
4 |
--------------------------------------------------------------------------------
/android/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | distributionBase=GRADLE_USER_HOME
2 | distributionPath=wrapper/dists
3 | zipStoreBase=GRADLE_USER_HOME
4 | zipStorePath=wrapper/dists
5 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-all.zip
6 |
--------------------------------------------------------------------------------
/android/settings.gradle:
--------------------------------------------------------------------------------
1 | pluginManagement {
2 | def flutterSdkPath = {
3 | def properties = new Properties()
4 | file("local.properties").withInputStream { properties.load(it) }
5 | def flutterSdkPath = properties.getProperty("flutter.sdk")
6 | assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
7 | return flutterSdkPath
8 | }
9 | settings.ext.flutterSdkPath = flutterSdkPath()
10 |
11 | includeBuild("${settings.ext.flutterSdkPath}/packages/flutter_tools/gradle")
12 |
13 | repositories {
14 | google()
15 | mavenCentral()
16 | gradlePluginPortal()
17 | }
18 |
19 | plugins {
20 | id "dev.flutter.flutter-gradle-plugin" version "1.0.0" apply false
21 | }
22 | }
23 |
24 | plugins {
25 | id "dev.flutter.flutter-plugin-loader" version "1.0.0"
26 | id "com.android.application" version "8.3.0" apply false
27 | id "org.jetbrains.kotlin.android" version "1.9.0" apply false
28 | }
29 |
30 | include ":app"
31 |
--------------------------------------------------------------------------------
/changelog.md:
--------------------------------------------------------------------------------
1 | # Changelog 1.3.6 -> 1.3.7
2 |
3 | **Ah yes, Yet another patch n fix update!**
4 |
5 | ## New Features & Changes
6 |
7 | - Few more controls towards subtitles
8 | - New theme! (atp thats all im capable of. I hope its the final theme)
9 | - Few modifications for list page in Windows
10 | - Sub/Dub toggle! (availability will depend on luck & server!)
11 | - Added a quick access to subtitles page on holding subtitle button from watch page.
12 | - No new sources (hehe! will add one next time if the stars align)
13 | - Minor UI tweaks
14 |
15 | ## Fixes
16 |
17 | - Fixed **ASS** subtitle parsing. (Fixes flawed subs in AnimeOnsen)
18 | - Fixed AniPlay (please dont break now :pray:)
19 | - Fixed Gojo
20 | - To Fix animepahe, use a VPN!
21 | - Fixed subtitles not being updated when navigated to new episode
22 | - Fixed more white screen issues. (I really hope this is the last one.)
23 | - Fixed some UI inconsistancies
24 |
25 | ## Issues
26 |
27 | - Windows version is lacking sub/dub toggle. It will be there in next patch, im redoing the info page UI on windows.
28 | - The apk size bulked by ~1 MB due to added fonts for subtitle customisation. (Is this even an issue?)
29 |
30 | **Yep! That's it.**
31 |
32 | I fr forgot to track the changes, so there are changes in the app which arent mentioned above!
33 | Plugins has to wait :)
34 |
35 | Spent an awful lot of time on plugins. And yes, it didnt work out like I expected. It did work,
36 | just not according to my style and expectations! So, this is a small bug sqash update!
37 |
38 | If you are still encountering the white/gray screen issue or any other issues, submit it on github issues, discord or reddit.
39 |
40 | As always, love y'all and Until Next Version,
41 | **Cya!**
42 |
--------------------------------------------------------------------------------
/devtools_options.yaml:
--------------------------------------------------------------------------------
1 | extensions:
2 | - provider: true
--------------------------------------------------------------------------------
/ios/.gitignore:
--------------------------------------------------------------------------------
1 | **/dgph
2 | *.mode1v3
3 | *.mode2v3
4 | *.moved-aside
5 | *.pbxuser
6 | *.perspectivev3
7 | **/*sync/
8 | .sconsign.dblite
9 | .tags*
10 | **/.vagrant/
11 | **/DerivedData/
12 | Icon?
13 | **/Pods/
14 | **/.symlinks/
15 | profile
16 | xcuserdata
17 | **/.generated/
18 | Flutter/App.framework
19 | Flutter/Flutter.framework
20 | Flutter/Flutter.podspec
21 | Flutter/Generated.xcconfig
22 | Flutter/ephemeral/
23 | Flutter/app.flx
24 | Flutter/app.zip
25 | Flutter/flutter_assets/
26 | Flutter/flutter_export_environment.sh
27 | ServiceDefinitions.json
28 | Runner/GeneratedPluginRegistrant.*
29 |
30 | # Exceptions to above rules.
31 | !default.mode1v3
32 | !default.mode2v3
33 | !default.pbxuser
34 | !default.perspectivev3
35 |
--------------------------------------------------------------------------------
/ios/Flutter/AppFrameworkInfo.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | App
9 | CFBundleIdentifier
10 | io.flutter.flutter.app
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | App
15 | CFBundlePackageType
16 | FMWK
17 | CFBundleShortVersionString
18 | 1.0
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | 1.0
23 | MinimumOSVersion
24 | 11.0
25 |
26 |
27 |
--------------------------------------------------------------------------------
/ios/Flutter/Debug.xcconfig:
--------------------------------------------------------------------------------
1 | #include "Generated.xcconfig"
2 |
--------------------------------------------------------------------------------
/ios/Flutter/Release.xcconfig:
--------------------------------------------------------------------------------
1 | #include "Generated.xcconfig"
2 |
--------------------------------------------------------------------------------
/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | IDEDidComputeMac32BitWarning
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | PreviewsEnabled
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/ios/Runner.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | IDEDidComputeMac32BitWarning
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | PreviewsEnabled
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/ios/Runner/AppDelegate.swift:
--------------------------------------------------------------------------------
1 | import UIKit
2 | import Flutter
3 |
4 | @UIApplicationMain
5 | @objc class AppDelegate: FlutterAppDelegate {
6 | override func application(
7 | _ application: UIApplication,
8 | didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
9 | ) -> Bool {
10 | GeneratedPluginRegistrant.register(with: self)
11 | return super.application(application, didFinishLaunchingWithOptions: launchOptions)
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "size" : "20x20",
5 | "idiom" : "iphone",
6 | "filename" : "Icon-App-20x20@2x.png",
7 | "scale" : "2x"
8 | },
9 | {
10 | "size" : "20x20",
11 | "idiom" : "iphone",
12 | "filename" : "Icon-App-20x20@3x.png",
13 | "scale" : "3x"
14 | },
15 | {
16 | "size" : "29x29",
17 | "idiom" : "iphone",
18 | "filename" : "Icon-App-29x29@1x.png",
19 | "scale" : "1x"
20 | },
21 | {
22 | "size" : "29x29",
23 | "idiom" : "iphone",
24 | "filename" : "Icon-App-29x29@2x.png",
25 | "scale" : "2x"
26 | },
27 | {
28 | "size" : "29x29",
29 | "idiom" : "iphone",
30 | "filename" : "Icon-App-29x29@3x.png",
31 | "scale" : "3x"
32 | },
33 | {
34 | "size" : "40x40",
35 | "idiom" : "iphone",
36 | "filename" : "Icon-App-40x40@2x.png",
37 | "scale" : "2x"
38 | },
39 | {
40 | "size" : "40x40",
41 | "idiom" : "iphone",
42 | "filename" : "Icon-App-40x40@3x.png",
43 | "scale" : "3x"
44 | },
45 | {
46 | "size" : "60x60",
47 | "idiom" : "iphone",
48 | "filename" : "Icon-App-60x60@2x.png",
49 | "scale" : "2x"
50 | },
51 | {
52 | "size" : "60x60",
53 | "idiom" : "iphone",
54 | "filename" : "Icon-App-60x60@3x.png",
55 | "scale" : "3x"
56 | },
57 | {
58 | "size" : "20x20",
59 | "idiom" : "ipad",
60 | "filename" : "Icon-App-20x20@1x.png",
61 | "scale" : "1x"
62 | },
63 | {
64 | "size" : "20x20",
65 | "idiom" : "ipad",
66 | "filename" : "Icon-App-20x20@2x.png",
67 | "scale" : "2x"
68 | },
69 | {
70 | "size" : "29x29",
71 | "idiom" : "ipad",
72 | "filename" : "Icon-App-29x29@1x.png",
73 | "scale" : "1x"
74 | },
75 | {
76 | "size" : "29x29",
77 | "idiom" : "ipad",
78 | "filename" : "Icon-App-29x29@2x.png",
79 | "scale" : "2x"
80 | },
81 | {
82 | "size" : "40x40",
83 | "idiom" : "ipad",
84 | "filename" : "Icon-App-40x40@1x.png",
85 | "scale" : "1x"
86 | },
87 | {
88 | "size" : "40x40",
89 | "idiom" : "ipad",
90 | "filename" : "Icon-App-40x40@2x.png",
91 | "scale" : "2x"
92 | },
93 | {
94 | "size" : "76x76",
95 | "idiom" : "ipad",
96 | "filename" : "Icon-App-76x76@1x.png",
97 | "scale" : "1x"
98 | },
99 | {
100 | "size" : "76x76",
101 | "idiom" : "ipad",
102 | "filename" : "Icon-App-76x76@2x.png",
103 | "scale" : "2x"
104 | },
105 | {
106 | "size" : "83.5x83.5",
107 | "idiom" : "ipad",
108 | "filename" : "Icon-App-83.5x83.5@2x.png",
109 | "scale" : "2x"
110 | },
111 | {
112 | "size" : "1024x1024",
113 | "idiom" : "ios-marketing",
114 | "filename" : "Icon-App-1024x1024@1x.png",
115 | "scale" : "1x"
116 | }
117 | ],
118 | "info" : {
119 | "version" : 1,
120 | "author" : "xcode"
121 | }
122 | }
123 |
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchBackground.imageset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "filename" : "background.png",
5 | "idiom" : "universal"
6 | },
7 | {
8 | "appearances" : [
9 | {
10 | "appearance" : "luminosity",
11 | "value" : "dark"
12 | }
13 | ],
14 | "filename" : "darkbackground.png",
15 | "idiom" : "universal"
16 | }
17 | ],
18 | "info" : {
19 | "author" : "xcode",
20 | "version" : 1
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchBackground.imageset/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/ios/Runner/Assets.xcassets/LaunchBackground.imageset/background.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchBackground.imageset/darkbackground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/ios/Runner/Assets.xcassets/LaunchBackground.imageset/darkbackground.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "filename" : "LaunchImage.png",
5 | "idiom" : "universal",
6 | "scale" : "1x"
7 | },
8 | {
9 | "appearances" : [
10 | {
11 | "appearance" : "luminosity",
12 | "value" : "dark"
13 | }
14 | ],
15 | "filename" : "LaunchImageDark.png",
16 | "idiom" : "universal",
17 | "scale" : "1x"
18 | },
19 | {
20 | "filename" : "LaunchImage@2x.png",
21 | "idiom" : "universal",
22 | "scale" : "2x"
23 | },
24 | {
25 | "appearances" : [
26 | {
27 | "appearance" : "luminosity",
28 | "value" : "dark"
29 | }
30 | ],
31 | "filename" : "LaunchImageDark@2x.png",
32 | "idiom" : "universal",
33 | "scale" : "2x"
34 | },
35 | {
36 | "filename" : "LaunchImage@3x.png",
37 | "idiom" : "universal",
38 | "scale" : "3x"
39 | },
40 | {
41 | "appearances" : [
42 | {
43 | "appearance" : "luminosity",
44 | "value" : "dark"
45 | }
46 | ],
47 | "filename" : "LaunchImageDark@3x.png",
48 | "idiom" : "universal",
49 | "scale" : "3x"
50 | }
51 | ],
52 | "info" : {
53 | "author" : "xcode",
54 | "version" : 1
55 | }
56 | }
57 |
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImageDark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImageDark.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImageDark@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImageDark@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImageDark@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImageDark@3x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md:
--------------------------------------------------------------------------------
1 | # Launch Screen Assets
2 |
3 | You can customize the launch screen with your own desired assets by replacing the image files in this directory.
4 |
5 | You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images.
--------------------------------------------------------------------------------
/ios/Runner/Base.lproj/LaunchScreen.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
--------------------------------------------------------------------------------
/ios/Runner/Base.lproj/Main.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/ios/Runner/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | $(DEVELOPMENT_LANGUAGE)
7 | CFBundleDisplayName
8 | Animestream
9 | CFBundleExecutable
10 | $(EXECUTABLE_NAME)
11 | CFBundleIdentifier
12 | $(PRODUCT_BUNDLE_IDENTIFIER)
13 | CFBundleInfoDictionaryVersion
14 | 6.0
15 | CFBundleName
16 | animestream
17 | CFBundlePackageType
18 | APPL
19 | CFBundleShortVersionString
20 | $(FLUTTER_BUILD_NAME)
21 | CFBundleSignature
22 | ????
23 | CFBundleVersion
24 | $(FLUTTER_BUILD_NUMBER)
25 | LSRequiresIPhoneOS
26 |
27 | UILaunchStoryboardName
28 | LaunchScreen
29 | UIMainStoryboardFile
30 | Main
31 | UISupportedInterfaceOrientations
32 |
33 | UIInterfaceOrientationPortrait
34 | UIInterfaceOrientationLandscapeLeft
35 | UIInterfaceOrientationLandscapeRight
36 |
37 | UISupportedInterfaceOrientations~ipad
38 |
39 | UIInterfaceOrientationPortrait
40 | UIInterfaceOrientationPortraitUpsideDown
41 | UIInterfaceOrientationLandscapeLeft
42 | UIInterfaceOrientationLandscapeRight
43 |
44 | CADisableMinimumFrameDurationOnPhone
45 |
46 | UIApplicationSupportsIndirectInputEvents
47 |
48 | UIStatusBarHidden
49 |
50 |
51 |
52 |
--------------------------------------------------------------------------------
/ios/Runner/Runner-Bridging-Header.h:
--------------------------------------------------------------------------------
1 | #import "GeneratedPluginRegistrant.h"
2 |
--------------------------------------------------------------------------------
/ios/RunnerTests/RunnerTests.swift:
--------------------------------------------------------------------------------
1 | import Flutter
2 | import UIKit
3 | import XCTest
4 |
5 | class RunnerTests: XCTestCase {
6 |
7 | func testExample() {
8 | // If you add code to the Runner application, consider adding tests here.
9 | // See https://developer.apple.com/documentation/xctest for more information about using XCTest.
10 | }
11 |
12 | }
13 |
--------------------------------------------------------------------------------
/lib/assets/fonts/ARIAL.TTF:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/lib/assets/fonts/ARIAL.TTF
--------------------------------------------------------------------------------
/lib/assets/fonts/ARIALBD.TTF:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/lib/assets/fonts/ARIALBD.TTF
--------------------------------------------------------------------------------
/lib/assets/fonts/Helvetica-Bold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/lib/assets/fonts/Helvetica-Bold.ttf
--------------------------------------------------------------------------------
/lib/assets/fonts/Helvetica.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/lib/assets/fonts/Helvetica.ttf
--------------------------------------------------------------------------------
/lib/assets/fonts/NotoSans-Bold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/lib/assets/fonts/NotoSans-Bold.ttf
--------------------------------------------------------------------------------
/lib/assets/fonts/NotoSans-Regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/lib/assets/fonts/NotoSans-Regular.ttf
--------------------------------------------------------------------------------
/lib/assets/fonts/NunitoSans_10pt-Bold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/lib/assets/fonts/NunitoSans_10pt-Bold.ttf
--------------------------------------------------------------------------------
/lib/assets/fonts/NunitoSans_10pt-Medium.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/lib/assets/fonts/NunitoSans_10pt-Medium.ttf
--------------------------------------------------------------------------------
/lib/assets/fonts/Poppins-Bold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/lib/assets/fonts/Poppins-Bold.ttf
--------------------------------------------------------------------------------
/lib/assets/fonts/Rubik-Bold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/lib/assets/fonts/Rubik-Bold.ttf
--------------------------------------------------------------------------------
/lib/assets/fonts/Rubik-Medium.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/lib/assets/fonts/Rubik-Medium.ttf
--------------------------------------------------------------------------------
/lib/assets/icons/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/lib/assets/icons/logo.png
--------------------------------------------------------------------------------
/lib/assets/icons/logo_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/lib/assets/icons/logo_background.png
--------------------------------------------------------------------------------
/lib/assets/icons/logo_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/lib/assets/icons/logo_foreground.png
--------------------------------------------------------------------------------
/lib/assets/icons/logo_foreground_splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/lib/assets/icons/logo_foreground_splash.png
--------------------------------------------------------------------------------
/lib/assets/icons/logo_monochrome.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/lib/assets/icons/logo_monochrome.png
--------------------------------------------------------------------------------
/lib/assets/images/broken_heart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/lib/assets/images/broken_heart.png
--------------------------------------------------------------------------------
/lib/assets/images/check.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/lib/assets/images/check.png
--------------------------------------------------------------------------------
/lib/assets/images/chisato.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/lib/assets/images/chisato.jpeg
--------------------------------------------------------------------------------
/lib/assets/images/chisato_AI.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/lib/assets/images/chisato_AI.jpg
--------------------------------------------------------------------------------
/lib/assets/images/ghost.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/lib/assets/images/ghost.png
--------------------------------------------------------------------------------
/lib/assets/images/mitsuha.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/lib/assets/images/mitsuha.jpg
--------------------------------------------------------------------------------
/lib/assets/images/profile_banner.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/lib/assets/images/profile_banner.jpg
--------------------------------------------------------------------------------
/lib/assets/images/search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/frostnova721/animestream/e8cef5a4ad576728bf02290e1cce83eed00fd09a/lib/assets/images/search.png
--------------------------------------------------------------------------------
/lib/core/anime/downloader/types.dart:
--------------------------------------------------------------------------------
1 | import 'dart:typed_data';
2 |
3 | class DownloadingItem {
4 | final int id;
5 | bool downloading;
6 | final String? streamLink;
7 | final String? fileName;
8 | final int retryAttempts;
9 | final int parallelBatches;
10 |
11 | DownloadingItem({
12 | required this.id,
13 | required this.downloading,
14 | this.streamLink,
15 | this.fileName,
16 | this.retryAttempts = 5,
17 | this.parallelBatches = 5,
18 | });
19 | }
20 |
21 | class BufferItem {
22 | final int index;
23 | final Uint8List buffer;
24 |
25 | BufferItem({required this.index, required this.buffer});
26 | }
27 |
--------------------------------------------------------------------------------
/lib/core/anime/extractors/kwik.dart:
--------------------------------------------------------------------------------
1 | import 'package:animestream/core/anime/extractors/type.dart';
2 | import 'package:animestream/core/anime/providers/types.dart';
3 | import 'package:http/http.dart';
4 | import 'package:html/parser.dart' as html;
5 |
6 | class Kwik extends AnimeExtractor {
7 | Future> extract(String streamUrl, {String? quality, String? server}) async {
8 | final res = await get(Uri.parse(streamUrl), headers: {'referer': 'https://animepahe.ru/'});
9 | final doc = html.parse(res.body);
10 | String? streamLink;
11 | doc.querySelectorAll("script").forEach((element) {
12 | final html = element.innerHtml;
13 | final regex = RegExp(r'eval\(function\(p,a,c,k,e,d\)');
14 | final match = regex.firstMatch(html);
15 | if (match != null) {
16 | final unpacked = JsUnpack(html).unpack();
17 | final dataMatch = RegExp(r"const\s+source\s*=\s*'([^']+\.m3u8)'").allMatches(unpacked).firstOrNull?[1] ?? '';
18 | streamLink = dataMatch.replaceAll(RegExp(r'{|}|\"|file:'), '');
19 | }
20 | });
21 |
22 | if (streamLink == null) throw new Exception("UNABLE TO EXTRACT KWIK STREAM");
23 |
24 | return [VideoStream(quality: quality ?? "single", link: streamLink!, isM3u8: streamLink!.endsWith("m3u8"), server: server ?? "Kwik", backup: false)];
25 | }
26 | }
27 |
28 | class JsUnpack {
29 | final String source;
30 | const JsUnpack(this.source);
31 | static const alphabet = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
32 |
33 | ///Unpacks P.A.C.K.E.R. packed js code
34 | String unpack() {
35 | final lst = _filterargs();
36 | final String payload = lst[0].replaceAll("\\\\", "\\").replaceAll("\\'", "'");
37 | final List symtab = lst[1];
38 | String source = payload;
39 | final reg = RegExp(
40 | r"\b\w+\b",
41 | ).allMatches(payload);
42 | int correct = 0;
43 | for (RegExpMatch element in reg) {
44 | final word = payload.substring(element.start, element.end);
45 | String lookUp = "";
46 | final v = toBase10(word);
47 | if (v < symtab.length) {
48 | try {
49 | lookUp = symtab[v];
50 | } catch (_) {}
51 | if (lookUp.isEmpty) lookUp = word;
52 | } else {
53 | lookUp = word;
54 | }
55 | source = source.replaceRange(element.start + correct, element.start + word.length + correct, lookUp);
56 | correct += lookUp.length - (element.end - element.start);
57 | }
58 | return _replaceStrings(source);
59 | }
60 |
61 | String _replaceStrings(String source) {
62 | var re = RegExp(r'var *(_\w+)=\["(.*?)"];', dotAll: true).firstMatch(source);
63 | if (re == null) {
64 | return source;
65 | }
66 | final strings = re.group(1)!;
67 | return source.substring(strings.length);
68 | }
69 |
70 | List _filterargs() {
71 | final all = RegExp(r"}\s*\('(.*)',\s*(.*?),\s*(\d+),\s*'(.*?)'\.split\('\|'\)").firstMatch(source);
72 | if (all == null) {
73 | throw 'Corrupted p.a.c.k.e.r. data.';
74 | }
75 | return [all.group(1), all.group(4)!.split("|"), int.tryParse(all.group(2)!) ?? 36, int.parse(all.group(3)!)];
76 | }
77 |
78 | int toBase10(String string) {
79 | return string.split('').fold(0, (int out, char) {
80 | int charIndex = alphabet.indexOf(char);
81 | return out * alphabet.length + charIndex;
82 | });
83 | }
84 | }
85 |
--------------------------------------------------------------------------------
/lib/core/anime/extractors/type.dart:
--------------------------------------------------------------------------------
1 | import 'package:animestream/core/anime/providers/types.dart';
2 |
3 | abstract class AnimeExtractor {
4 | Future> extract(String streamUrl);
5 | }
6 |
--------------------------------------------------------------------------------
/lib/core/anime/providers/animeProvider.dart:
--------------------------------------------------------------------------------
1 | import 'package:animestream/core/anime/providers/types.dart';
2 |
3 | abstract class AnimeProvider {
4 | /**Name of the provider */
5 | String get providerName;
6 |
7 | //should provide search results with keys: name, image, alias
8 | Future>> search(String query);
9 |
10 | /**
11 | * Should return a list of string that is the link to get to that episode
12 | */
13 | Future>> getAnimeEpisodeLink(String aliasId, { bool dub = false });
14 |
15 | /**
16 | * The link format returned in the [getAnimeEpisodeLink] method should be
17 | * parsed in this method
18 | */
19 | Future getStreams(String episodeId, Function(List, bool) update, { bool dub = false, String? metadata });
20 |
21 | /**
22 | * The link format returned in the [getAnimeEpisodeLink] method should be
23 | * parsed in this method
24 | *
25 | * This method should return a list of [VideoStream] objects through callbacks containing direct download
26 | * links to the episode
27 | */
28 | Future getDownloadSources(String episodeUrl, Function(List, bool) update, {bool dub = false, String? metadata});
29 | }
30 |
--------------------------------------------------------------------------------
/lib/core/anime/providers/providerDetails.dart:
--------------------------------------------------------------------------------
1 | // ignore_for_file: public_member_api_docs, sort_constructors_first
2 | import 'dart:convert';
3 |
4 | class ProviderDetails {
5 | final String name;
6 | final String identifier;
7 | final String version;
8 | final String? icon;
9 | final String? code;
10 | final bool supportDownloads;
11 |
12 | ProviderDetails({
13 | required this.name,
14 | required this.identifier,
15 | required this.version,
16 | this.icon,
17 | this.code,
18 | this.supportDownloads = false,
19 | });
20 |
21 | ProviderDetails copyWith({
22 | String? name,
23 | String? identifier,
24 | String? version,
25 | String? icon,
26 | String? code,
27 | bool? supportDownloads,
28 | }) {
29 | return ProviderDetails(
30 | name: name ?? this.name,
31 | identifier: identifier ?? this.identifier,
32 | version: version ?? this.version,
33 | icon: icon ?? this.icon,
34 | code: code ?? this.code,
35 | supportDownloads: supportDownloads ?? this.supportDownloads,
36 | );
37 | }
38 |
39 | Map toMap() {
40 | return {
41 | 'name': name,
42 | 'identifier': identifier,
43 | 'version': version,
44 | 'icon': icon,
45 | 'code': code,
46 | 'supportDownloads': supportDownloads,
47 | };
48 | }
49 |
50 | factory ProviderDetails.fromMap(Map map) {
51 | return ProviderDetails(
52 | name: map['name'] as String,
53 | identifier: map['identifier'] as String,
54 | version: map['version'] as String,
55 | icon: map['icon'] != null ? map['icon'] as String : null,
56 | code: map['code'] != null ? map['code'] as String : null,
57 | supportDownloads: map['supportDownloads'] as bool,
58 | );
59 | }
60 |
61 | String toJson() => json.encode(toMap());
62 |
63 | factory ProviderDetails.fromJson(String source) => ProviderDetails.fromMap(json.decode(source) as Map);
64 |
65 | @override
66 | String toString() {
67 | return 'ProviderDetails(name: $name, identifier: $identifier, version: $version, icon: $icon, code: $code, supportDownloads: $supportDownloads)';
68 | }
69 |
70 | @override
71 | int get hashCode {
72 | return name.hashCode ^
73 | identifier.hashCode ^
74 | version.hashCode ^
75 | icon.hashCode ^
76 | code.hashCode ^
77 | supportDownloads.hashCode;
78 | }
79 |
80 | @override
81 | bool operator ==(covariant ProviderDetails other) {
82 | if (identical(this, other)) return true;
83 |
84 | return
85 | other.name == name &&
86 | other.identifier == identifier &&
87 | other.version == version &&
88 | other.icon == icon &&
89 | other.code == code &&
90 | other.supportDownloads == supportDownloads;
91 | }
92 | }
93 |
--------------------------------------------------------------------------------
/lib/core/anime/providers/providerManager.dart:
--------------------------------------------------------------------------------
1 | import 'dart:convert';
2 |
3 | import 'package:animestream/core/anime/providers/providerDetails.dart';
4 | import 'package:animestream/core/data/providers.dart';
5 | import 'package:http/http.dart';
6 |
7 | class ProviderManager {
8 | static const String _fileBaseUrl = "https://raw.githubusercontent.com/frostnova721/provins/master/lib/providers/";
9 |
10 | static const String _indexUrl = "https://raw.githubusercontent.com/frostnova721/provins/master/index.json";
11 |
12 | final _providersPreferences = ProvidersPreferences();
13 |
14 | /// Get the saved(Installed) provider's code.
15 | Future getSavedProviderCode(String providerIdentifier) async {
16 | return (await _providersPreferences.getProvider(providerIdentifier))?.code;
17 | }
18 |
19 | /// Get the list of all saved providers.
20 | Future> getSavedProviders() async {
21 | return await _providersPreferences.listAllProviders();
22 | }
23 |
24 | /// Save/Install a provider.
25 | Future saveProvider(ProviderDetails provider) async {
26 | return await _providersPreferences.saveProvider(provider);
27 | }
28 |
29 | /// Remove/Uninstall a provider.
30 | Future removeProvider(ProviderDetails provider) async {
31 | return await _providersPreferences.removeProvider(provider.identifier);
32 | }
33 |
34 | /// Fetch the code for the provider from the repo.
35 | Future fetchProviderCode(String providerIdentifier) async {
36 | final url = _fileBaseUrl + "$providerIdentifier/$providerIdentifier.dart";
37 | final res = await get(Uri.parse(url));
38 | return res.statusCode == 200 ? res.body : null;
39 | }
40 |
41 | /// Yeah, fetch the repo.
42 | Future> fetchProvidersRepo() async {
43 | final availableProviders = await get(Uri.parse(_indexUrl));
44 | final List jsoned = jsonDecode(availableProviders.body) as List;
45 | final List