Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3772b6a0 authored by William Escande's avatar William Escande
Browse files

Update db version for microphone

Bug: 378400528
Test: m .
Flag: com.android.bluetooth.flags.metadata_api_microphone_for_call_enabled
Change-Id: I56401318d12e97daaa608609259071727d56c32d
parent 740497d3
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -33,7 +33,7 @@ import java.util.List;
/** MetadataDatabase is a Room database stores Bluetooth persistence data */
@Database(
        entities = {Metadata.class},
        version = 120)
        version = 121)
public abstract class MetadataDatabase extends RoomDatabase {
    /** The metadata database file name */
    public static final String DATABASE_NAME = "bluetooth_db";
@@ -70,6 +70,7 @@ public abstract class MetadataDatabase extends RoomDatabase {
                .addMigrations(MIGRATION_117_118)
                .addMigrations(MIGRATION_118_119)
                .addMigrations(MIGRATION_119_120)
                .addMigrations(MIGRATION_120_121)
                .allowMainThreadQueries()
                .build();
    }