├── .gitignore
├── .metadata
├── README.md
├── analysis_options.yaml
├── android
├── .gitignore
├── app
│ ├── build.gradle
│ ├── proguard-rules.pro
│ └── src
│ │ ├── debug
│ │ └── AndroidManifest.xml
│ │ ├── main
│ │ ├── AndroidManifest.xml
│ │ ├── ic_launcher-playstore.png
│ │ ├── kotlin
│ │ │ └── com
│ │ │ │ └── muhua
│ │ │ │ └── mu_hua_movie
│ │ │ │ ├── InstallUtil.kt
│ │ │ │ ├── MainActivity.kt
│ │ │ │ └── MyApp.kt
│ │ └── res
│ │ │ ├── drawable-v21
│ │ │ └── launch_background.xml
│ │ │ ├── drawable
│ │ │ ├── ic_launcher_foreground.xml
│ │ │ └── launch_background.xml
│ │ │ ├── mipmap-anydpi-v26
│ │ │ ├── ic_launcher.xml
│ │ │ └── ic_launcher_round.xml
│ │ │ ├── mipmap-hdpi
│ │ │ ├── ic_launcher.png
│ │ │ └── ic_launcher_round.png
│ │ │ ├── mipmap-mdpi
│ │ │ ├── ic_launcher.png
│ │ │ └── ic_launcher_round.png
│ │ │ ├── mipmap-xhdpi
│ │ │ ├── ic_launcher.png
│ │ │ └── ic_launcher_round.png
│ │ │ ├── mipmap-xxhdpi
│ │ │ ├── ic_launcher.png
│ │ │ └── ic_launcher_round.png
│ │ │ ├── mipmap-xxxhdpi
│ │ │ ├── ic_launcher.png
│ │ │ └── ic_launcher_round.png
│ │ │ ├── values-night
│ │ │ └── styles.xml
│ │ │ ├── values
│ │ │ ├── ic_launcher_background.xml
│ │ │ └── styles.xml
│ │ │ └── xml
│ │ │ └── filepaths.xml
│ │ └── profile
│ │ └── AndroidManifest.xml
├── build.gradle
├── gradle.properties
├── gradle
│ └── wrapper
│ │ └── gradle-wrapper.properties
└── settings.gradle
├── ios
├── .gitignore
├── Flutter
│ ├── AppFrameworkInfo.plist
│ ├── Debug.xcconfig
│ ├── Flutter.podspec
│ ├── Generated.xcconfig
│ ├── Release.xcconfig
│ └── flutter_export_environment.sh
├── Podfile
├── Podfile.lock
├── 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
│ └── xcuserdata
│ │ └── jeck.xcuserdatad
│ │ └── UserInterfaceState.xcuserstate
└── 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-60x60@2x.png
│ │ ├── Icon-App-60x60@3x.png
│ │ ├── Icon-App-76x76@1x.png
│ │ ├── Icon-App-76x76@2x.png
│ │ └── Icon-App-83.5x83.5@2x.png
│ └── LaunchImage.imageset
│ │ ├── Contents.json
│ │ ├── LaunchImage.png
│ │ ├── LaunchImage@2x.png
│ │ ├── LaunchImage@3x.png
│ │ └── README.md
│ ├── Base.lproj
│ ├── LaunchScreen.storyboard
│ └── Main.storyboard
│ ├── GeneratedPluginRegistrant.h
│ ├── GeneratedPluginRegistrant.m
│ ├── Info.plist
│ └── Runner-Bridging-Header.h
├── lib
├── generated
│ └── json
│ │ ├── base
│ │ ├── json_convert_content.dart
│ │ └── json_field.dart
│ │ ├── response_base_entity.g.dart
│ │ ├── update_info_entity.g.dart
│ │ ├── vd_class.g.dart
│ │ └── vod_info_entity.g.dart
├── getx_bindings
│ └── my_bindings.dart
├── main.dart
├── model
│ ├── entity
│ │ ├── response_base_entity.dart
│ │ ├── update_info_entity.dart
│ │ ├── vd_class.dart
│ │ └── vod_info_entity.dart
│ └── repository
│ │ ├── net_base_repository.dart
│ │ ├── net_repository.dart
│ │ └── net_versoin_update_repository.dart
├── modules
│ ├── index
│ │ ├── home_con.dart
│ │ └── home_screen.dart
│ ├── player
│ │ ├── my_better_player_data_source.dart
│ │ ├── play_url_entity.dart
│ │ ├── player_con.dart
│ │ └── player_screen.dart
│ ├── source
│ │ ├── source_entity.dart
│ │ ├── source_entity.g.dart
│ │ ├── source_mange_con.dart
│ │ └── source_mange_screen.dart
│ └── splash
│ │ ├── splash_con.dart
│ │ └── splash_screen.dart
├── native_channel
│ └── native_channel.dart
├── routes
│ ├── app_page.dart
│ └── app_routes.dart
├── service
│ └── my_service.dart
├── utils
│ └── EsoImageCacheManager.dart
└── version_update.json
├── 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
├── Podfile
├── Podfile.lock
├── 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
├── pubspec.lock
├── pubspec.yaml
├── screenshot
├── Screenshot_1.jpg
└── Screenshot_2.jpg
├── talkingdata_sdk_plugin
├── CHANGELOG.md
├── analysis_options.yaml
├── android
│ ├── .gitignore
│ ├── build.gradle
│ ├── gradle
│ │ └── wrapper
│ │ │ ├── gradle-wrapper.jar
│ │ │ └── gradle-wrapper.properties
│ ├── gradlew
│ ├── gradlew.bat
│ ├── libs
│ │ └── SaaS_TalkingDataSDK_Android_V5.0.13.jar
│ ├── settings.gradle
│ └── src
│ │ └── main
│ │ ├── AndroidManifest.xml
│ │ └── java
│ │ └── com
│ │ └── talkingdata
│ │ └── talkingdata_sdk_plugin
│ │ └── TalkingDataSDKPlugin.java
├── ios
│ ├── .gitignore
│ ├── Assets
│ │ └── libTalkingDataSDK.a
│ ├── Classes
│ │ ├── TalkingDataSDK.h
│ │ ├── TalkingDataSDKPlugin.h
│ │ └── TalkingDataSDKPlugin.m
│ └── talkingdata_sdk_plugin.podspec
├── lib
│ └── talkingdata_sdk_plugin.dart
├── 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
└── 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
/.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 | .packages
31 | .pub-cache/
32 | .pub/
33 | /build/
34 |
35 | # Symbolication related
36 | app.*.symbols
37 |
38 | # Obfuscation related
39 | app.*.map.json
40 |
41 | # Android Studio will place build artifacts here
42 | /android/app/debug
43 | /android/app/profile
44 | /android/app/release
45 |
--------------------------------------------------------------------------------
/.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.
5 |
6 | version:
7 | revision: 12cb4eb7a009f52b347b62ade7cb4854b926af72
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: 12cb4eb7a009f52b347b62ade7cb4854b926af72
17 | base_revision: 12cb4eb7a009f52b347b62ade7cb4854b926af72
18 | - platform: android
19 | create_revision: 12cb4eb7a009f52b347b62ade7cb4854b926af72
20 | base_revision: 12cb4eb7a009f52b347b62ade7cb4854b926af72
21 | - platform: ios
22 | create_revision: 12cb4eb7a009f52b347b62ade7cb4854b926af72
23 | base_revision: 12cb4eb7a009f52b347b62ade7cb4854b926af72
24 | - platform: linux
25 | create_revision: 12cb4eb7a009f52b347b62ade7cb4854b926af72
26 | base_revision: 12cb4eb7a009f52b347b62ade7cb4854b926af72
27 | - platform: macos
28 | create_revision: 12cb4eb7a009f52b347b62ade7cb4854b926af72
29 | base_revision: 12cb4eb7a009f52b347b62ade7cb4854b926af72
30 | - platform: web
31 | create_revision: 12cb4eb7a009f52b347b62ade7cb4854b926af72
32 | base_revision: 12cb4eb7a009f52b347b62ade7cb4854b926af72
33 | - platform: windows
34 | create_revision: 12cb4eb7a009f52b347b62ade7cb4854b926af72
35 | base_revision: 12cb4eb7a009f52b347b62ade7cb4854b926af72
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 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 | 一个影视采集播放APP,仅做技术交流,请一定点个小星星
3 |
4 | 安卓手机可以下载 [APK安装包](https://github.com/alun1/mu_hua_movie/releases/download/v1.0.0/app-release.apk)
5 |
6 | 苹果手机自己编译咯
7 |
8 | 
9 |
10 | 
11 |
12 |
13 |
--------------------------------------------------------------------------------
/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 | include: package:flutter_lints/flutter.yaml
11 |
12 | linter:
13 | # The lint rules applied to this project can be customized in the
14 | # section below to disable rules from the `package:flutter_lints/flutter.yaml`
15 | # included above or to enable additional rules. A list of all available lints
16 | # and their documentation is published at
17 | # https://dart-lang.github.io/linter/lints/index.html.
18 | #
19 | # Instead of disabling a lint rule for the entire project in the
20 | # section below, it can also be suppressed for a single line of code
21 | # or a specific dart file by using the `// ignore: name_of_lint` and
22 | # `// ignore_for_file: name_of_lint` syntax on the line or in the file
23 | # producing the lint.
24 | rules:
25 | # avoid_print: false # Uncomment to disable the `avoid_print` rule
26 | # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule
27 |
28 | # Additional information about this file can be found at
29 | # https://dart.dev/guides/language/analysis-options
30 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/android/app/build.gradle:
--------------------------------------------------------------------------------
1 | def localProperties = new Properties()
2 | def localPropertiesFile = rootProject.file('local.properties')
3 | if (localPropertiesFile.exists()) {
4 | localPropertiesFile.withReader('UTF-8') { reader ->
5 | localProperties.load(reader)
6 | }
7 | }
8 |
9 | def flutterRoot = localProperties.getProperty('flutter.sdk')
10 | if (flutterRoot == null) {
11 | throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
12 | }
13 |
14 | def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
15 | if (flutterVersionCode == null) {
16 | flutterVersionCode = '1'
17 | }
18 |
19 | def flutterVersionName = localProperties.getProperty('flutter.versionName')
20 | if (flutterVersionName == null) {
21 | flutterVersionName = '1.0'
22 | }
23 |
24 | apply plugin: 'com.android.application'
25 | apply plugin: 'kotlin-android'
26 | apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
27 |
28 | android {
29 | signingConfigs {
30 | debug {
31 | storeFile file('../yuanbo.jks')
32 | storePassword '4434123456'
33 | keyAlias 'key0'
34 | keyPassword '4434123456'
35 | }
36 | release {
37 | storeFile file('../yuanbo.jks')
38 | storePassword '4434123456'
39 | keyAlias 'key0'
40 | keyPassword '4434123456'
41 | }
42 | }
43 | compileSdkVersion flutter.compileSdkVersion
44 | ndkVersion flutter.ndkVersion
45 |
46 | compileOptions {
47 | sourceCompatibility JavaVersion.VERSION_1_8
48 | targetCompatibility JavaVersion.VERSION_1_8
49 | }
50 |
51 | kotlinOptions {
52 | jvmTarget = '1.8'
53 | }
54 |
55 | sourceSets {
56 | main.java.srcDirs += 'src/main/kotlin'
57 | }
58 |
59 | defaultConfig {
60 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
61 | applicationId "com.muhua.mu_hua_movie"
62 | // You can update the following values to match your application needs.
63 | // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
64 | minSdkVersion flutter.minSdkVersion
65 | targetSdkVersion flutter.targetSdkVersion
66 | versionCode flutterVersionCode.toInteger()
67 | versionName flutterVersionName
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 | // minifyEnabled true
76 | // shrinkResources true
77 | // proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
78 | }
79 |
80 | debug {
81 | // TODO: Add your own signing config for the release build.
82 | // Signing with the debug keys for now, so `flutter run --release` works.
83 | signingConfig signingConfigs.debug
84 | // minifyEnabled true
85 | // shrinkResources true
86 | // proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
87 | }
88 | }
89 | }
90 |
91 | flutter {
92 | source '../..'
93 | }
94 |
95 | dependencies {
96 | implementation fileTree(dir:'libs', include: ['*.jar'])
97 | implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
98 | }
99 |
--------------------------------------------------------------------------------
/android/app/proguard-rules.pro:
--------------------------------------------------------------------------------
1 | -dontwarn com.tendcloud.tenddata.**
2 | -keep class com.tendcloud.** {*;}
3 | -keep public class com.tendcloud.** { public protected *;}
4 |
--------------------------------------------------------------------------------
/android/app/src/debug/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/android/app/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
20 |
28 |
32 |
35 |
36 |
37 |
38 |
39 |
40 |
42 |
45 |
50 |
53 |
54 |
55 |
56 |
57 |
--------------------------------------------------------------------------------
/android/app/src/main/ic_launcher-playstore.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alun1/mu_hua_movie/a07e9b5078b6ed4399667aca08e15ef07240f2dc/android/app/src/main/ic_launcher-playstore.png
--------------------------------------------------------------------------------
/android/app/src/main/kotlin/com/muhua/mu_hua_movie/InstallUtil.kt:
--------------------------------------------------------------------------------
1 | package com.muhua.mu_hua_movie
2 |
3 | import android.app.Activity
4 | import android.content.Intent
5 | import android.net.Uri
6 | import android.os.Build
7 | import android.text.TextUtils
8 | import android.util.Log
9 | import android.widget.Toast
10 | import androidx.core.content.FileProvider
11 |
12 | import java.io.File
13 |
14 | class InstallUtil {
15 |
16 | fun installApk(context: Activity, filePath: String, requestCode: Int) {
17 | Log.e("TAG", "install apk$filePath")
18 | if (TextUtils.isEmpty(filePath)) {
19 | Toast.makeText(context, "安装路径出错", Toast.LENGTH_SHORT).show()
20 | return
21 | }
22 | val file = File(filePath)
23 | var uri = Uri.fromFile(file) ?: throw RuntimeException("安装路径不正确")
24 | if (Build.VERSION.SDK_INT >= 24) {
25 | uri = FileProvider.getUriForFile(context, "${context.packageName}.FileProvider", file)
26 | }
27 | val intent = Intent()
28 | if (Build.VERSION.SDK_INT < 24) {
29 | intent.action = Intent.ACTION_INSTALL_PACKAGE
30 | intent.flags = Intent.FLAG_ACTIVITY_NEW_TASK
31 | intent.setDataAndType(uri, "application/vnd.android.package-archive")
32 | intent.putExtra(Intent.EXTRA_RETURN_RESULT, true)
33 | intent.putExtra(Intent.EXTRA_NOT_UNKNOWN_SOURCE, true)
34 | intent.putExtra(Intent.EXTRA_ALLOW_REPLACE, true)
35 | } else {
36 | intent.action = Intent.ACTION_INSTALL_PACKAGE
37 | intent.data = uri
38 | intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION)
39 | intent.putExtra(Intent.EXTRA_RETURN_RESULT, true)
40 | intent.putExtra(Intent.EXTRA_NOT_UNKNOWN_SOURCE, true)
41 | intent.putExtra(Intent.EXTRA_ALLOW_REPLACE, true)
42 | }
43 | try {
44 | context.startActivityForResult(intent, requestCode)
45 | } catch (e: Exception) {
46 | e.message?.let { Log.e("TAG", it) }
47 | }
48 | }
49 | }
--------------------------------------------------------------------------------
/android/app/src/main/kotlin/com/muhua/mu_hua_movie/MainActivity.kt:
--------------------------------------------------------------------------------
1 | package com.muhua.mu_hua_movie
2 |
3 | import io.flutter.embedding.android.FlutterActivity
4 | import io.flutter.embedding.engine.FlutterEngine
5 | import io.flutter.plugin.common.MethodChannel
6 |
7 | class MainActivity : FlutterActivity() {
8 | override fun configureFlutterEngine(flutterEngine: FlutterEngine) {
9 | super.configureFlutterEngine(flutterEngine)
10 | MethodChannel(
11 | flutterEngine.dartExecutor.binaryMessenger,
12 | "native_channel"
13 | ).setMethodCallHandler { call, result ->
14 | when (call.method) {
15 | "installApk" -> {
16 | InstallUtil().installApk(this, call.arguments as String, 10001)
17 | }
18 | }
19 |
20 | }
21 |
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/android/app/src/main/kotlin/com/muhua/mu_hua_movie/MyApp.kt:
--------------------------------------------------------------------------------
1 | package com.muhua.mu_hua_movie
2 |
3 | import com.talkingdata.talkingdata_sdk_plugin.TalkingDataSDKPlugin
4 | import io.flutter.app.FlutterApplication
5 |
6 | class MyApp : FlutterApplication() {
7 | override fun onCreate() {
8 | super.onCreate()
9 | TalkingDataSDKPlugin.setContext(this)
10 | }
11 | }
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-v21/launch_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
12 |
13 |
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable/ic_launcher_foreground.xml:
--------------------------------------------------------------------------------
1 |
8 |
12 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable/launch_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | -
8 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alun1/mu_hua_movie/a07e9b5078b6ed4399667aca08e15ef07240f2dc/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alun1/mu_hua_movie/a07e9b5078b6ed4399667aca08e15ef07240f2dc/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alun1/mu_hua_movie/a07e9b5078b6ed4399667aca08e15ef07240f2dc/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alun1/mu_hua_movie/a07e9b5078b6ed4399667aca08e15ef07240f2dc/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alun1/mu_hua_movie/a07e9b5078b6ed4399667aca08e15ef07240f2dc/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alun1/mu_hua_movie/a07e9b5078b6ed4399667aca08e15ef07240f2dc/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alun1/mu_hua_movie/a07e9b5078b6ed4399667aca08e15ef07240f2dc/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alun1/mu_hua_movie/a07e9b5078b6ed4399667aca08e15ef07240f2dc/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alun1/mu_hua_movie/a07e9b5078b6ed4399667aca08e15ef07240f2dc/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alun1/mu_hua_movie/a07e9b5078b6ed4399667aca08e15ef07240f2dc/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/android/app/src/main/res/values-night/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
15 |
18 |
19 |
--------------------------------------------------------------------------------
/android/app/src/main/res/values/ic_launcher_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #009688
4 |
--------------------------------------------------------------------------------
/android/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
15 |
18 |
19 |
--------------------------------------------------------------------------------
/android/app/src/main/res/xml/filepaths.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/android/app/src/profile/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/android/build.gradle:
--------------------------------------------------------------------------------
1 | buildscript {
2 | ext.kotlin_version = '1.8.0'
3 | repositories {
4 | // google()
5 | // mavenCentral()
6 | maven {
7 | url 'https://maven.aliyun.com/repository/public/'
8 | }
9 | maven {
10 | url 'https://maven.aliyun.com/repository/central/'
11 | }
12 | maven {
13 | url 'https://maven.aliyun.com/repository/google/'
14 | }
15 | maven {
16 | url 'https://maven.aliyun.com/repository/gradle-plugin/'
17 | }
18 | }
19 |
20 | dependencies {
21 | classpath 'com.android.tools.build:gradle:7.4.2'
22 | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
23 | }
24 | }
25 |
26 | allprojects {
27 | repositories {
28 | // google()
29 | // mavenCentral()
30 | maven {
31 | url 'https://maven.aliyun.com/repository/public/'
32 | }
33 | maven {
34 | url 'https://maven.aliyun.com/repository/central/'
35 | }
36 | maven {
37 | url 'https://maven.aliyun.com/repository/google/'
38 | }
39 | maven {
40 | url 'https://maven.aliyun.com/repository/gradle-plugin/'
41 | }
42 | }
43 | }
44 |
45 | rootProject.buildDir = '../build'
46 | subprojects {
47 | project.buildDir = "${rootProject.buildDir}/${project.name}"
48 | }
49 | subprojects {
50 | project.evaluationDependsOn(':app')
51 | }
52 |
53 | task clean(type: Delete) {
54 | delete rootProject.buildDir
55 | }
56 |
--------------------------------------------------------------------------------
/android/gradle.properties:
--------------------------------------------------------------------------------
1 | org.gradle.jvmargs=-Xmx1536M
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-7.5-all.zip
6 |
--------------------------------------------------------------------------------
/android/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 |
3 | def localPropertiesFile = new File(rootProject.projectDir, "local.properties")
4 | def properties = new Properties()
5 |
6 | assert localPropertiesFile.exists()
7 | localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) }
8 |
9 | def flutterSdkPath = properties.getProperty("flutter.sdk")
10 | assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
11 | apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle"
12 |
--------------------------------------------------------------------------------
/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? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"
2 | #include "Generated.xcconfig"
3 |
--------------------------------------------------------------------------------
/ios/Flutter/Flutter.podspec:
--------------------------------------------------------------------------------
1 | #
2 | # NOTE: This podspec is NOT to be published. It is only used as a local source!
3 | # This is a generated file; do not edit or check into version control.
4 | #
5 |
6 | Pod::Spec.new do |s|
7 | s.name = 'Flutter'
8 | s.version = '1.0.0'
9 | s.summary = 'A UI toolkit for beautiful and fast apps.'
10 | s.homepage = 'https://flutter.dev'
11 | s.license = { :type => 'BSD' }
12 | s.author = { 'Flutter Dev Team' => 'flutter-dev@googlegroups.com' }
13 | s.source = { :git => 'https://github.com/flutter/engine', :tag => s.version.to_s }
14 | s.ios.deployment_target = '11.0'
15 | # Framework linking is handled by Flutter tooling, not CocoaPods.
16 | # Add a placeholder to satisfy `s.dependency 'Flutter'` plugin podspecs.
17 | s.vendored_frameworks = 'path/to/nothing'
18 | end
19 |
--------------------------------------------------------------------------------
/ios/Flutter/Generated.xcconfig:
--------------------------------------------------------------------------------
1 | // This is a generated file; do not edit or check into version control.
2 | FLUTTER_ROOT=/Users/jeck/Library/Android/flutter
3 | FLUTTER_APPLICATION_PATH=/Users/jeck/AndroidStudioProjects/mu_hua_movie
4 | COCOAPODS_PARALLEL_CODE_SIGN=true
5 | FLUTTER_TARGET=/Users/jeck/AndroidStudioProjects/mu_hua_movie/lib/main.dart
6 | FLUTTER_BUILD_DIR=build
7 | FLUTTER_BUILD_NAME=1.0.0
8 | FLUTTER_BUILD_NUMBER=1
9 | EXCLUDED_ARCHS[sdk=iphonesimulator*]=i386 arm64
10 | EXCLUDED_ARCHS[sdk=iphoneos*]=armv7
11 | DART_DEFINES=Zmx1dHRlci5pbnNwZWN0b3Iuc3RydWN0dXJlZEVycm9ycz10cnVl,RkxVVFRFUl9XRUJfQVVUT19ERVRFQ1Q9dHJ1ZQ==
12 | DART_OBFUSCATION=false
13 | TRACK_WIDGET_CREATION=true
14 | TREE_SHAKE_ICONS=false
15 | PACKAGE_CONFIG=/Users/jeck/AndroidStudioProjects/mu_hua_movie/.dart_tool/package_config.json
16 |
--------------------------------------------------------------------------------
/ios/Flutter/Release.xcconfig:
--------------------------------------------------------------------------------
1 | #include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"
2 | #include "Generated.xcconfig"
3 |
--------------------------------------------------------------------------------
/ios/Flutter/flutter_export_environment.sh:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | # This is a generated file; do not edit or check into version control.
3 | export "FLUTTER_ROOT=/Users/jeck/Library/Android/flutter"
4 | export "FLUTTER_APPLICATION_PATH=/Users/jeck/AndroidStudioProjects/mu_hua_movie"
5 | export "COCOAPODS_PARALLEL_CODE_SIGN=true"
6 | export "FLUTTER_TARGET=/Users/jeck/AndroidStudioProjects/mu_hua_movie/lib/main.dart"
7 | export "FLUTTER_BUILD_DIR=build"
8 | export "FLUTTER_BUILD_NAME=1.0.0"
9 | export "FLUTTER_BUILD_NUMBER=1"
10 | export "DART_DEFINES=Zmx1dHRlci5pbnNwZWN0b3Iuc3RydWN0dXJlZEVycm9ycz10cnVl,RkxVVFRFUl9XRUJfQVVUT19ERVRFQ1Q9dHJ1ZQ=="
11 | export "DART_OBFUSCATION=false"
12 | export "TRACK_WIDGET_CREATION=true"
13 | export "TREE_SHAKE_ICONS=false"
14 | export "PACKAGE_CONFIG=/Users/jeck/AndroidStudioProjects/mu_hua_movie/.dart_tool/package_config.json"
15 |
--------------------------------------------------------------------------------
/ios/Podfile:
--------------------------------------------------------------------------------
1 | # Uncomment this line to define a global platform for your project
2 | # platform :ios, '11.0'
3 |
4 | # CocoaPods analytics sends network stats synchronously affecting flutter build latency.
5 | ENV['COCOAPODS_DISABLE_STATS'] = 'true'
6 |
7 | project 'Runner', {
8 | 'Debug' => :debug,
9 | 'Profile' => :release,
10 | 'Release' => :release,
11 | }
12 |
13 | def flutter_root
14 | generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__)
15 | unless File.exist?(generated_xcode_build_settings_path)
16 | raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first"
17 | end
18 |
19 | File.foreach(generated_xcode_build_settings_path) do |line|
20 | matches = line.match(/FLUTTER_ROOT\=(.*)/)
21 | return matches[1].strip if matches
22 | end
23 | raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get"
24 | end
25 |
26 | require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root)
27 |
28 | flutter_ios_podfile_setup
29 |
30 | target 'Runner' do
31 | use_frameworks!
32 | use_modular_headers!
33 |
34 | flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
35 | end
36 |
37 | # post_install do |installer|
38 | # installer.pods_project.targets.each do |target|
39 | # flutter_additional_ios_build_settings(target)
40 | # end
41 | # end
42 |
43 |
44 | post_install do |installer|
45 | installer.pods_project.targets.each do |target|
46 | flutter_additional_ios_build_settings(target)
47 | target.build_configurations.each do |config|
48 | config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
49 | end
50 | end
51 | end
--------------------------------------------------------------------------------
/ios/Podfile.lock:
--------------------------------------------------------------------------------
1 | PODS:
2 | - Cache (6.0.0)
3 | - extended_betterplayer (0.0.1):
4 | - Cache (~> 6.0.0)
5 | - Flutter
6 | - GCDWebServer
7 | - HLSCachingReverseProxyServer
8 | - PINCache
9 | - Flutter (1.0.0)
10 | - FMDB (2.7.5):
11 | - FMDB/standard (= 2.7.5)
12 | - FMDB/standard (2.7.5)
13 | - GCDWebServer (3.5.4):
14 | - GCDWebServer/Core (= 3.5.4)
15 | - GCDWebServer/Core (3.5.4)
16 | - HLSCachingReverseProxyServer (0.1.0):
17 | - GCDWebServer (~> 3.5)
18 | - PINCache (>= 3.0.1-beta.3)
19 | - package_info_plus (0.4.5):
20 | - Flutter
21 | - path_provider_foundation (0.0.1):
22 | - Flutter
23 | - FlutterMacOS
24 | - permission_handler_apple (9.0.4):
25 | - Flutter
26 | - PINCache (3.0.3):
27 | - PINCache/Arc-exception-safe (= 3.0.3)
28 | - PINCache/Core (= 3.0.3)
29 | - PINCache/Arc-exception-safe (3.0.3):
30 | - PINCache/Core
31 | - PINCache/Core (3.0.3):
32 | - PINOperation (~> 1.2.1)
33 | - PINOperation (1.2.2)
34 | - share_plus (0.0.1):
35 | - Flutter
36 | - sqflite (0.0.2):
37 | - Flutter
38 | - FMDB (>= 2.7.5)
39 | - talkingdata_sdk_plugin (0.0.1):
40 | - Flutter
41 | - video_player_avfoundation (0.0.1):
42 | - Flutter
43 | - wakelock (0.0.1):
44 | - Flutter
45 |
46 | DEPENDENCIES:
47 | - extended_betterplayer (from `.symlinks/plugins/extended_betterplayer/ios`)
48 | - Flutter (from `Flutter`)
49 | - package_info_plus (from `.symlinks/plugins/package_info_plus/ios`)
50 | - path_provider_foundation (from `.symlinks/plugins/path_provider_foundation/ios`)
51 | - permission_handler_apple (from `.symlinks/plugins/permission_handler_apple/ios`)
52 | - share_plus (from `.symlinks/plugins/share_plus/ios`)
53 | - sqflite (from `.symlinks/plugins/sqflite/ios`)
54 | - talkingdata_sdk_plugin (from `.symlinks/plugins/talkingdata_sdk_plugin/ios`)
55 | - video_player_avfoundation (from `.symlinks/plugins/video_player_avfoundation/ios`)
56 | - wakelock (from `.symlinks/plugins/wakelock/ios`)
57 |
58 | SPEC REPOS:
59 | trunk:
60 | - Cache
61 | - FMDB
62 | - GCDWebServer
63 | - HLSCachingReverseProxyServer
64 | - PINCache
65 | - PINOperation
66 |
67 | EXTERNAL SOURCES:
68 | extended_betterplayer:
69 | :path: ".symlinks/plugins/extended_betterplayer/ios"
70 | Flutter:
71 | :path: Flutter
72 | package_info_plus:
73 | :path: ".symlinks/plugins/package_info_plus/ios"
74 | path_provider_foundation:
75 | :path: ".symlinks/plugins/path_provider_foundation/ios"
76 | permission_handler_apple:
77 | :path: ".symlinks/plugins/permission_handler_apple/ios"
78 | share_plus:
79 | :path: ".symlinks/plugins/share_plus/ios"
80 | sqflite:
81 | :path: ".symlinks/plugins/sqflite/ios"
82 | talkingdata_sdk_plugin:
83 | :path: ".symlinks/plugins/talkingdata_sdk_plugin/ios"
84 | video_player_avfoundation:
85 | :path: ".symlinks/plugins/video_player_avfoundation/ios"
86 | wakelock:
87 | :path: ".symlinks/plugins/wakelock/ios"
88 |
89 | SPEC CHECKSUMS:
90 | Cache: 4ca7e00363fca5455f26534e5607634c820ffc2d
91 | extended_betterplayer: a2f6b5a5dc79b60cd0957eada16564884a5bcd96
92 | Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854
93 | FMDB: 2ce00b547f966261cd18927a3ddb07cb6f3db82a
94 | GCDWebServer: 2c156a56c8226e2d5c0c3f208a3621ccffbe3ce4
95 | HLSCachingReverseProxyServer: 59935e1e0244ad7f3375d75b5ef46e8eb26ab181
96 | package_info_plus: 6c92f08e1f853dc01228d6f553146438dafcd14e
97 | path_provider_foundation: c68054786f1b4f3343858c1e1d0caaded73f0be9
98 | permission_handler_apple: 44366e37eaf29454a1e7b1b7d736c2cceaeb17ce
99 | PINCache: 7a8fc1a691173d21dbddbf86cd515de6efa55086
100 | PINOperation: daa34d4aa1d8449089be7d405b9d974abc4724c6
101 | share_plus: 056a1e8ac890df3e33cb503afffaf1e9b4fbae68
102 | sqflite: 6d358c025f5b867b29ed92fc697fd34924e11904
103 | talkingdata_sdk_plugin: afe59648f75aa36bb694de23f991bc5971677703
104 | video_player_avfoundation: 81e49bb3d9fb63dccf9fa0f6d877dc3ddbeac126
105 | wakelock: d0fc7c864128eac40eba1617cb5264d9c940b46f
106 |
107 | PODFILE CHECKSUM: 1d4e16d065ea3ba810ac6812a4002b6c91946d64
108 |
109 | COCOAPODS: 1.11.3
110 |
--------------------------------------------------------------------------------
/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.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
24 |
25 |
30 |
31 |
37 |
38 |
39 |
40 |
41 |
42 |
52 |
54 |
60 |
61 |
62 |
63 |
69 |
71 |
77 |
78 |
79 |
80 |
82 |
83 |
86 |
87 |
88 |
--------------------------------------------------------------------------------
/ios/Runner.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/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.xcworkspace/xcuserdata/jeck.xcuserdatad/UserInterfaceState.xcuserstate:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alun1/mu_hua_movie/a07e9b5078b6ed4399667aca08e15ef07240f2dc/ios/Runner.xcworkspace/xcuserdata/jeck.xcuserdatad/UserInterfaceState.xcuserstate
--------------------------------------------------------------------------------
/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 |
12 | TalkingDataSDKPlugin.`init`("94AEA0CDD9F647C0BDE6F022B8D2583C", channelId: "ios", custom: "")
13 | return super.application(application, didFinishLaunchingWithOptions: launchOptions)
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/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/alun1/mu_hua_movie/a07e9b5078b6ed4399667aca08e15ef07240f2dc/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/alun1/mu_hua_movie/a07e9b5078b6ed4399667aca08e15ef07240f2dc/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/alun1/mu_hua_movie/a07e9b5078b6ed4399667aca08e15ef07240f2dc/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/alun1/mu_hua_movie/a07e9b5078b6ed4399667aca08e15ef07240f2dc/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/alun1/mu_hua_movie/a07e9b5078b6ed4399667aca08e15ef07240f2dc/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/alun1/mu_hua_movie/a07e9b5078b6ed4399667aca08e15ef07240f2dc/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/alun1/mu_hua_movie/a07e9b5078b6ed4399667aca08e15ef07240f2dc/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/alun1/mu_hua_movie/a07e9b5078b6ed4399667aca08e15ef07240f2dc/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/alun1/mu_hua_movie/a07e9b5078b6ed4399667aca08e15ef07240f2dc/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/alun1/mu_hua_movie/a07e9b5078b6ed4399667aca08e15ef07240f2dc/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alun1/mu_hua_movie/a07e9b5078b6ed4399667aca08e15ef07240f2dc/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/alun1/mu_hua_movie/a07e9b5078b6ed4399667aca08e15ef07240f2dc/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alun1/mu_hua_movie/a07e9b5078b6ed4399667aca08e15ef07240f2dc/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/alun1/mu_hua_movie/a07e9b5078b6ed4399667aca08e15ef07240f2dc/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/alun1/mu_hua_movie/a07e9b5078b6ed4399667aca08e15ef07240f2dc/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "universal",
5 | "filename" : "LaunchImage.png",
6 | "scale" : "1x"
7 | },
8 | {
9 | "idiom" : "universal",
10 | "filename" : "LaunchImage@2x.png",
11 | "scale" : "2x"
12 | },
13 | {
14 | "idiom" : "universal",
15 | "filename" : "LaunchImage@3x.png",
16 | "scale" : "3x"
17 | }
18 | ],
19 | "info" : {
20 | "version" : 1,
21 | "author" : "xcode"
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alun1/mu_hua_movie/a07e9b5078b6ed4399667aca08e15ef07240f2dc/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alun1/mu_hua_movie/a07e9b5078b6ed4399667aca08e15ef07240f2dc/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alun1/mu_hua_movie/a07e9b5078b6ed4399667aca08e15ef07240f2dc/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@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 |
--------------------------------------------------------------------------------
/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/GeneratedPluginRegistrant.h:
--------------------------------------------------------------------------------
1 | //
2 | // Generated file. Do not edit.
3 | //
4 |
5 | // clang-format off
6 |
7 | #ifndef GeneratedPluginRegistrant_h
8 | #define GeneratedPluginRegistrant_h
9 |
10 | #import
11 |
12 | NS_ASSUME_NONNULL_BEGIN
13 |
14 | @interface GeneratedPluginRegistrant : NSObject
15 | + (void)registerWithRegistry:(NSObject*)registry;
16 | @end
17 |
18 | NS_ASSUME_NONNULL_END
19 | #endif /* GeneratedPluginRegistrant_h */
20 |
--------------------------------------------------------------------------------
/ios/Runner/GeneratedPluginRegistrant.m:
--------------------------------------------------------------------------------
1 | //
2 | // Generated file. Do not edit.
3 | //
4 |
5 | // clang-format off
6 |
7 | #import "GeneratedPluginRegistrant.h"
8 |
9 | #if __has_include()
10 | #import
11 | #else
12 | @import extended_betterplayer;
13 | #endif
14 |
15 | #if __has_include()
16 | #import
17 | #else
18 | @import package_info_plus;
19 | #endif
20 |
21 | #if __has_include()
22 | #import
23 | #else
24 | @import path_provider_foundation;
25 | #endif
26 |
27 | #if __has_include()
28 | #import
29 | #else
30 | @import permission_handler_apple;
31 | #endif
32 |
33 | #if __has_include()
34 | #import
35 | #else
36 | @import share_plus;
37 | #endif
38 |
39 | #if __has_include()
40 | #import
41 | #else
42 | @import sqflite;
43 | #endif
44 |
45 | #if __has_include()
46 | #import
47 | #else
48 | @import talkingdata_sdk_plugin;
49 | #endif
50 |
51 | #if __has_include()
52 | #import
53 | #else
54 | @import video_player_avfoundation;
55 | #endif
56 |
57 | #if __has_include()
58 | #import
59 | #else
60 | @import wakelock;
61 | #endif
62 |
63 | @implementation GeneratedPluginRegistrant
64 |
65 | + (void)registerWithRegistry:(NSObject*)registry {
66 | [BetterPlayerPlugin registerWithRegistrar:[registry registrarForPlugin:@"BetterPlayerPlugin"]];
67 | [FLTPackageInfoPlusPlugin registerWithRegistrar:[registry registrarForPlugin:@"FLTPackageInfoPlusPlugin"]];
68 | [PathProviderPlugin registerWithRegistrar:[registry registrarForPlugin:@"PathProviderPlugin"]];
69 | [PermissionHandlerPlugin registerWithRegistrar:[registry registrarForPlugin:@"PermissionHandlerPlugin"]];
70 | [FLTSharePlusPlugin registerWithRegistrar:[registry registrarForPlugin:@"FLTSharePlusPlugin"]];
71 | [SqflitePlugin registerWithRegistrar:[registry registrarForPlugin:@"SqflitePlugin"]];
72 | [TalkingDataSDKPlugin registerWithRegistrar:[registry registrarForPlugin:@"TalkingDataSDKPlugin"]];
73 | [FLTVideoPlayerPlugin registerWithRegistrar:[registry registrarForPlugin:@"FLTVideoPlayerPlugin"]];
74 | [WakelockPlugin registerWithRegistrar:[registry registrarForPlugin:@"WakelockPlugin"]];
75 | }
76 |
77 | @end
78 |
--------------------------------------------------------------------------------
/ios/Runner/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | $(DEVELOPMENT_LANGUAGE)
7 | CFBundleDisplayName
8 | Mu Hua Movie
9 | CFBundleExecutable
10 | $(EXECUTABLE_NAME)
11 | CFBundleIdentifier
12 | $(PRODUCT_BUNDLE_IDENTIFIER)
13 | CFBundleInfoDictionaryVersion
14 | 6.0
15 | CFBundleName
16 | mu_hua_movie
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 | UIViewControllerBasedStatusBarAppearance
45 |
46 | CADisableMinimumFrameDurationOnPhone
47 |
48 | UIApplicationSupportsIndirectInputEvents
49 |
50 |
51 |
52 |
--------------------------------------------------------------------------------
/ios/Runner/Runner-Bridging-Header.h:
--------------------------------------------------------------------------------
1 | #import "GeneratedPluginRegistrant.h"
2 | #import "TalkingDataSDKPlugin.h"
3 |
--------------------------------------------------------------------------------
/lib/generated/json/base/json_convert_content.dart:
--------------------------------------------------------------------------------
1 | // ignore_for_file: non_constant_identifier_names
2 | // ignore_for_file: camel_case_types
3 | // ignore_for_file: prefer_single_quotes
4 |
5 | // This file is automatically generated. DO NOT EDIT, all your changes would be lost.
6 | import 'package:flutter/material.dart' show debugPrint;
7 | import 'package:mu_hua_movie/model/entity/response_base_entity.dart';
8 | import 'package:mu_hua_movie/model/entity/update_info_entity.dart';
9 | import 'package:mu_hua_movie/model/entity/vd_class.dart';
10 | import 'package:mu_hua_movie/model/entity/vod_info_entity.dart';
11 |
12 | JsonConvert jsonConvert = JsonConvert();
13 | typedef JsonConvertFunction = T Function(Map json);
14 | typedef EnumConvertFunction = T Function(String value);
15 |
16 | class JsonConvert {
17 | static final Map convertFuncMap = {
18 | (ResponseBaseEntity).toString(): ResponseBaseEntity.fromJson,
19 | (UpdateInfoEntity).toString(): UpdateInfoEntity.fromJson,
20 | (VdClass).toString(): VdClass.fromJson,
21 | (VodInfoEntity).toString(): VodInfoEntity.fromJson,
22 | };
23 |
24 | T? convert(dynamic value, {EnumConvertFunction? enumConvert}) {
25 | if (value == null) {
26 | return null;
27 | }
28 | if (value is T) {
29 | return value;
30 | }
31 | try {
32 | return _asT(value, enumConvert: enumConvert);
33 | } catch (e, stackTrace) {
34 | debugPrint('asT<$T> $e $stackTrace');
35 | return null;
36 | }
37 | }
38 |
39 | List? convertList(List? value, {EnumConvertFunction? enumConvert}) {
40 | if (value == null) {
41 | return null;
42 | }
43 | try {
44 | return value.map((dynamic e) => _asT(e,enumConvert: enumConvert)).toList();
45 | } catch (e, stackTrace) {
46 | debugPrint('asT<$T> $e $stackTrace');
47 | return [];
48 | }
49 | }
50 |
51 | List? convertListNotNull(dynamic value, {EnumConvertFunction? enumConvert}) {
52 | if (value == null) {
53 | return null;
54 | }
55 | try {
56 | return (value as List).map((dynamic e) => _asT(e,enumConvert: enumConvert)!).toList();
57 | } catch (e, stackTrace) {
58 | debugPrint('asT<$T> $e $stackTrace');
59 | return [];
60 | }
61 | }
62 |
63 | T? _asT(dynamic value,
64 | {EnumConvertFunction? enumConvert}) {
65 | final String type = T.toString();
66 | final String valueS = value.toString();
67 | if (enumConvert != null) {
68 | return enumConvert(valueS) as T;
69 | } else if (type == "String") {
70 | return valueS as T;
71 | } else if (type == "int") {
72 | final int? intValue = int.tryParse(valueS);
73 | if (intValue == null) {
74 | return double.tryParse(valueS)?.toInt() as T?;
75 | } else {
76 | return intValue as T;
77 | }
78 | } else if (type == "double") {
79 | return double.parse(valueS) as T;
80 | } else if (type == "DateTime") {
81 | return DateTime.parse(valueS) as T;
82 | } else if (type == "bool") {
83 | if (valueS == '0' || valueS == '1') {
84 | return (valueS == '1') as T;
85 | }
86 | return (valueS == 'true') as T;
87 | } else if (type == "Map" || type.startsWith("Map<")) {
88 | return value as T;
89 | } else {
90 | if (convertFuncMap.containsKey(type)) {
91 | return convertFuncMap[type]!(Map.from(value)) as T;
92 | } else {
93 | throw UnimplementedError('$type unimplemented');
94 | }
95 | }
96 | }
97 |
98 | //list is returned by type
99 | static M? _getListChildType(List