feat & fix: 完成媒体播放器与页面解耦,增加mini播放器,增加 MusicView 自适应,增加密码管理器,修改应用图标,修复一些bug

chen
Spark 8 months ago
parent 353fe0175a
commit 9801f8a7e9

1
.gitignore vendored

@ -42,3 +42,4 @@ app.*.map.json
/android/app/debug /android/app/debug
/android/app/profile /android/app/profile
/android/app/release /android/app/release
/android/app/build

@ -27,6 +27,11 @@ android {
compileSdkVersion flutter.compileSdkVersion compileSdkVersion flutter.compileSdkVersion
ndkVersion flutter.ndkVersion ndkVersion flutter.ndkVersion
dependencies {
implementation "androidx.fragment:fragment:1.3.6"
}
compileOptions { compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8 sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8
@ -40,7 +45,14 @@ android {
main.java.srcDirs += 'src/main/kotlin' main.java.srcDirs += 'src/main/kotlin'
} }
buildFeatures {
viewBinding true
}
defaultConfig { defaultConfig {
ndk {
abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86_64', 'x86'
}
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.example.music_player_miao" applicationId "com.example.music_player_miao"
// You can update the following values to match your application needs. // You can update the following values to match your application needs.

@ -1,2 +1,2 @@
#- File Locator - #- File Locator -
listingFile=../../apk/debug/output-metadata.json listingFile=../../../outputs/apk/debug/output-metadata.json

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -1 +1 @@
9b4b33211b41e776b82fa8f3f43c9bcc f649f7b73ed118947e70d0b9aa9e6a1f

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save