Commit ded5b2f2 by 霍志良

feat:升级ydl-media

parent 1c7336c3
...@@ -37,7 +37,7 @@ ext { ...@@ -37,7 +37,7 @@ ext {
//第二步 若干 //第二步 若干
"ydl-webview" : "0.0.38.47", "ydl-webview" : "0.0.38.47",
"ydl-media" : "0.0.21.10", "ydl-media" : "0.0.21.11",
"ydl-pay" : "0.0.18.19", "ydl-pay" : "0.0.18.19",
"m-audioim" : "0.0.49.29.41", "m-audioim" : "0.0.49.29.41",
"ydl-flutter-base": "0.0.14.31", "ydl-flutter-base": "0.0.14.31",
...@@ -119,7 +119,7 @@ ext { ...@@ -119,7 +119,7 @@ ext {
//第二步 若干 //第二步 若干
"ydl-webview" : "0.0.38.47", "ydl-webview" : "0.0.38.47",
"ydl-media" : "0.0.21.10", "ydl-media" : "0.0.21.11",
"ydl-pay" : "0.0.18.19", "ydl-pay" : "0.0.18.19",
"m-audioim" : "0.0.49.29.41", "m-audioim" : "0.0.49.29.41",
"ydl-flutter-base": "0.0.14.31", "ydl-flutter-base": "0.0.14.31",
...@@ -220,7 +220,7 @@ ext { ...@@ -220,7 +220,7 @@ ext {
"systembartint" : "com.readystatesoftware.systembartint:systembartint:1.0.3", "systembartint" : "com.readystatesoftware.systembartint:systembartint:1.0.3",
"cube" : "in.srain.cube:cube-sdk:1.0.44@aar", "cube" : "in.srain.cube:cube-sdk:1.0.44@aar",
"support-multidex" : 'androidx.multidex:multidex:2.0.0', "support-multidex" : 'androidx.multidex:multidex:2.0.0',
"ydl-ijkplayer-jjdxm" : "com.ydl:jjdxm-ijkplayer:0.0.5", "ydl-ijkplayer-jjdxm" : "com.ydl:jjdxm-ijkplayer:0.0.6",
"robust" : "com.meituan.robust:robust:0.4.87", "robust" : "com.meituan.robust:robust:0.4.87",
"walle" : "com.meituan.android.walle:library:1.1.5", "walle" : "com.meituan.android.walle:library:1.1.5",
"jpush" : "cn.jiguang.sdk:jpush:3.3.6", "jpush" : "cn.jiguang.sdk:jpush:3.3.6",
......
...@@ -9,7 +9,8 @@ com.netease.nimlib.avchat, ...@@ -9,7 +9,8 @@ com.netease.nimlib.avchat,
com.netease.nimlib.nrtc, com.netease.nimlib.nrtc,
com.netease.nimlib.chatroom, com.netease.nimlib.chatroom,
com.netease.nimlib.lucene, com.netease.nimlib.lucene,
com.netease.nimlib.push com.netease.nimlib.push,
tv.danmaku.ijk.media.player_arm64
"/> "/>
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" /> <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" /> <uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
......
...@@ -31,7 +31,7 @@ class PlayService : Service() { ...@@ -31,7 +31,7 @@ class PlayService : Service() {
var nm = getSystemService(NOTIFICATION_SERVICE) as NotificationManager; var nm = getSystemService(NOTIFICATION_SERVICE) as NotificationManager;
//数字是随便写的“40”, //数字是随便写的“40”,
nm.createNotificationChannel( NotificationChannel("40", "App Service", NotificationManager.IMPORTANCE_DEFAULT)); nm.createNotificationChannel( NotificationChannel("40", "App Service", NotificationManager.IMPORTANCE_DEFAULT));
var builder = new NotificationCompat.Builder(this, "40"); var builder = NotificationCompat.Builder(this, "40");
//其中的2,是也随便写的,正式项目也是随便写 //其中的2,是也随便写的,正式项目也是随便写
startForeground(2 ,builder.build()); startForeground(2 ,builder.build());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment