diff --git a/.idea/.name b/.idea/.name
index 46ec8584..fc0bb7b5 100644
--- a/.idea/.name
+++ b/.idea/.name
@@ -1 +1 @@
-Play
\ No newline at end of file
+Tempo
\ No newline at end of file
diff --git a/app/build.gradle b/app/build.gradle
index 6016715f..d405acef 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -7,7 +7,7 @@ android {
buildToolsVersion '33.0.0'
defaultConfig {
- applicationId 'com.cappielloantonio.playforsubsonic'
+ applicationId 'com.cappielloantonio.tempo'
minSdkVersion 24
targetSdkVersion 33
versionCode 4
diff --git a/app/src/main/java/com/cappielloantonio/play/database/AppDatabase.java b/app/src/main/java/com/cappielloantonio/play/database/AppDatabase.java
index a9326839..f1389d5f 100644
--- a/app/src/main/java/com/cappielloantonio/play/database/AppDatabase.java
+++ b/app/src/main/java/com/cappielloantonio/play/database/AppDatabase.java
@@ -1,6 +1,5 @@
package com.cappielloantonio.play.database;
-import androidx.room.AutoMigration;
import androidx.room.Database;
import androidx.room.Room;
import androidx.room.RoomDatabase;
@@ -20,13 +19,13 @@ import com.cappielloantonio.play.model.RecentSearch;
import com.cappielloantonio.play.model.Server;
@Database(
- version = 62,
+ version = 1,
entities = {Queue.class, Server.class, RecentSearch.class, Download.class, Chronology.class}
// autoMigrations = {@AutoMigration(from = 61, to = 62)}
)
@TypeConverters({DateConverters.class})
public abstract class AppDatabase extends RoomDatabase {
- private final static String DB_NAME = "play_db";
+ private final static String DB_NAME = "tempo_db";
private static AppDatabase instance;
public static synchronized AppDatabase getInstance() {
diff --git a/app/src/main/java/com/cappielloantonio/play/subsonic/SubsonicPreferences.java b/app/src/main/java/com/cappielloantonio/play/subsonic/SubsonicPreferences.java
index 16114871..3c78ad19 100644
--- a/app/src/main/java/com/cappielloantonio/play/subsonic/SubsonicPreferences.java
+++ b/app/src/main/java/com/cappielloantonio/play/subsonic/SubsonicPreferences.java
@@ -7,7 +7,7 @@ import java.util.UUID;
public class SubsonicPreferences {
private String serverUrl;
private String username;
- private String clientName = "Play";
+ private String clientName = "Tempo";
private SubsonicAuthentication authentication;
public String getServerUrl() {
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index 74236336..64f77236 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -24,7 +24,7 @@
More like this
Play
Shuffle
- Play
+ Tempo
Instant mix
Shuffle
Artists
@@ -154,7 +154,7 @@
Continue anyway
Server unreachable
The requested server is unavailable. If you choose to continue this dialog will not appear for the next hour.
- Play is an open source and lightweight music client for Subsonic, designed and built natively for Android.
+ Tempo is an open source and lightweight music client for Subsonic, designed and built natively for Android.
About
Transcode format in mobile
Transcode format in Wi-Fi
diff --git a/settings.gradle b/settings.gradle
index b1d91ddf..a7c6dd41 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -1,2 +1,2 @@
include ':app'
-rootProject.name = "Play"
\ No newline at end of file
+rootProject.name = "Tempo"
\ No newline at end of file