Set default metadata.

This commit is contained in:
Swapnil Tripathi 2021-08-16 02:48:57 +05:30 committed by Tobias Fella
parent 064734bfda
commit 76bf6c46cf
2 changed files with 9 additions and 9 deletions

View File

@ -7,7 +7,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.kde.kasts"
android:versionName="0.0.1"
android:versionCode="1629058364"
android:versionCode="1629061325"
android:installLocation="auto">
<supports-screens android:largeScreens="true" android:normalScreens="true" android:anyDensity="true" android:smallScreens="true"/>

View File

@ -41,12 +41,12 @@ public class KastsActivity extends QtActivity
private static native void playerSeek(long position);
class MediaData {
public String title;
public String author;
public String album;
public long position;
public long duration;
public float playbackSpeed;
public String title = "Unknown Media";
public String author = "Unknown Artist";
public String album = "Unknown Album";
public long position = 0;
public long duration = 0;
public float playbackSpeed = 1;
public int state = 2;
// add more variables here
}
@ -118,7 +118,7 @@ public class KastsActivity extends QtActivity
.setContentTitle(mediaData.title)
.setSmallIcon(this.getApplicationInfo().icon)
.setChannelId("org.kde.kasts.channel")
.setContentText("some random text");
.setContentText("Unknown");
notification.addAction(aPrevious.build());
if(mediaData.state == 0)
@ -135,7 +135,7 @@ public class KastsActivity extends QtActivity
mSession.setActive(true);
NotificationManager nm = ContextCompat.getSystemService(this, NotificationManager.class);
NotificationChannel channel = new NotificationChannel("org.kde.kasts.channel", "KastsChannel", NotificationManager.IMPORTANCE_HIGH);
channel.setDescription("The notification channel");
channel.setDescription("No Media Loaded");
channel.enableLights(false);
channel.enableVibration(false);
nm.createNotificationChannel(channel);