This commit is contained in:
Yutousama 2022-05-27 08:42:15 +08:00
parent 91a686aec6
commit 3cc08fc13d
5 changed files with 16 additions and 14 deletions

View File

@ -12,12 +12,12 @@ android {
keyPassword '34864394'
}
}
compileSdkVersion 30
compileSdkVersion 32
defaultConfig {
applicationId "com.yutou.nas_music_player"
minSdkVersion 23
targetSdkVersion 30
targetSdkVersion 32
versionCode 1
versionName "1.1"
@ -44,14 +44,14 @@ android {
}
dependencies {
implementation 'com.google.android.material:material:1.4.0'
implementation 'androidx.coordinatorlayout:coordinatorlayout:1.1.0'
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation 'com.google.android.material:material:1.6.0'
implementation 'androidx.coordinatorlayout:coordinatorlayout:1.2.0'
implementation fileTree(dir: "libs", include: ["*.aar"])
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.1'
implementation 'androidx.work:work-runtime:2.5.0'
implementation 'androidx.recyclerview:recyclerview:1.2.0'
implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
implementation 'androidx.work:work-runtime:2.7.1'
implementation 'androidx.recyclerview:recyclerview:1.2.1'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'

View File

@ -14,9 +14,10 @@
android:theme="@style/AppTheme"
android:usesCleartextTraffic="true">
<activity
android:screenOrientation="portrait"
android:screenOrientation="fullSensor"
android:name=".views.OpenActivity"
android:theme="@style/Theme.AppCompat.DayNight.NoActionBar">
android:theme="@style/Theme.AppCompat.DayNight.NoActionBar"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
@ -46,7 +47,8 @@
<action android:name="android.media.browse.MediaBrowserService" />
</intent-filter>
</service>
<receiver android:name="androidx.media.session.MediaButtonReceiver">
<receiver android:name="androidx.media.session.MediaButtonReceiver"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MEDIA_BUTTON" />
</intent-filter>

View File

@ -33,6 +33,7 @@ import com.yutou.nas_music_player.containers.MusicContainer;
import com.yutou.nas_music_player.tools.AppData;
import com.yutou.nas_music_player.tools.AppTools;
import com.yutou.nas_music_player.tools.ConfigTools;
import com.yutou.popdialog.POPDialog;
import java.util.List;
import java.util.Locale;

View File

@ -3,7 +3,6 @@ package com.yutou.nas_music_player.views;
import android.content.Intent;
import android.os.Bundle;
import android.widget.TextView;
import android.widget.Toast;
import androidx.annotation.Nullable;
import androidx.appcompat.app.AppCompatActivity;

View File

@ -9,7 +9,7 @@ buildscript {
dependencies {
classpath 'com.android.tools.build:gradle:7.2.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21"
// NOTE: Do not place your application dependencies here; they belong