- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
26 lines
1.1 KiB
Java
26 lines
1.1 KiB
Java
package androidx.room;
|
|
|
|
import androidx.annotation.RestrictTo;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
@RestrictTo({RestrictTo.Scope.LIBRARY_GROUP_PREFIX})
|
|
/* loaded from: classes.dex */
|
|
public final class RoomMasterTable {
|
|
private static final String COLUMN_ID = "id";
|
|
private static final String COLUMN_IDENTITY_HASH = "identity_hash";
|
|
public static final String CREATE_QUERY = "CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)";
|
|
public static final String DEFAULT_ID = "42";
|
|
public static final RoomMasterTable INSTANCE = new RoomMasterTable();
|
|
public static final String NAME = "room_master_table";
|
|
public static final String READ_QUERY = "SELECT identity_hash FROM room_master_table WHERE id = 42 LIMIT 1";
|
|
public static final String TABLE_NAME = "room_master_table";
|
|
|
|
private RoomMasterTable() {
|
|
}
|
|
|
|
public static final String createInsertQuery(String hash) {
|
|
Intrinsics.checkNotNullParameter(hash, "hash");
|
|
return "INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, '" + hash + "')";
|
|
}
|
|
}
|