Compare commits

..

6 Commits

Author SHA1 Message Date
4dc8752a2e ja acabei a app acho? 2026-02-27 15:45:22 +00:00
976772c95d ja acabei a app acho? 2026-02-27 15:45:16 +00:00
7eda7b5b48 ja acabei a app acho? 2026-02-27 15:41:13 +00:00
8649ca9ce9 ja acabei a app acho? 2026-02-27 15:36:33 +00:00
014432157d ja acabei a app acho? 2026-02-27 15:36:03 +00:00
91de8f46bf ja acabei acho so falta a base de dados 2026-02-26 10:00:41 +00:00
657 changed files with 16973 additions and 16998 deletions

Binary file not shown.

View File

@@ -532,6 +532,18 @@
</list> </list>
</option> </option>
</PersistentDeviceSelectionData> </PersistentDeviceSelectionData>
<PersistentDeviceSelectionData>
<option name="api" value="35" />
<option name="brand" value="motorola" />
<option name="codename" value="cuscoi" />
<option name="id" value="cuscoi" />
<option name="labId" value="google" />
<option name="manufacturer" value="Motorola" />
<option name="name" value="edge 50 fusion" />
<option name="screenDensity" value="400" />
<option name="screenX" value="1080" />
<option name="screenY" value="2400" />
</PersistentDeviceSelectionData>
<PersistentDeviceSelectionData> <PersistentDeviceSelectionData>
<option name="api" value="35" /> <option name="api" value="35" />
<option name="brand" value="samsung" /> <option name="brand" value="samsung" />

View File

@@ -27,15 +27,15 @@ android {
sourceCompatibility JavaVersion.VERSION_1_8 sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8
} }
buildFeatures { buildFeatures {
viewBinding true viewBinding true
} }
} }
dependencies { dependencies {
// Importa o Firebase BoM
implementation platform('com.google.firebase:firebase-bom:32.7.0')
implementation 'androidx.appcompat:appcompat:1.6.1' implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.11.0' implementation 'com.google.android.material:material:1.11.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4' implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
@@ -43,21 +43,13 @@ dependencies {
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.7.0' implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.7.0'
implementation 'androidx.navigation:navigation-fragment:2.7.7' implementation 'androidx.navigation:navigation-fragment:2.7.7'
implementation 'androidx.navigation:navigation-ui:2.7.7' implementation 'androidx.navigation:navigation-ui:2.7.7'
// Adiciona as bibliotecas para Auth e Firestore (sem versão, geridas pelo BoM) // Adiciona a biblioteca para Auth se for do Google ID (credentials)
implementation 'com.google.firebase:firebase-auth'
implementation 'androidx.credentials:credentials:1.5.0' implementation 'androidx.credentials:credentials:1.5.0'
implementation 'androidx.credentials:credentials-play-services-auth:1.5.0' implementation 'androidx.credentials:credentials-play-services-auth:1.5.0'
//noinspection UseIdentifyId //noinspection UseIdentifyId
implementation 'com.google.android.libraries.identity.googleid:googleid:1.1.1' implementation 'com.google.android.libraries.identity.googleid:googleid:1.1.1'
implementation 'com.google.firebase:firebase-storage'
implementation 'com.google.firebase:firebase-database'
implementation 'com.google.firebase:firebase-firestore'
// Room
def room_version = "2.6.1"
implementation "androidx.room:room-runtime:$room_version"
annotationProcessor "androidx.room:room-compiler:$room_version"
testImplementation 'junit:junit:4.13.2' testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5' androidTestImplementation 'androidx.test.ext:junit:1.1.5'
@@ -71,4 +63,16 @@ dependencies {
// Necessário para lidar com operações assíncronas (Guava) // Necessário para lidar com operações assíncronas (Guava)
implementation 'com.google.guava:guava:31.1-android' implementation 'com.google.guava:guava:31.1-android'
// Para chamadas de rede e JSON
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
implementation 'com.squareup.okhttp3:okhttp:4.10.0'
// Firebase BoM
implementation platform('com.google.firebase:firebase-bom:32.7.2')
// Firebase Auth and Firestore
implementation 'com.google.firebase:firebase-auth'
implementation 'com.google.firebase:firebase-firestore'
} }

View File

@@ -1,250 +0,0 @@
package com.example.cuida.data;
import androidx.annotation.NonNull;
import androidx.room.DatabaseConfiguration;
import androidx.room.InvalidationTracker;
import androidx.room.RoomDatabase;
import androidx.room.RoomOpenHelper;
import androidx.room.migration.AutoMigrationSpec;
import androidx.room.migration.Migration;
import androidx.room.util.DBUtil;
import androidx.room.util.TableInfo;
import androidx.sqlite.db.SupportSQLiteDatabase;
import androidx.sqlite.db.SupportSQLiteOpenHelper;
import com.example.cuida.data.dao.AppointmentDao;
import com.example.cuida.data.dao.AppointmentDao_Impl;
import com.example.cuida.data.dao.MedicationDao;
import com.example.cuida.data.dao.MedicationDao_Impl;
import com.example.cuida.data.dao.UserDao;
import com.example.cuida.data.dao.UserDao_Impl;
import java.lang.Class;
import java.lang.Override;
import java.lang.String;
import java.lang.SuppressWarnings;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
@SuppressWarnings({"unchecked", "deprecation"})
public final class AppDatabase_Impl extends AppDatabase {
private volatile UserDao _userDao;
private volatile AppointmentDao _appointmentDao;
private volatile MedicationDao _medicationDao;
@Override
@NonNull
protected SupportSQLiteOpenHelper createOpenHelper(@NonNull final DatabaseConfiguration config) {
final SupportSQLiteOpenHelper.Callback _openCallback = new RoomOpenHelper(config, new RoomOpenHelper.Delegate(4) {
@Override
public void createAllTables(@NonNull final SupportSQLiteDatabase db) {
db.execSQL("CREATE TABLE IF NOT EXISTS `users` (`uid` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `name` TEXT, `email` TEXT, `password` TEXT, `age` INTEGER NOT NULL, `utenteNumber` TEXT, `profilePictureUri` TEXT)");
db.execSQL("CREATE TABLE IF NOT EXISTS `appointments` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `type` TEXT, `date` TEXT, `time` TEXT, `reason` TEXT, `isPast` INTEGER NOT NULL)");
db.execSQL("CREATE TABLE IF NOT EXISTS `medications` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `name` TEXT, `time` TEXT, `dosage` TEXT, `notes` TEXT, `isTaken` INTEGER NOT NULL)");
db.execSQL("CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)");
db.execSQL("INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, '2bfd7144258edb6d96f828b5b036c580')");
}
@Override
public void dropAllTables(@NonNull final SupportSQLiteDatabase db) {
db.execSQL("DROP TABLE IF EXISTS `users`");
db.execSQL("DROP TABLE IF EXISTS `appointments`");
db.execSQL("DROP TABLE IF EXISTS `medications`");
final List<? extends RoomDatabase.Callback> _callbacks = mCallbacks;
if (_callbacks != null) {
for (RoomDatabase.Callback _callback : _callbacks) {
_callback.onDestructiveMigration(db);
}
}
}
@Override
public void onCreate(@NonNull final SupportSQLiteDatabase db) {
final List<? extends RoomDatabase.Callback> _callbacks = mCallbacks;
if (_callbacks != null) {
for (RoomDatabase.Callback _callback : _callbacks) {
_callback.onCreate(db);
}
}
}
@Override
public void onOpen(@NonNull final SupportSQLiteDatabase db) {
mDatabase = db;
internalInitInvalidationTracker(db);
final List<? extends RoomDatabase.Callback> _callbacks = mCallbacks;
if (_callbacks != null) {
for (RoomDatabase.Callback _callback : _callbacks) {
_callback.onOpen(db);
}
}
}
@Override
public void onPreMigrate(@NonNull final SupportSQLiteDatabase db) {
DBUtil.dropFtsSyncTriggers(db);
}
@Override
public void onPostMigrate(@NonNull final SupportSQLiteDatabase db) {
}
@Override
@NonNull
public RoomOpenHelper.ValidationResult onValidateSchema(
@NonNull final SupportSQLiteDatabase db) {
final HashMap<String, TableInfo.Column> _columnsUsers = new HashMap<String, TableInfo.Column>(7);
_columnsUsers.put("uid", new TableInfo.Column("uid", "INTEGER", true, 1, null, TableInfo.CREATED_FROM_ENTITY));
_columnsUsers.put("name", new TableInfo.Column("name", "TEXT", false, 0, null, TableInfo.CREATED_FROM_ENTITY));
_columnsUsers.put("email", new TableInfo.Column("email", "TEXT", false, 0, null, TableInfo.CREATED_FROM_ENTITY));
_columnsUsers.put("password", new TableInfo.Column("password", "TEXT", false, 0, null, TableInfo.CREATED_FROM_ENTITY));
_columnsUsers.put("age", new TableInfo.Column("age", "INTEGER", true, 0, null, TableInfo.CREATED_FROM_ENTITY));
_columnsUsers.put("utenteNumber", new TableInfo.Column("utenteNumber", "TEXT", false, 0, null, TableInfo.CREATED_FROM_ENTITY));
_columnsUsers.put("profilePictureUri", new TableInfo.Column("profilePictureUri", "TEXT", false, 0, null, TableInfo.CREATED_FROM_ENTITY));
final HashSet<TableInfo.ForeignKey> _foreignKeysUsers = new HashSet<TableInfo.ForeignKey>(0);
final HashSet<TableInfo.Index> _indicesUsers = new HashSet<TableInfo.Index>(0);
final TableInfo _infoUsers = new TableInfo("users", _columnsUsers, _foreignKeysUsers, _indicesUsers);
final TableInfo _existingUsers = TableInfo.read(db, "users");
if (!_infoUsers.equals(_existingUsers)) {
return new RoomOpenHelper.ValidationResult(false, "users(com.example.cuida.data.model.User).\n"
+ " Expected:\n" + _infoUsers + "\n"
+ " Found:\n" + _existingUsers);
}
final HashMap<String, TableInfo.Column> _columnsAppointments = new HashMap<String, TableInfo.Column>(6);
_columnsAppointments.put("id", new TableInfo.Column("id", "INTEGER", true, 1, null, TableInfo.CREATED_FROM_ENTITY));
_columnsAppointments.put("type", new TableInfo.Column("type", "TEXT", false, 0, null, TableInfo.CREATED_FROM_ENTITY));
_columnsAppointments.put("date", new TableInfo.Column("date", "TEXT", false, 0, null, TableInfo.CREATED_FROM_ENTITY));
_columnsAppointments.put("time", new TableInfo.Column("time", "TEXT", false, 0, null, TableInfo.CREATED_FROM_ENTITY));
_columnsAppointments.put("reason", new TableInfo.Column("reason", "TEXT", false, 0, null, TableInfo.CREATED_FROM_ENTITY));
_columnsAppointments.put("isPast", new TableInfo.Column("isPast", "INTEGER", true, 0, null, TableInfo.CREATED_FROM_ENTITY));
final HashSet<TableInfo.ForeignKey> _foreignKeysAppointments = new HashSet<TableInfo.ForeignKey>(0);
final HashSet<TableInfo.Index> _indicesAppointments = new HashSet<TableInfo.Index>(0);
final TableInfo _infoAppointments = new TableInfo("appointments", _columnsAppointments, _foreignKeysAppointments, _indicesAppointments);
final TableInfo _existingAppointments = TableInfo.read(db, "appointments");
if (!_infoAppointments.equals(_existingAppointments)) {
return new RoomOpenHelper.ValidationResult(false, "appointments(com.example.cuida.data.model.Appointment).\n"
+ " Expected:\n" + _infoAppointments + "\n"
+ " Found:\n" + _existingAppointments);
}
final HashMap<String, TableInfo.Column> _columnsMedications = new HashMap<String, TableInfo.Column>(6);
_columnsMedications.put("id", new TableInfo.Column("id", "INTEGER", true, 1, null, TableInfo.CREATED_FROM_ENTITY));
_columnsMedications.put("name", new TableInfo.Column("name", "TEXT", false, 0, null, TableInfo.CREATED_FROM_ENTITY));
_columnsMedications.put("time", new TableInfo.Column("time", "TEXT", false, 0, null, TableInfo.CREATED_FROM_ENTITY));
_columnsMedications.put("dosage", new TableInfo.Column("dosage", "TEXT", false, 0, null, TableInfo.CREATED_FROM_ENTITY));
_columnsMedications.put("notes", new TableInfo.Column("notes", "TEXT", false, 0, null, TableInfo.CREATED_FROM_ENTITY));
_columnsMedications.put("isTaken", new TableInfo.Column("isTaken", "INTEGER", true, 0, null, TableInfo.CREATED_FROM_ENTITY));
final HashSet<TableInfo.ForeignKey> _foreignKeysMedications = new HashSet<TableInfo.ForeignKey>(0);
final HashSet<TableInfo.Index> _indicesMedications = new HashSet<TableInfo.Index>(0);
final TableInfo _infoMedications = new TableInfo("medications", _columnsMedications, _foreignKeysMedications, _indicesMedications);
final TableInfo _existingMedications = TableInfo.read(db, "medications");
if (!_infoMedications.equals(_existingMedications)) {
return new RoomOpenHelper.ValidationResult(false, "medications(com.example.cuida.data.model.Medication).\n"
+ " Expected:\n" + _infoMedications + "\n"
+ " Found:\n" + _existingMedications);
}
return new RoomOpenHelper.ValidationResult(true, null);
}
}, "2bfd7144258edb6d96f828b5b036c580", "54396701591a8f38f350a20a4d12755d");
final SupportSQLiteOpenHelper.Configuration _sqliteConfig = SupportSQLiteOpenHelper.Configuration.builder(config.context).name(config.name).callback(_openCallback).build();
final SupportSQLiteOpenHelper _helper = config.sqliteOpenHelperFactory.create(_sqliteConfig);
return _helper;
}
@Override
@NonNull
protected InvalidationTracker createInvalidationTracker() {
final HashMap<String, String> _shadowTablesMap = new HashMap<String, String>(0);
final HashMap<String, Set<String>> _viewTables = new HashMap<String, Set<String>>(0);
return new InvalidationTracker(this, _shadowTablesMap, _viewTables, "users","appointments","medications");
}
@Override
public void clearAllTables() {
super.assertNotMainThread();
final SupportSQLiteDatabase _db = super.getOpenHelper().getWritableDatabase();
try {
super.beginTransaction();
_db.execSQL("DELETE FROM `users`");
_db.execSQL("DELETE FROM `appointments`");
_db.execSQL("DELETE FROM `medications`");
super.setTransactionSuccessful();
} finally {
super.endTransaction();
_db.query("PRAGMA wal_checkpoint(FULL)").close();
if (!_db.inTransaction()) {
_db.execSQL("VACUUM");
}
}
}
@Override
@NonNull
protected Map<Class<?>, List<Class<?>>> getRequiredTypeConverters() {
final HashMap<Class<?>, List<Class<?>>> _typeConvertersMap = new HashMap<Class<?>, List<Class<?>>>();
_typeConvertersMap.put(UserDao.class, UserDao_Impl.getRequiredConverters());
_typeConvertersMap.put(AppointmentDao.class, AppointmentDao_Impl.getRequiredConverters());
_typeConvertersMap.put(MedicationDao.class, MedicationDao_Impl.getRequiredConverters());
return _typeConvertersMap;
}
@Override
@NonNull
public Set<Class<? extends AutoMigrationSpec>> getRequiredAutoMigrationSpecs() {
final HashSet<Class<? extends AutoMigrationSpec>> _autoMigrationSpecsSet = new HashSet<Class<? extends AutoMigrationSpec>>();
return _autoMigrationSpecsSet;
}
@Override
@NonNull
public List<Migration> getAutoMigrations(
@NonNull final Map<Class<? extends AutoMigrationSpec>, AutoMigrationSpec> autoMigrationSpecs) {
final List<Migration> _autoMigrations = new ArrayList<Migration>();
return _autoMigrations;
}
@Override
public UserDao userDao() {
if (_userDao != null) {
return _userDao;
} else {
synchronized(this) {
if(_userDao == null) {
_userDao = new UserDao_Impl(this);
}
return _userDao;
}
}
}
@Override
public AppointmentDao appointmentDao() {
if (_appointmentDao != null) {
return _appointmentDao;
} else {
synchronized(this) {
if(_appointmentDao == null) {
_appointmentDao = new AppointmentDao_Impl(this);
}
return _appointmentDao;
}
}
}
@Override
public MedicationDao medicationDao() {
if (_medicationDao != null) {
return _medicationDao;
} else {
synchronized(this) {
if(_medicationDao == null) {
_medicationDao = new MedicationDao_Impl(this);
}
return _medicationDao;
}
}
}
}

View File

@@ -1,243 +0,0 @@
package com.example.cuida.data.dao;
import android.database.Cursor;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.lifecycle.LiveData;
import androidx.room.EntityInsertionAdapter;
import androidx.room.RoomDatabase;
import androidx.room.RoomSQLiteQuery;
import androidx.room.util.CursorUtil;
import androidx.room.util.DBUtil;
import androidx.sqlite.db.SupportSQLiteStatement;
import com.example.cuida.data.model.Appointment;
import java.lang.Class;
import java.lang.Exception;
import java.lang.Override;
import java.lang.String;
import java.lang.SuppressWarnings;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.concurrent.Callable;
@SuppressWarnings({"unchecked", "deprecation"})
public final class AppointmentDao_Impl implements AppointmentDao {
private final RoomDatabase __db;
private final EntityInsertionAdapter<Appointment> __insertionAdapterOfAppointment;
public AppointmentDao_Impl(@NonNull final RoomDatabase __db) {
this.__db = __db;
this.__insertionAdapterOfAppointment = new EntityInsertionAdapter<Appointment>(__db) {
@Override
@NonNull
protected String createQuery() {
return "INSERT OR ABORT INTO `appointments` (`id`,`type`,`date`,`time`,`reason`,`isPast`) VALUES (nullif(?, 0),?,?,?,?,?)";
}
@Override
protected void bind(@NonNull final SupportSQLiteStatement statement,
final Appointment entity) {
statement.bindLong(1, entity.id);
if (entity.type == null) {
statement.bindNull(2);
} else {
statement.bindString(2, entity.type);
}
if (entity.date == null) {
statement.bindNull(3);
} else {
statement.bindString(3, entity.date);
}
if (entity.time == null) {
statement.bindNull(4);
} else {
statement.bindString(4, entity.time);
}
if (entity.reason == null) {
statement.bindNull(5);
} else {
statement.bindString(5, entity.reason);
}
final int _tmp = entity.isPast ? 1 : 0;
statement.bindLong(6, _tmp);
}
};
}
@Override
public void insert(final Appointment appointment) {
__db.assertNotSuspendingTransaction();
__db.beginTransaction();
try {
__insertionAdapterOfAppointment.insert(appointment);
__db.setTransactionSuccessful();
} finally {
__db.endTransaction();
}
}
@Override
public LiveData<List<Appointment>> getFutureAppointments() {
final String _sql = "SELECT * FROM appointments WHERE isPast = 0 ORDER BY date ASC, time ASC";
final RoomSQLiteQuery _statement = RoomSQLiteQuery.acquire(_sql, 0);
return __db.getInvalidationTracker().createLiveData(new String[] {"appointments"}, false, new Callable<List<Appointment>>() {
@Override
@Nullable
public List<Appointment> call() throws Exception {
final Cursor _cursor = DBUtil.query(__db, _statement, false, null);
try {
final int _cursorIndexOfId = CursorUtil.getColumnIndexOrThrow(_cursor, "id");
final int _cursorIndexOfType = CursorUtil.getColumnIndexOrThrow(_cursor, "type");
final int _cursorIndexOfDate = CursorUtil.getColumnIndexOrThrow(_cursor, "date");
final int _cursorIndexOfTime = CursorUtil.getColumnIndexOrThrow(_cursor, "time");
final int _cursorIndexOfReason = CursorUtil.getColumnIndexOrThrow(_cursor, "reason");
final int _cursorIndexOfIsPast = CursorUtil.getColumnIndexOrThrow(_cursor, "isPast");
final List<Appointment> _result = new ArrayList<Appointment>(_cursor.getCount());
while (_cursor.moveToNext()) {
final Appointment _item;
final String _tmpType;
if (_cursor.isNull(_cursorIndexOfType)) {
_tmpType = null;
} else {
_tmpType = _cursor.getString(_cursorIndexOfType);
}
final String _tmpDate;
if (_cursor.isNull(_cursorIndexOfDate)) {
_tmpDate = null;
} else {
_tmpDate = _cursor.getString(_cursorIndexOfDate);
}
final String _tmpTime;
if (_cursor.isNull(_cursorIndexOfTime)) {
_tmpTime = null;
} else {
_tmpTime = _cursor.getString(_cursorIndexOfTime);
}
final String _tmpReason;
if (_cursor.isNull(_cursorIndexOfReason)) {
_tmpReason = null;
} else {
_tmpReason = _cursor.getString(_cursorIndexOfReason);
}
final boolean _tmpIsPast;
final int _tmp;
_tmp = _cursor.getInt(_cursorIndexOfIsPast);
_tmpIsPast = _tmp != 0;
_item = new Appointment(_tmpType,_tmpDate,_tmpTime,_tmpReason,_tmpIsPast);
_item.id = _cursor.getInt(_cursorIndexOfId);
_result.add(_item);
}
return _result;
} finally {
_cursor.close();
}
}
@Override
protected void finalize() {
_statement.release();
}
});
}
@Override
public LiveData<List<Appointment>> getPastAppointments() {
final String _sql = "SELECT * FROM appointments WHERE isPast = 1 ORDER BY date DESC, time DESC";
final RoomSQLiteQuery _statement = RoomSQLiteQuery.acquire(_sql, 0);
return __db.getInvalidationTracker().createLiveData(new String[] {"appointments"}, false, new Callable<List<Appointment>>() {
@Override
@Nullable
public List<Appointment> call() throws Exception {
final Cursor _cursor = DBUtil.query(__db, _statement, false, null);
try {
final int _cursorIndexOfId = CursorUtil.getColumnIndexOrThrow(_cursor, "id");
final int _cursorIndexOfType = CursorUtil.getColumnIndexOrThrow(_cursor, "type");
final int _cursorIndexOfDate = CursorUtil.getColumnIndexOrThrow(_cursor, "date");
final int _cursorIndexOfTime = CursorUtil.getColumnIndexOrThrow(_cursor, "time");
final int _cursorIndexOfReason = CursorUtil.getColumnIndexOrThrow(_cursor, "reason");
final int _cursorIndexOfIsPast = CursorUtil.getColumnIndexOrThrow(_cursor, "isPast");
final List<Appointment> _result = new ArrayList<Appointment>(_cursor.getCount());
while (_cursor.moveToNext()) {
final Appointment _item;
final String _tmpType;
if (_cursor.isNull(_cursorIndexOfType)) {
_tmpType = null;
} else {
_tmpType = _cursor.getString(_cursorIndexOfType);
}
final String _tmpDate;
if (_cursor.isNull(_cursorIndexOfDate)) {
_tmpDate = null;
} else {
_tmpDate = _cursor.getString(_cursorIndexOfDate);
}
final String _tmpTime;
if (_cursor.isNull(_cursorIndexOfTime)) {
_tmpTime = null;
} else {
_tmpTime = _cursor.getString(_cursorIndexOfTime);
}
final String _tmpReason;
if (_cursor.isNull(_cursorIndexOfReason)) {
_tmpReason = null;
} else {
_tmpReason = _cursor.getString(_cursorIndexOfReason);
}
final boolean _tmpIsPast;
final int _tmp;
_tmp = _cursor.getInt(_cursorIndexOfIsPast);
_tmpIsPast = _tmp != 0;
_item = new Appointment(_tmpType,_tmpDate,_tmpTime,_tmpReason,_tmpIsPast);
_item.id = _cursor.getInt(_cursorIndexOfId);
_result.add(_item);
}
return _result;
} finally {
_cursor.close();
}
}
@Override
protected void finalize() {
_statement.release();
}
});
}
@Override
public List<String> getBookedTimesForDate(final String date) {
final String _sql = "SELECT time FROM appointments WHERE date = ?";
final RoomSQLiteQuery _statement = RoomSQLiteQuery.acquire(_sql, 1);
int _argIndex = 1;
if (date == null) {
_statement.bindNull(_argIndex);
} else {
_statement.bindString(_argIndex, date);
}
__db.assertNotSuspendingTransaction();
final Cursor _cursor = DBUtil.query(__db, _statement, false, null);
try {
final List<String> _result = new ArrayList<String>(_cursor.getCount());
while (_cursor.moveToNext()) {
final String _item;
if (_cursor.isNull(0)) {
_item = null;
} else {
_item = _cursor.getString(0);
}
_result.add(_item);
}
return _result;
} finally {
_cursor.close();
_statement.release();
}
}
@NonNull
public static List<Class<?>> getRequiredConverters() {
return Collections.emptyList();
}
}

View File

@@ -1,262 +0,0 @@
package com.example.cuida.data.dao;
import android.database.Cursor;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.lifecycle.LiveData;
import androidx.room.EntityDeletionOrUpdateAdapter;
import androidx.room.EntityInsertionAdapter;
import androidx.room.RoomDatabase;
import androidx.room.RoomSQLiteQuery;
import androidx.room.util.CursorUtil;
import androidx.room.util.DBUtil;
import androidx.sqlite.db.SupportSQLiteStatement;
import com.example.cuida.data.model.Medication;
import java.lang.Class;
import java.lang.Exception;
import java.lang.Override;
import java.lang.String;
import java.lang.SuppressWarnings;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.concurrent.Callable;
@SuppressWarnings({"unchecked", "deprecation"})
public final class MedicationDao_Impl implements MedicationDao {
private final RoomDatabase __db;
private final EntityInsertionAdapter<Medication> __insertionAdapterOfMedication;
private final EntityDeletionOrUpdateAdapter<Medication> __updateAdapterOfMedication;
public MedicationDao_Impl(@NonNull final RoomDatabase __db) {
this.__db = __db;
this.__insertionAdapterOfMedication = new EntityInsertionAdapter<Medication>(__db) {
@Override
@NonNull
protected String createQuery() {
return "INSERT OR ABORT INTO `medications` (`id`,`name`,`time`,`dosage`,`notes`,`isTaken`) VALUES (nullif(?, 0),?,?,?,?,?)";
}
@Override
protected void bind(@NonNull final SupportSQLiteStatement statement,
final Medication entity) {
statement.bindLong(1, entity.id);
if (entity.name == null) {
statement.bindNull(2);
} else {
statement.bindString(2, entity.name);
}
if (entity.time == null) {
statement.bindNull(3);
} else {
statement.bindString(3, entity.time);
}
if (entity.dosage == null) {
statement.bindNull(4);
} else {
statement.bindString(4, entity.dosage);
}
if (entity.notes == null) {
statement.bindNull(5);
} else {
statement.bindString(5, entity.notes);
}
final int _tmp = entity.isTaken ? 1 : 0;
statement.bindLong(6, _tmp);
}
};
this.__updateAdapterOfMedication = new EntityDeletionOrUpdateAdapter<Medication>(__db) {
@Override
@NonNull
protected String createQuery() {
return "UPDATE OR ABORT `medications` SET `id` = ?,`name` = ?,`time` = ?,`dosage` = ?,`notes` = ?,`isTaken` = ? WHERE `id` = ?";
}
@Override
protected void bind(@NonNull final SupportSQLiteStatement statement,
final Medication entity) {
statement.bindLong(1, entity.id);
if (entity.name == null) {
statement.bindNull(2);
} else {
statement.bindString(2, entity.name);
}
if (entity.time == null) {
statement.bindNull(3);
} else {
statement.bindString(3, entity.time);
}
if (entity.dosage == null) {
statement.bindNull(4);
} else {
statement.bindString(4, entity.dosage);
}
if (entity.notes == null) {
statement.bindNull(5);
} else {
statement.bindString(5, entity.notes);
}
final int _tmp = entity.isTaken ? 1 : 0;
statement.bindLong(6, _tmp);
statement.bindLong(7, entity.id);
}
};
}
@Override
public void insert(final Medication medication) {
__db.assertNotSuspendingTransaction();
__db.beginTransaction();
try {
__insertionAdapterOfMedication.insert(medication);
__db.setTransactionSuccessful();
} finally {
__db.endTransaction();
}
}
@Override
public void update(final Medication medication) {
__db.assertNotSuspendingTransaction();
__db.beginTransaction();
try {
__updateAdapterOfMedication.handle(medication);
__db.setTransactionSuccessful();
} finally {
__db.endTransaction();
}
}
@Override
public LiveData<List<Medication>> getAllMedications() {
final String _sql = "SELECT * FROM medications ORDER BY time ASC";
final RoomSQLiteQuery _statement = RoomSQLiteQuery.acquire(_sql, 0);
return __db.getInvalidationTracker().createLiveData(new String[] {"medications"}, false, new Callable<List<Medication>>() {
@Override
@Nullable
public List<Medication> call() throws Exception {
final Cursor _cursor = DBUtil.query(__db, _statement, false, null);
try {
final int _cursorIndexOfId = CursorUtil.getColumnIndexOrThrow(_cursor, "id");
final int _cursorIndexOfName = CursorUtil.getColumnIndexOrThrow(_cursor, "name");
final int _cursorIndexOfTime = CursorUtil.getColumnIndexOrThrow(_cursor, "time");
final int _cursorIndexOfDosage = CursorUtil.getColumnIndexOrThrow(_cursor, "dosage");
final int _cursorIndexOfNotes = CursorUtil.getColumnIndexOrThrow(_cursor, "notes");
final int _cursorIndexOfIsTaken = CursorUtil.getColumnIndexOrThrow(_cursor, "isTaken");
final List<Medication> _result = new ArrayList<Medication>(_cursor.getCount());
while (_cursor.moveToNext()) {
final Medication _item;
final String _tmpName;
if (_cursor.isNull(_cursorIndexOfName)) {
_tmpName = null;
} else {
_tmpName = _cursor.getString(_cursorIndexOfName);
}
final String _tmpTime;
if (_cursor.isNull(_cursorIndexOfTime)) {
_tmpTime = null;
} else {
_tmpTime = _cursor.getString(_cursorIndexOfTime);
}
final String _tmpDosage;
if (_cursor.isNull(_cursorIndexOfDosage)) {
_tmpDosage = null;
} else {
_tmpDosage = _cursor.getString(_cursorIndexOfDosage);
}
final String _tmpNotes;
if (_cursor.isNull(_cursorIndexOfNotes)) {
_tmpNotes = null;
} else {
_tmpNotes = _cursor.getString(_cursorIndexOfNotes);
}
_item = new Medication(_tmpName,_tmpTime,_tmpDosage,_tmpNotes);
_item.id = _cursor.getInt(_cursorIndexOfId);
final int _tmp;
_tmp = _cursor.getInt(_cursorIndexOfIsTaken);
_item.isTaken = _tmp != 0;
_result.add(_item);
}
return _result;
} finally {
_cursor.close();
}
}
@Override
protected void finalize() {
_statement.release();
}
});
}
@Override
public LiveData<Medication> getNextMedication() {
final String _sql = "SELECT * FROM medications ORDER BY time ASC LIMIT 1";
final RoomSQLiteQuery _statement = RoomSQLiteQuery.acquire(_sql, 0);
return __db.getInvalidationTracker().createLiveData(new String[] {"medications"}, false, new Callable<Medication>() {
@Override
@Nullable
public Medication call() throws Exception {
final Cursor _cursor = DBUtil.query(__db, _statement, false, null);
try {
final int _cursorIndexOfId = CursorUtil.getColumnIndexOrThrow(_cursor, "id");
final int _cursorIndexOfName = CursorUtil.getColumnIndexOrThrow(_cursor, "name");
final int _cursorIndexOfTime = CursorUtil.getColumnIndexOrThrow(_cursor, "time");
final int _cursorIndexOfDosage = CursorUtil.getColumnIndexOrThrow(_cursor, "dosage");
final int _cursorIndexOfNotes = CursorUtil.getColumnIndexOrThrow(_cursor, "notes");
final int _cursorIndexOfIsTaken = CursorUtil.getColumnIndexOrThrow(_cursor, "isTaken");
final Medication _result;
if (_cursor.moveToFirst()) {
final String _tmpName;
if (_cursor.isNull(_cursorIndexOfName)) {
_tmpName = null;
} else {
_tmpName = _cursor.getString(_cursorIndexOfName);
}
final String _tmpTime;
if (_cursor.isNull(_cursorIndexOfTime)) {
_tmpTime = null;
} else {
_tmpTime = _cursor.getString(_cursorIndexOfTime);
}
final String _tmpDosage;
if (_cursor.isNull(_cursorIndexOfDosage)) {
_tmpDosage = null;
} else {
_tmpDosage = _cursor.getString(_cursorIndexOfDosage);
}
final String _tmpNotes;
if (_cursor.isNull(_cursorIndexOfNotes)) {
_tmpNotes = null;
} else {
_tmpNotes = _cursor.getString(_cursorIndexOfNotes);
}
_result = new Medication(_tmpName,_tmpTime,_tmpDosage,_tmpNotes);
_result.id = _cursor.getInt(_cursorIndexOfId);
final int _tmp;
_tmp = _cursor.getInt(_cursorIndexOfIsTaken);
_result.isTaken = _tmp != 0;
} else {
_result = null;
}
return _result;
} finally {
_cursor.close();
}
}
@Override
protected void finalize() {
_statement.release();
}
});
}
@NonNull
public static List<Class<?>> getRequiredConverters() {
return Collections.emptyList();
}
}

View File

@@ -1,301 +0,0 @@
package com.example.cuida.data.dao;
import android.database.Cursor;
import androidx.annotation.NonNull;
import androidx.room.EntityDeletionOrUpdateAdapter;
import androidx.room.EntityInsertionAdapter;
import androidx.room.RoomDatabase;
import androidx.room.RoomSQLiteQuery;
import androidx.room.SharedSQLiteStatement;
import androidx.room.util.CursorUtil;
import androidx.room.util.DBUtil;
import androidx.sqlite.db.SupportSQLiteStatement;
import com.example.cuida.data.model.User;
import java.lang.Class;
import java.lang.Override;
import java.lang.String;
import java.lang.SuppressWarnings;
import java.util.Collections;
import java.util.List;
@SuppressWarnings({"unchecked", "deprecation"})
public final class UserDao_Impl implements UserDao {
private final RoomDatabase __db;
private final EntityInsertionAdapter<User> __insertionAdapterOfUser;
private final EntityDeletionOrUpdateAdapter<User> __updateAdapterOfUser;
private final SharedSQLiteStatement __preparedStmtOfDeleteAll;
public UserDao_Impl(@NonNull final RoomDatabase __db) {
this.__db = __db;
this.__insertionAdapterOfUser = new EntityInsertionAdapter<User>(__db) {
@Override
@NonNull
protected String createQuery() {
return "INSERT OR REPLACE INTO `users` (`uid`,`name`,`email`,`password`,`age`,`utenteNumber`,`profilePictureUri`) VALUES (nullif(?, 0),?,?,?,?,?,?)";
}
@Override
protected void bind(@NonNull final SupportSQLiteStatement statement, final User entity) {
statement.bindLong(1, entity.uid);
if (entity.name == null) {
statement.bindNull(2);
} else {
statement.bindString(2, entity.name);
}
if (entity.email == null) {
statement.bindNull(3);
} else {
statement.bindString(3, entity.email);
}
if (entity.password == null) {
statement.bindNull(4);
} else {
statement.bindString(4, entity.password);
}
statement.bindLong(5, entity.age);
if (entity.utenteNumber == null) {
statement.bindNull(6);
} else {
statement.bindString(6, entity.utenteNumber);
}
if (entity.profilePictureUri == null) {
statement.bindNull(7);
} else {
statement.bindString(7, entity.profilePictureUri);
}
}
};
this.__updateAdapterOfUser = new EntityDeletionOrUpdateAdapter<User>(__db) {
@Override
@NonNull
protected String createQuery() {
return "UPDATE OR ABORT `users` SET `uid` = ?,`name` = ?,`email` = ?,`password` = ?,`age` = ?,`utenteNumber` = ?,`profilePictureUri` = ? WHERE `uid` = ?";
}
@Override
protected void bind(@NonNull final SupportSQLiteStatement statement, final User entity) {
statement.bindLong(1, entity.uid);
if (entity.name == null) {
statement.bindNull(2);
} else {
statement.bindString(2, entity.name);
}
if (entity.email == null) {
statement.bindNull(3);
} else {
statement.bindString(3, entity.email);
}
if (entity.password == null) {
statement.bindNull(4);
} else {
statement.bindString(4, entity.password);
}
statement.bindLong(5, entity.age);
if (entity.utenteNumber == null) {
statement.bindNull(6);
} else {
statement.bindString(6, entity.utenteNumber);
}
if (entity.profilePictureUri == null) {
statement.bindNull(7);
} else {
statement.bindString(7, entity.profilePictureUri);
}
statement.bindLong(8, entity.uid);
}
};
this.__preparedStmtOfDeleteAll = new SharedSQLiteStatement(__db) {
@Override
@NonNull
public String createQuery() {
final String _query = "delete from users";
return _query;
}
};
}
@Override
public void insert(final User user) {
__db.assertNotSuspendingTransaction();
__db.beginTransaction();
try {
__insertionAdapterOfUser.insert(user);
__db.setTransactionSuccessful();
} finally {
__db.endTransaction();
}
}
@Override
public void update(final User user) {
__db.assertNotSuspendingTransaction();
__db.beginTransaction();
try {
__updateAdapterOfUser.handle(user);
__db.setTransactionSuccessful();
} finally {
__db.endTransaction();
}
}
@Override
public void deleteAll() {
__db.assertNotSuspendingTransaction();
final SupportSQLiteStatement _stmt = __preparedStmtOfDeleteAll.acquire();
try {
__db.beginTransaction();
try {
_stmt.executeUpdateDelete();
__db.setTransactionSuccessful();
} finally {
__db.endTransaction();
}
} finally {
__preparedStmtOfDeleteAll.release(_stmt);
}
}
@Override
public User login(final String email, final String password) {
final String _sql = "SELECT * FROM users WHERE email = ? AND password = ? LIMIT 1";
final RoomSQLiteQuery _statement = RoomSQLiteQuery.acquire(_sql, 2);
int _argIndex = 1;
if (email == null) {
_statement.bindNull(_argIndex);
} else {
_statement.bindString(_argIndex, email);
}
_argIndex = 2;
if (password == null) {
_statement.bindNull(_argIndex);
} else {
_statement.bindString(_argIndex, password);
}
__db.assertNotSuspendingTransaction();
final Cursor _cursor = DBUtil.query(__db, _statement, false, null);
try {
final int _cursorIndexOfUid = CursorUtil.getColumnIndexOrThrow(_cursor, "uid");
final int _cursorIndexOfName = CursorUtil.getColumnIndexOrThrow(_cursor, "name");
final int _cursorIndexOfEmail = CursorUtil.getColumnIndexOrThrow(_cursor, "email");
final int _cursorIndexOfPassword = CursorUtil.getColumnIndexOrThrow(_cursor, "password");
final int _cursorIndexOfAge = CursorUtil.getColumnIndexOrThrow(_cursor, "age");
final int _cursorIndexOfUtenteNumber = CursorUtil.getColumnIndexOrThrow(_cursor, "utenteNumber");
final int _cursorIndexOfProfilePictureUri = CursorUtil.getColumnIndexOrThrow(_cursor, "profilePictureUri");
final User _result;
if (_cursor.moveToFirst()) {
final String _tmpName;
if (_cursor.isNull(_cursorIndexOfName)) {
_tmpName = null;
} else {
_tmpName = _cursor.getString(_cursorIndexOfName);
}
final String _tmpEmail;
if (_cursor.isNull(_cursorIndexOfEmail)) {
_tmpEmail = null;
} else {
_tmpEmail = _cursor.getString(_cursorIndexOfEmail);
}
final String _tmpPassword;
if (_cursor.isNull(_cursorIndexOfPassword)) {
_tmpPassword = null;
} else {
_tmpPassword = _cursor.getString(_cursorIndexOfPassword);
}
final int _tmpAge;
_tmpAge = _cursor.getInt(_cursorIndexOfAge);
final String _tmpUtenteNumber;
if (_cursor.isNull(_cursorIndexOfUtenteNumber)) {
_tmpUtenteNumber = null;
} else {
_tmpUtenteNumber = _cursor.getString(_cursorIndexOfUtenteNumber);
}
_result = new User(_tmpName,_tmpEmail,_tmpPassword,_tmpAge,_tmpUtenteNumber);
_result.uid = _cursor.getInt(_cursorIndexOfUid);
if (_cursor.isNull(_cursorIndexOfProfilePictureUri)) {
_result.profilePictureUri = null;
} else {
_result.profilePictureUri = _cursor.getString(_cursorIndexOfProfilePictureUri);
}
} else {
_result = null;
}
return _result;
} finally {
_cursor.close();
_statement.release();
}
}
@Override
public User checkUser(final String email) {
final String _sql = "SELECT * FROM users WHERE email = ? LIMIT 1";
final RoomSQLiteQuery _statement = RoomSQLiteQuery.acquire(_sql, 1);
int _argIndex = 1;
if (email == null) {
_statement.bindNull(_argIndex);
} else {
_statement.bindString(_argIndex, email);
}
__db.assertNotSuspendingTransaction();
final Cursor _cursor = DBUtil.query(__db, _statement, false, null);
try {
final int _cursorIndexOfUid = CursorUtil.getColumnIndexOrThrow(_cursor, "uid");
final int _cursorIndexOfName = CursorUtil.getColumnIndexOrThrow(_cursor, "name");
final int _cursorIndexOfEmail = CursorUtil.getColumnIndexOrThrow(_cursor, "email");
final int _cursorIndexOfPassword = CursorUtil.getColumnIndexOrThrow(_cursor, "password");
final int _cursorIndexOfAge = CursorUtil.getColumnIndexOrThrow(_cursor, "age");
final int _cursorIndexOfUtenteNumber = CursorUtil.getColumnIndexOrThrow(_cursor, "utenteNumber");
final int _cursorIndexOfProfilePictureUri = CursorUtil.getColumnIndexOrThrow(_cursor, "profilePictureUri");
final User _result;
if (_cursor.moveToFirst()) {
final String _tmpName;
if (_cursor.isNull(_cursorIndexOfName)) {
_tmpName = null;
} else {
_tmpName = _cursor.getString(_cursorIndexOfName);
}
final String _tmpEmail;
if (_cursor.isNull(_cursorIndexOfEmail)) {
_tmpEmail = null;
} else {
_tmpEmail = _cursor.getString(_cursorIndexOfEmail);
}
final String _tmpPassword;
if (_cursor.isNull(_cursorIndexOfPassword)) {
_tmpPassword = null;
} else {
_tmpPassword = _cursor.getString(_cursorIndexOfPassword);
}
final int _tmpAge;
_tmpAge = _cursor.getInt(_cursorIndexOfAge);
final String _tmpUtenteNumber;
if (_cursor.isNull(_cursorIndexOfUtenteNumber)) {
_tmpUtenteNumber = null;
} else {
_tmpUtenteNumber = _cursor.getString(_cursorIndexOfUtenteNumber);
}
_result = new User(_tmpName,_tmpEmail,_tmpPassword,_tmpAge,_tmpUtenteNumber);
_result.uid = _cursor.getInt(_cursorIndexOfUid);
if (_cursor.isNull(_cursorIndexOfProfilePictureUri)) {
_result.profilePictureUri = null;
} else {
_result.profilePictureUri = _cursor.getString(_cursorIndexOfProfilePictureUri);
}
} else {
_result = null;
}
return _result;
} finally {
_cursor.close();
_statement.release();
}
}
@NonNull
public static List<Class<?>> getRequiredConverters() {
return Collections.emptyList();
}
}

View File

@@ -1,5 +1,7 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<resources> <resources>
<string name="default_web_client_id" translatable="false">844909242089-lvu2bh4u7hih6bm2a86rmdargnm4ul60.apps.googleusercontent.com</string>
<string name="firebase_database_url" translatable="false">https://cuidamais-7b904-default-rtdb.firebaseio.com</string>
<string name="gcm_defaultSenderId" translatable="false">844909242089</string> <string name="gcm_defaultSenderId" translatable="false">844909242089</string>
<string name="google_api_key" translatable="false">AIzaSyCrTuHBRLoHkockoJEgAI9O7-gQJT6CkW4</string> <string name="google_api_key" translatable="false">AIzaSyCrTuHBRLoHkockoJEgAI9O7-gQJT6CkW4</string>
<string name="google_app_id" translatable="false">1:844909242089:android:4a039a7dbec802836ab278</string> <string name="google_app_id" translatable="false">1:844909242089:android:4a039a7dbec802836ab278</string>

View File

@@ -33,29 +33,26 @@ com.example.cuida.app-jetified-play-services-auth-21.1.1-31 /Users/230405/.gradl
com.example.cuida.app-navigation-common-2.7.7-32 /Users/230405/.gradle/caches/9.2.1/transforms/8c34a1479fb45f03606f351b0fd81051/transformed/navigation-common-2.7.7/res com.example.cuida.app-navigation-common-2.7.7-32 /Users/230405/.gradle/caches/9.2.1/transforms/8c34a1479fb45f03606f351b0fd81051/transformed/navigation-common-2.7.7/res
com.example.cuida.app-jetified-tracing-1.2.0-33 /Users/230405/.gradle/caches/9.2.1/transforms/8f7c3aaa49a088bd6ac739af61f8214c/transformed/jetified-tracing-1.2.0/res com.example.cuida.app-jetified-tracing-1.2.0-33 /Users/230405/.gradle/caches/9.2.1/transforms/8f7c3aaa49a088bd6ac739af61f8214c/transformed/jetified-tracing-1.2.0/res
com.example.cuida.app-jetified-annotation-experimental-1.4.1-34 /Users/230405/.gradle/caches/9.2.1/transforms/952a946885186a29b79df603bee582a9/transformed/jetified-annotation-experimental-1.4.1/res com.example.cuida.app-jetified-annotation-experimental-1.4.1-34 /Users/230405/.gradle/caches/9.2.1/transforms/952a946885186a29b79df603bee582a9/transformed/jetified-annotation-experimental-1.4.1/res
com.example.cuida.app-room-runtime-2.6.1-35 /Users/230405/.gradle/caches/9.2.1/transforms/9c5c3758275ee2d0807c57a0d3dadc8f/transformed/room-runtime-2.6.1/res com.example.cuida.app-jetified-startup-runtime-1.1.1-35 /Users/230405/.gradle/caches/9.2.1/transforms/9dffa2c69d85c484de511f1d23413d8a/transformed/jetified-startup-runtime-1.1.1/res
com.example.cuida.app-jetified-startup-runtime-1.1.1-36 /Users/230405/.gradle/caches/9.2.1/transforms/9dffa2c69d85c484de511f1d23413d8a/transformed/jetified-startup-runtime-1.1.1/res com.example.cuida.app-jetified-firebase-common-20.4.2-36 /Users/230405/.gradle/caches/9.2.1/transforms/a1a60b9cf8f4df0c7d12dcea8f68c8a5/transformed/jetified-firebase-common-20.4.2/res
com.example.cuida.app-sqlite-2.4.0-37 /Users/230405/.gradle/caches/9.2.1/transforms/9f8b3772f2d67f1e4701863a279e999a/transformed/sqlite-2.4.0/res com.example.cuida.app-jetified-lifecycle-viewmodel-ktx-2.7.0-37 /Users/230405/.gradle/caches/9.2.1/transforms/a406e38dffcc8c0e637c3637541e2924/transformed/jetified-lifecycle-viewmodel-ktx-2.7.0/res
com.example.cuida.app-jetified-firebase-common-20.4.2-38 /Users/230405/.gradle/caches/9.2.1/transforms/a1a60b9cf8f4df0c7d12dcea8f68c8a5/transformed/jetified-firebase-common-20.4.2/res com.example.cuida.app-jetified-activity-1.8.0-38 /Users/230405/.gradle/caches/9.2.1/transforms/ab2779fe0a0feb63c847a7e9a2b7b84b/transformed/jetified-activity-1.8.0/res
com.example.cuida.app-jetified-lifecycle-viewmodel-ktx-2.7.0-39 /Users/230405/.gradle/caches/9.2.1/transforms/a406e38dffcc8c0e637c3637541e2924/transformed/jetified-lifecycle-viewmodel-ktx-2.7.0/res com.example.cuida.app-navigation-fragment-2.7.7-39 /Users/230405/.gradle/caches/9.2.1/transforms/b3230e13429098731f7d042862e01bd8/transformed/navigation-fragment-2.7.7/res
com.example.cuida.app-jetified-activity-1.8.0-40 /Users/230405/.gradle/caches/9.2.1/transforms/ab2779fe0a0feb63c847a7e9a2b7b84b/transformed/jetified-activity-1.8.0/res com.example.cuida.app-jetified-profileinstaller-1.3.0-40 /Users/230405/.gradle/caches/9.2.1/transforms/b5c9230263ab8c1331b200fc65433f48/transformed/jetified-profileinstaller-1.3.0/res
com.example.cuida.app-navigation-fragment-2.7.7-41 /Users/230405/.gradle/caches/9.2.1/transforms/b3230e13429098731f7d042862e01bd8/transformed/navigation-fragment-2.7.7/res com.example.cuida.app-jetified-play-services-base-18.5.0-41 /Users/230405/.gradle/caches/9.2.1/transforms/c3a0d4d8742ebf22d87b160ba131155d/transformed/jetified-play-services-base-18.5.0/res
com.example.cuida.app-jetified-profileinstaller-1.3.0-42 /Users/230405/.gradle/caches/9.2.1/transforms/b5c9230263ab8c1331b200fc65433f48/transformed/jetified-profileinstaller-1.3.0/res com.example.cuida.app-jetified-lifecycle-livedata-ktx-2.7.0-42 /Users/230405/.gradle/caches/9.2.1/transforms/c59ea141ed38bc8dfa391d87ad3eb08f/transformed/jetified-lifecycle-livedata-ktx-2.7.0/res
com.example.cuida.app-jetified-play-services-base-18.5.0-43 /Users/230405/.gradle/caches/9.2.1/transforms/c3a0d4d8742ebf22d87b160ba131155d/transformed/jetified-play-services-base-18.5.0/res com.example.cuida.app-jetified-savedstate-ktx-1.2.1-43 /Users/230405/.gradle/caches/9.2.1/transforms/c949a634e216538f08163eb18a881bab/transformed/jetified-savedstate-ktx-1.2.1/res
com.example.cuida.app-jetified-lifecycle-livedata-ktx-2.7.0-44 /Users/230405/.gradle/caches/9.2.1/transforms/c59ea141ed38bc8dfa391d87ad3eb08f/transformed/jetified-lifecycle-livedata-ktx-2.7.0/res com.example.cuida.app-jetified-lifecycle-viewmodel-savedstate-2.7.0-44 /Users/230405/.gradle/caches/9.2.1/transforms/d0467346b9699fb6fbdc7f0d1c97123d/transformed/jetified-lifecycle-viewmodel-savedstate-2.7.0/res
com.example.cuida.app-jetified-savedstate-ktx-1.2.1-45 /Users/230405/.gradle/caches/9.2.1/transforms/c949a634e216538f08163eb18a881bab/transformed/jetified-savedstate-ktx-1.2.1/res com.example.cuida.app-jetified-appcompat-resources-1.6.1-45 /Users/230405/.gradle/caches/9.2.1/transforms/dcfd61178c73a165dbeb505179e5eaec/transformed/jetified-appcompat-resources-1.6.1/res
com.example.cuida.app-jetified-lifecycle-viewmodel-savedstate-2.7.0-46 /Users/230405/.gradle/caches/9.2.1/transforms/d0467346b9699fb6fbdc7f0d1c97123d/transformed/jetified-lifecycle-viewmodel-savedstate-2.7.0/res com.example.cuida.app-constraintlayout-2.1.4-46 /Users/230405/.gradle/caches/9.2.1/transforms/edc6ef47c626d5db6ce1ebdca690bb8c/transformed/constraintlayout-2.1.4/res
com.example.cuida.app-sqlite-framework-2.4.0-47 /Users/230405/.gradle/caches/9.2.1/transforms/dc5016a40314d8538cff59ae524c601c/transformed/sqlite-framework-2.4.0/res com.example.cuida.app-drawerlayout-1.1.1-47 /Users/230405/.gradle/caches/9.2.1/transforms/efa41416af8a8c393e9817c74fbf484a/transformed/drawerlayout-1.1.1/res
com.example.cuida.app-jetified-appcompat-resources-1.6.1-48 /Users/230405/.gradle/caches/9.2.1/transforms/dcfd61178c73a165dbeb505179e5eaec/transformed/jetified-appcompat-resources-1.6.1/res com.example.cuida.app-navigation-runtime-2.7.7-48 /Users/230405/.gradle/caches/9.2.1/transforms/f54f7bb469e2768ed4fc74b847a84c75/transformed/navigation-runtime-2.7.7/res
com.example.cuida.app-constraintlayout-2.1.4-49 /Users/230405/.gradle/caches/9.2.1/transforms/edc6ef47c626d5db6ce1ebdca690bb8c/transformed/constraintlayout-2.1.4/res com.example.cuida.app-pngs-49 /Users/230405/Desktop/papcuida/app/build/generated/res/pngs/debug
com.example.cuida.app-drawerlayout-1.1.1-50 /Users/230405/.gradle/caches/9.2.1/transforms/efa41416af8a8c393e9817c74fbf484a/transformed/drawerlayout-1.1.1/res com.example.cuida.app-res-50 /Users/230405/Desktop/papcuida/app/build/generated/res/processDebugGoogleServices
com.example.cuida.app-navigation-runtime-2.7.7-51 /Users/230405/.gradle/caches/9.2.1/transforms/f54f7bb469e2768ed4fc74b847a84c75/transformed/navigation-runtime-2.7.7/res com.example.cuida.app-resValues-51 /Users/230405/Desktop/papcuida/app/build/generated/res/resValues/debug
com.example.cuida.app-pngs-52 /Users/230405/Desktop/papcuida/app/build/generated/res/pngs/debug com.example.cuida.app-updated_navigation_xml-52 /Users/230405/Desktop/papcuida/app/build/generated/updated_navigation_xml/debug
com.example.cuida.app-res-53 /Users/230405/Desktop/papcuida/app/build/generated/res/processDebugGoogleServices com.example.cuida.app-packageDebugResources-53 /Users/230405/Desktop/papcuida/app/build/intermediates/incremental/debug/packageDebugResources/merged.dir
com.example.cuida.app-resValues-54 /Users/230405/Desktop/papcuida/app/build/generated/res/resValues/debug com.example.cuida.app-packageDebugResources-54 /Users/230405/Desktop/papcuida/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir
com.example.cuida.app-updated_navigation_xml-55 /Users/230405/Desktop/papcuida/app/build/generated/updated_navigation_xml/debug com.example.cuida.app-debug-55 /Users/230405/Desktop/papcuida/app/build/intermediates/merged_res/debug/mergeDebugResources
com.example.cuida.app-packageDebugResources-56 /Users/230405/Desktop/papcuida/app/build/intermediates/incremental/debug/packageDebugResources/merged.dir com.example.cuida.app-debug-56 /Users/230405/Desktop/papcuida/app/src/debug/res
com.example.cuida.app-packageDebugResources-57 /Users/230405/Desktop/papcuida/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir com.example.cuida.app-main-57 /Users/230405/Desktop/papcuida/app/src/main/res
com.example.cuida.app-debug-58 /Users/230405/Desktop/papcuida/app/build/intermediates/merged_res/debug/mergeDebugResources
com.example.cuida.app-debug-59 /Users/230405/Desktop/papcuida/app/src/debug/res
com.example.cuida.app-main-60 /Users/230405/Desktop/papcuida/app/src/main/res

View File

@@ -1 +1 @@
{"room-compiler-2.6.1.jar (androidx.room:room-compiler:2.6.1)":"INCREMENTAL_AP"} {}

View File

@@ -0,0 +1 @@
[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":132,"crc":-938737914},{"key":"META-INF/ktor-client-okhttp.kotlin_module","name":"META-INF/ktor-client-okhttp.kotlin_module","size":109,"crc":704219316},{"key":"io/ktor/client/engine/okhttp/OkHttp.class","name":"io/ktor/client/engine/okhttp/OkHttp.class","size":2020,"crc":-199933328},{"key":"io/ktor/client/engine/okhttp/OkHttpCallback.class","name":"io/ktor/client/engine/okhttp/OkHttpCallback.class","size":2727,"crc":1406707907},{"key":"io/ktor/client/engine/okhttp/OkHttpConfig.class","name":"io/ktor/client/engine/okhttp/OkHttpConfig.class","size":5353,"crc":-844510827},{"key":"io/ktor/client/engine/okhttp/OkHttpEngine$1.class","name":"io/ktor/client/engine/okhttp/OkHttpEngine$1.class","size":5808,"crc":1758575505},{"key":"io/ktor/client/engine/okhttp/OkHttpEngine$Companion.class","name":"io/ktor/client/engine/okhttp/OkHttpEngine$Companion.class","size":1365,"crc":347143707},{"key":"io/ktor/client/engine/okhttp/OkHttpEngine$clientCache$1.class","name":"io/ktor/client/engine/okhttp/OkHttpEngine$clientCache$1.class","size":1643,"crc":1939751683},{"key":"io/ktor/client/engine/okhttp/OkHttpEngine$execute$1.class","name":"io/ktor/client/engine/okhttp/OkHttpEngine$execute$1.class","size":1780,"crc":-368485480},{"key":"io/ktor/client/engine/okhttp/OkHttpEngine$executeHttpRequest$1.class","name":"io/ktor/client/engine/okhttp/OkHttpEngine$executeHttpRequest$1.class","size":2205,"crc":1646458652},{"key":"io/ktor/client/engine/okhttp/OkHttpEngine$executeServerSendEventsRequest$1.class","name":"io/ktor/client/engine/okhttp/OkHttpEngine$executeServerSendEventsRequest$1.class","size":2180,"crc":-431049009},{"key":"io/ktor/client/engine/okhttp/OkHttpEngine$executeWebSocketRequest$1.class","name":"io/ktor/client/engine/okhttp/OkHttpEngine$executeWebSocketRequest$1.class","size":2145,"crc":-1059979281},{"key":"io/ktor/client/engine/okhttp/OkHttpEngine.class","name":"io/ktor/client/engine/okhttp/OkHttpEngine.class","size":19637,"crc":1644470746},{"key":"io/ktor/client/engine/okhttp/OkHttpEngineContainer.class","name":"io/ktor/client/engine/okhttp/OkHttpEngineContainer.class","size":1453,"crc":281059857},{"key":"io/ktor/client/engine/okhttp/OkHttpEngineKt$convertToOkHttpBody$3$1.class","name":"io/ktor/client/engine/okhttp/OkHttpEngineKt$convertToOkHttpBody$3$1.class","size":3628,"crc":356186421},{"key":"io/ktor/client/engine/okhttp/OkHttpEngineKt$toChannel$1.class","name":"io/ktor/client/engine/okhttp/OkHttpEngineKt$toChannel$1.class","size":9530,"crc":654233189},{"key":"io/ktor/client/engine/okhttp/OkHttpEngineKt.class","name":"io/ktor/client/engine/okhttp/OkHttpEngineKt.class","size":9735,"crc":1228298630},{"key":"io/ktor/client/engine/okhttp/OkHttpSSESession.class","name":"io/ktor/client/engine/okhttp/OkHttpSSESession.class","size":9053,"crc":1441494750},{"key":"io/ktor/client/engine/okhttp/OkHttpWebsocketSession$outgoing$1.class","name":"io/ktor/client/engine/okhttp/OkHttpWebsocketSession$outgoing$1.class","size":7302,"crc":-1483718656},{"key":"io/ktor/client/engine/okhttp/OkHttpWebsocketSession.class","name":"io/ktor/client/engine/okhttp/OkHttpWebsocketSession.class","size":14475,"crc":1414145656},{"key":"io/ktor/client/engine/okhttp/OkHttpWebsocketSessionKt.class","name":"io/ktor/client/engine/okhttp/OkHttpWebsocketSessionKt.class","size":1725,"crc":-1325931237},{"key":"io/ktor/client/engine/okhttp/OkUtilsKt$WhenMappings.class","name":"io/ktor/client/engine/okhttp/OkUtilsKt$WhenMappings.class","size":924,"crc":-1016500889},{"key":"io/ktor/client/engine/okhttp/OkUtilsKt$execute$2$1.class","name":"io/ktor/client/engine/okhttp/OkUtilsKt$execute$2$1.class","size":1365,"crc":-147330603},{"key":"io/ktor/client/engine/okhttp/OkUtilsKt$fromOkHttp$1.class","name":"io/ktor/client/engine/okhttp/OkUtilsKt$fromOkHttp$1.class","size":3883,"crc":-683622497},{"key":"io/ktor/client/engine/okhttp/OkUtilsKt.class","name":"io/ktor/client/engine/okhttp/OkUtilsKt.class","size":7434,"crc":364236605},{"key":"io/ktor/client/engine/okhttp/StreamAdapterIOException.class","name":"io/ktor/client/engine/okhttp/StreamAdapterIOException.class","size":920,"crc":-1613047870},{"key":"io/ktor/client/engine/okhttp/StreamRequestBody.class","name":"io/ktor/client/engine/okhttp/StreamRequestBody.class","size":4694,"crc":-1697710911},{"key":"io/ktor/client/engine/okhttp/UnsupportedFrameTypeException.class","name":"io/ktor/client/engine/okhttp/UnsupportedFrameTypeException.class","size":2134,"crc":-1263360979},{"key":"META-INF/services/io.ktor.client.HttpClientEngineContainer","name":"META-INF/services/io.ktor.client.HttpClientEngineContainer","size":50,"crc":416487309}]

View File

@@ -1 +0,0 @@
[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":235,"crc":718797243},{"key":"io/perfmark/package-info.class","name":"io/perfmark/package-info.class","size":250,"crc":141676732},{"key":"io/perfmark/TaskCloseable.class","name":"io/perfmark/TaskCloseable.class","size":526,"crc":96235971},{"key":"io/perfmark/Link.class","name":"io/perfmark/Link.class","size":560,"crc":1816791149},{"key":"io/perfmark/Tag.class","name":"io/perfmark/Tag.class","size":526,"crc":-457243040},{"key":"io/perfmark/StringFunction.class","name":"io/perfmark/StringFunction.class","size":275,"crc":1599672422},{"key":"io/perfmark/PerfMark.class","name":"io/perfmark/PerfMark.class","size":6074,"crc":-2096639980},{"key":"io/perfmark/Impl.class","name":"io/perfmark/Impl.class","size":3999,"crc":1120748387}]

File diff suppressed because one or more lines are too long

View File

@@ -1 +0,0 @@
[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":84,"crc":431655981},{"key":"io/grpc/PersistentHashArrayMappedTrie$Node.class","name":"io/grpc/PersistentHashArrayMappedTrie$Node.class","size":589,"crc":-105832600},{"key":"io/grpc/Context$ExecutableListener.class","name":"io/grpc/Context$ExecutableListener.class","size":1629,"crc":-1937358388},{"key":"io/grpc/Context$CancellationListener.class","name":"io/grpc/Context$CancellationListener.class","size":242,"crc":1447763035},{"key":"io/grpc/PersistentHashArrayMappedTrie$CompressedIndex.class","name":"io/grpc/PersistentHashArrayMappedTrie$CompressedIndex.class","size":5000,"crc":-1419904535},{"key":"io/grpc/Context$CancellableContext$1CancelOnExpiration.class","name":"io/grpc/Context$CancellableContext$1CancelOnExpiration.class","size":1408,"crc":-358917689},{"key":"io/grpc/Context$Storage.class","name":"io/grpc/Context$Storage.class","size":935,"crc":348678440},{"key":"io/grpc/Context$CanIgnoreReturnValue.class","name":"io/grpc/Context$CanIgnoreReturnValue.class","size":238,"crc":1147945673},{"key":"io/grpc/Context$CheckReturnValue.class","name":"io/grpc/Context$CheckReturnValue.class","size":230,"crc":-929780714},{"key":"io/grpc/Context.class","name":"io/grpc/Context.class","size":12340,"crc":494748780},{"key":"io/grpc/Deadline.class","name":"io/grpc/Deadline.class","size":6102,"crc":-298577043},{"key":"io/grpc/Deadline$SystemTicker.class","name":"io/grpc/Deadline$SystemTicker.class","size":654,"crc":70394235},{"key":"io/grpc/PersistentHashArrayMappedTrie.class","name":"io/grpc/PersistentHashArrayMappedTrie.class","size":1874,"crc":286471895},{"key":"io/grpc/ThreadLocalContextStorage.class","name":"io/grpc/ThreadLocalContextStorage.class","size":1806,"crc":-382495918},{"key":"io/grpc/Context$CancellableContext.class","name":"io/grpc/Context$CancellableContext.class","size":7910,"crc":5426547},{"key":"io/grpc/Deadline$Ticker.class","name":"io/grpc/Deadline$Ticker.class","size":366,"crc":-1379952297},{"key":"io/grpc/Context$1CurrentContextExecutor.class","name":"io/grpc/Context$1CurrentContextExecutor.class","size":935,"crc":-599960704},{"key":"io/grpc/PersistentHashArrayMappedTrie$Leaf.class","name":"io/grpc/PersistentHashArrayMappedTrie$Leaf.class","size":2416,"crc":-737175680},{"key":"io/grpc/Deadline$1.class","name":"io/grpc/Deadline$1.class","size":188,"crc":-1969567515},{"key":"io/grpc/Context$Key.class","name":"io/grpc/Context$Key.class","size":1795,"crc":-443791703},{"key":"io/grpc/Context$1.class","name":"io/grpc/Context$1.class","size":898,"crc":1101879841},{"key":"io/grpc/Context$DirectExecutor.class","name":"io/grpc/Context$DirectExecutor.class","size":1390,"crc":1383746730},{"key":"io/grpc/Context$2.class","name":"io/grpc/Context$2.class","size":1112,"crc":-1917592626},{"key":"io/grpc/Context$CancellableContext$1.class","name":"io/grpc/Context$CancellableContext$1.class","size":1039,"crc":1781262548},{"key":"io/grpc/Context$LazyStorage.class","name":"io/grpc/Context$LazyStorage.class","size":2543,"crc":1669208844},{"key":"io/grpc/Context$1FixedContextExecutor.class","name":"io/grpc/Context$1FixedContextExecutor.class","size":965,"crc":242022535},{"key":"io/grpc/PersistentHashArrayMappedTrie$CollisionLeaf.class","name":"io/grpc/PersistentHashArrayMappedTrie$CollisionLeaf.class","size":3953,"crc":-1748281613}]

View File

@@ -0,0 +1 @@
[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":1230,"crc":-1593573332},{"key":"META-INF/LICENSE.txt","name":"META-INF/LICENSE.txt","size":1178,"crc":1232761363},{"key":"META-INF/services/org.slf4j.spi.SLF4JServiceProvider","name":"META-INF/services/org.slf4j.spi.SLF4JServiceProvider","size":32,"crc":1394189182},{"key":"org/slf4j/nop/NOPServiceProvider.class","name":"org/slf4j/nop/NOPServiceProvider.class","size":1356,"crc":-2033387803},{"key":"META-INF/maven/org.slf4j/slf4j-nop/pom.xml","name":"META-INF/maven/org.slf4j/slf4j-nop/pom.xml","size":1294,"crc":-777528646},{"key":"META-INF/maven/org.slf4j/slf4j-nop/pom.properties","name":"META-INF/maven/org.slf4j/slf4j-nop/pom.properties","size":54,"crc":-1212894500},{"key":"META-INF/versions/9/module-info.class","name":"META-INF/versions/9/module-info.class","size":326,"crc":-56744258}]

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":84,"crc":203610458},{"key":"io/grpc/protobuf/lite/ProtoLiteUtils.class","name":"io/grpc/protobuf/lite/ProtoLiteUtils.class","size":3322,"crc":959663932},{"key":"io/grpc/protobuf/lite/ProtoLiteUtils$MessageMarshaller.class","name":"io/grpc/protobuf/lite/ProtoLiteUtils$MessageMarshaller.class","size":5950,"crc":1673302809},{"key":"io/grpc/protobuf/lite/ProtoInputStream.class","name":"io/grpc/protobuf/lite/ProtoInputStream.class","size":2898,"crc":-1583821909},{"key":"io/grpc/protobuf/lite/ProtoLiteUtils$MetadataMarshaller.class","name":"io/grpc/protobuf/lite/ProtoLiteUtils$MetadataMarshaller.class","size":2124,"crc":-1302852196}]

View File

@@ -0,0 +1 @@
[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":139,"crc":-1457599804},{"key":"com/google/errorprone/annotations/Immutable.class","name":"com/google/errorprone/annotations/Immutable.class","size":557,"crc":944048163},{"key":"com/google/errorprone/annotations/DoNotCall.class","name":"com/google/errorprone/annotations/DoNotCall.class","size":466,"crc":1872867737},{"key":"com/google/errorprone/annotations/InlineMe.class","name":"com/google/errorprone/annotations/InlineMe.class","size":514,"crc":883768174},{"key":"com/google/errorprone/annotations/Keep.class","name":"com/google/errorprone/annotations/Keep.class","size":502,"crc":1217687875},{"key":"com/google/errorprone/annotations/MustBeClosed.class","name":"com/google/errorprone/annotations/MustBeClosed.class","size":373,"crc":-206103592},{"key":"com/google/errorprone/annotations/CompileTimeConstant.class","name":"com/google/errorprone/annotations/CompileTimeConstant.class","size":479,"crc":-336729760},{"key":"com/google/errorprone/annotations/NoAllocation.class","name":"com/google/errorprone/annotations/NoAllocation.class","size":354,"crc":-1075197040},{"key":"com/google/errorprone/annotations/FormatMethod.class","name":"com/google/errorprone/annotations/FormatMethod.class","size":468,"crc":1864253011},{"key":"com/google/errorprone/annotations/concurrent/UnlockMethod.class","name":"com/google/errorprone/annotations/concurrent/UnlockMethod.class","size":500,"crc":1548497135},{"key":"com/google/errorprone/annotations/concurrent/LazyInit.class","name":"com/google/errorprone/annotations/concurrent/LazyInit.class","size":591,"crc":-563522066},{"key":"com/google/errorprone/annotations/concurrent/GuardedBy.class","name":"com/google/errorprone/annotations/concurrent/GuardedBy.class","size":458,"crc":1332826752},{"key":"com/google/errorprone/annotations/concurrent/LockMethod.class","name":"com/google/errorprone/annotations/concurrent/LockMethod.class","size":496,"crc":-729350029},{"key":"com/google/errorprone/annotations/Modifier.class","name":"com/google/errorprone/annotations/Modifier.class","size":1632,"crc":-747476869},{"key":"com/google/errorprone/annotations/OverridingMethodsMustInvokeSuper.class","name":"com/google/errorprone/annotations/OverridingMethodsMustInvokeSuper.class","size":489,"crc":39314687},{"key":"com/google/errorprone/annotations/Var.class","name":"com/google/errorprone/annotations/Var.class","size":609,"crc":-1952932057},{"key":"com/google/errorprone/annotations/FormatString.class","name":"com/google/errorprone/annotations/FormatString.class","size":452,"crc":-451822776},{"key":"com/google/errorprone/annotations/RequiredModifiers.class","name":"com/google/errorprone/annotations/RequiredModifiers.class","size":680,"crc":-412479129},{"key":"com/google/errorprone/annotations/CanIgnoreReturnValue.class","name":"com/google/errorprone/annotations/CanIgnoreReturnValue.class","size":496,"crc":-1425560277},{"key":"com/google/errorprone/annotations/RestrictedApi.class","name":"com/google/errorprone/annotations/RestrictedApi.class","size":652,"crc":-1796951627},{"key":"com/google/errorprone/annotations/IncompatibleModifiers.class","name":"com/google/errorprone/annotations/IncompatibleModifiers.class","size":688,"crc":1000288877},{"key":"com/google/errorprone/annotations/SuppressPackageLocation.class","name":"com/google/errorprone/annotations/SuppressPackageLocation.class","size":432,"crc":1877270479},{"key":"com/google/errorprone/annotations/CheckReturnValue.class","name":"com/google/errorprone/annotations/CheckReturnValue.class","size":505,"crc":1509703495},{"key":"com/google/errorprone/annotations/CompatibleWith.class","name":"com/google/errorprone/annotations/CompatibleWith.class","size":487,"crc":-1279807269},{"key":"com/google/errorprone/annotations/ForOverride.class","name":"com/google/errorprone/annotations/ForOverride.class","size":668,"crc":675420469},{"key":"com/google/errorprone/annotations/InlineMeValidationDisabled.class","name":"com/google/errorprone/annotations/InlineMeValidationDisabled.class","size":392,"crc":-287587548},{"key":"com/google/errorprone/annotations/DoNotMock.class","name":"com/google/errorprone/annotations/DoNotMock.class","size":598,"crc":-144144525},{"key":"META-INF/maven/com.google.errorprone/error_prone_annotations/pom.xml","name":"META-INF/maven/com.google.errorprone/error_prone_annotations/pom.xml","size":2159,"crc":-1303897536},{"key":"META-INF/maven/com.google.errorprone/error_prone_annotations/pom.properties","name":"META-INF/maven/com.google.errorprone/error_prone_annotations/pom.properties","size":80,"crc":-1486100955}]

File diff suppressed because one or more lines are too long

View File

@@ -1 +0,0 @@
[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":84,"crc":431655981},{"key":"io/grpc/protobuf/lite/ProtoInputStream.class","name":"io/grpc/protobuf/lite/ProtoInputStream.class","size":2898,"crc":-1583821909},{"key":"io/grpc/protobuf/lite/ProtoLiteUtils$MessageMarshaller.class","name":"io/grpc/protobuf/lite/ProtoLiteUtils$MessageMarshaller.class","size":5669,"crc":1044909881},{"key":"io/grpc/protobuf/lite/ProtoLiteUtils$MetadataMarshaller.class","name":"io/grpc/protobuf/lite/ProtoLiteUtils$MetadataMarshaller.class","size":2124,"crc":1552765146},{"key":"io/grpc/protobuf/lite/ProtoLiteUtils.class","name":"io/grpc/protobuf/lite/ProtoLiteUtils.class","size":2895,"crc":-179418357}]

View File

@@ -1 +0,0 @@
[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":130,"crc":81852216},{"key":"io/grpc/protobuf/lite/ProtoLiteUtils$MessageMarshaller.class","name":"io/grpc/protobuf/lite/ProtoLiteUtils$MessageMarshaller.class","size":5950,"crc":582038151},{"key":"io/grpc/protobuf/lite/ProtoLiteUtils.class","name":"io/grpc/protobuf/lite/ProtoLiteUtils.class","size":3271,"crc":-794891464},{"key":"io/grpc/protobuf/lite/ProtoInputStream.class","name":"io/grpc/protobuf/lite/ProtoInputStream.class","size":2898,"crc":-1583821909},{"key":"io/grpc/protobuf/lite/ProtoLiteUtils$MetadataMarshaller.class","name":"io/grpc/protobuf/lite/ProtoLiteUtils$MetadataMarshaller.class","size":2124,"crc":-1650257888}]

File diff suppressed because one or more lines are too long

View File

@@ -1 +0,0 @@
[{"key":"io/grpc/android/AndroidChannelBuilder$1.class","name":"io/grpc/android/AndroidChannelBuilder$1.class","size":243,"crc":1464412864},{"key":"io/grpc/android/AndroidChannelBuilder$AndroidChannel$1.class","name":"io/grpc/android/AndroidChannelBuilder$AndroidChannel$1.class","size":1579,"crc":1968745828},{"key":"io/grpc/android/AndroidChannelBuilder$AndroidChannel$2.class","name":"io/grpc/android/AndroidChannelBuilder$AndroidChannel$2.class","size":1428,"crc":-1068122467},{"key":"io/grpc/android/AndroidChannelBuilder$AndroidChannel$DefaultNetworkCallback.class","name":"io/grpc/android/AndroidChannelBuilder$AndroidChannel$DefaultNetworkCallback.class","size":1717,"crc":417016746},{"key":"io/grpc/android/AndroidChannelBuilder$AndroidChannel$NetworkReceiver.class","name":"io/grpc/android/AndroidChannelBuilder$AndroidChannel$NetworkReceiver.class","size":2034,"crc":1538502606},{"key":"io/grpc/android/AndroidChannelBuilder$AndroidChannel.class","name":"io/grpc/android/AndroidChannelBuilder$AndroidChannel.class","size":6315,"crc":1254461976},{"key":"io/grpc/android/AndroidChannelBuilder.class","name":"io/grpc/android/AndroidChannelBuilder.class","size":5180,"crc":1239201961},{"key":"io/grpc/android/BuildConfig.class","name":"io/grpc/android/BuildConfig.class","size":462,"crc":13095795},{"key":"io/grpc/android/UdsChannelBuilder.class","name":"io/grpc/android/UdsChannelBuilder.class","size":3284,"crc":2083698403},{"key":"io/grpc/android/UdsSocket$1.class","name":"io/grpc/android/UdsSocket$1.class","size":764,"crc":-1474615444},{"key":"io/grpc/android/UdsSocket$2.class","name":"io/grpc/android/UdsSocket$2.class","size":547,"crc":587466688},{"key":"io/grpc/android/UdsSocket$3.class","name":"io/grpc/android/UdsSocket$3.class","size":770,"crc":-659980139},{"key":"io/grpc/android/UdsSocket$4.class","name":"io/grpc/android/UdsSocket$4.class","size":548,"crc":-933716222},{"key":"io/grpc/android/UdsSocket.class","name":"io/grpc/android/UdsSocket.class","size":6876,"crc":1400832621},{"key":"io/grpc/android/UdsSocketFactory.class","name":"io/grpc/android/UdsSocketFactory.class","size":2079,"crc":-1136638836}]

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
[{"key":"com/google/firebase/appcheck/AppCheckTokenResult.class","name":"com/google/firebase/appcheck/AppCheckTokenResult.class","size":546,"crc":1721583355},{"key":"com/google/firebase/appcheck/interop/AppCheckTokenListener.class","name":"com/google/firebase/appcheck/interop/AppCheckTokenListener.class","size":333,"crc":1324441290},{"key":"com/google/firebase/appcheck/interop/BuildConfig.class","name":"com/google/firebase/appcheck/interop/BuildConfig.class","size":568,"crc":444197344},{"key":"com/google/firebase/appcheck/interop/InteropAppCheckTokenProvider.class","name":"com/google/firebase/appcheck/interop/InteropAppCheckTokenProvider.class","size":625,"crc":-2051022501}]

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1 +0,0 @@
[{"key":"androidx/sqlite/db/framework/FrameworkSQLiteDatabase$Api30Impl.class","name":"androidx/sqlite/db/framework/FrameworkSQLiteDatabase$Api30Impl.class","size":1735,"crc":452411602},{"key":"androidx/sqlite/db/framework/FrameworkSQLiteDatabase$Companion.class","name":"androidx/sqlite/db/framework/FrameworkSQLiteDatabase$Companion.class","size":1027,"crc":1660715098},{"key":"androidx/sqlite/db/framework/FrameworkSQLiteDatabase$query$cursorFactory$1.class","name":"androidx/sqlite/db/framework/FrameworkSQLiteDatabase$query$cursorFactory$1.class","size":3071,"crc":1881967715},{"key":"androidx/sqlite/db/framework/FrameworkSQLiteDatabase.class","name":"androidx/sqlite/db/framework/FrameworkSQLiteDatabase.class","size":16996,"crc":-824159393},{"key":"androidx/sqlite/db/framework/FrameworkSQLiteOpenHelper$Companion.class","name":"androidx/sqlite/db/framework/FrameworkSQLiteOpenHelper$Companion.class","size":931,"crc":-610316450},{"key":"androidx/sqlite/db/framework/FrameworkSQLiteOpenHelper$DBRefHolder.class","name":"androidx/sqlite/db/framework/FrameworkSQLiteOpenHelper$DBRefHolder.class","size":1304,"crc":573353440},{"key":"androidx/sqlite/db/framework/FrameworkSQLiteOpenHelper$OpenHelper$CallbackException.class","name":"androidx/sqlite/db/framework/FrameworkSQLiteOpenHelper$OpenHelper$CallbackException.class","size":2029,"crc":2062670205},{"key":"androidx/sqlite/db/framework/FrameworkSQLiteOpenHelper$OpenHelper$CallbackName.class","name":"androidx/sqlite/db/framework/FrameworkSQLiteOpenHelper$OpenHelper$CallbackName.class","size":2030,"crc":-1660751037},{"key":"androidx/sqlite/db/framework/FrameworkSQLiteOpenHelper$OpenHelper$Companion.class","name":"androidx/sqlite/db/framework/FrameworkSQLiteOpenHelper$OpenHelper$Companion.class","size":3017,"crc":592946049},{"key":"androidx/sqlite/db/framework/FrameworkSQLiteOpenHelper$OpenHelper$WhenMappings.class","name":"androidx/sqlite/db/framework/FrameworkSQLiteOpenHelper$OpenHelper$WhenMappings.class","size":1250,"crc":-1331356766},{"key":"androidx/sqlite/db/framework/FrameworkSQLiteOpenHelper$OpenHelper.class","name":"androidx/sqlite/db/framework/FrameworkSQLiteOpenHelper$OpenHelper.class","size":10855,"crc":-1302417490},{"key":"androidx/sqlite/db/framework/FrameworkSQLiteOpenHelper$lazyDelegate$1.class","name":"androidx/sqlite/db/framework/FrameworkSQLiteOpenHelper$lazyDelegate$1.class","size":3682,"crc":-1656147366},{"key":"androidx/sqlite/db/framework/FrameworkSQLiteOpenHelper.class","name":"androidx/sqlite/db/framework/FrameworkSQLiteOpenHelper.class","size":6486,"crc":-445431780},{"key":"androidx/sqlite/db/framework/FrameworkSQLiteOpenHelperFactory.class","name":"androidx/sqlite/db/framework/FrameworkSQLiteOpenHelperFactory.class","size":2026,"crc":1788852752},{"key":"androidx/sqlite/db/framework/FrameworkSQLiteProgram.class","name":"androidx/sqlite/db/framework/FrameworkSQLiteProgram.class","size":2250,"crc":2024523400},{"key":"androidx/sqlite/db/framework/FrameworkSQLiteStatement.class","name":"androidx/sqlite/db/framework/FrameworkSQLiteStatement.class","size":2014,"crc":-1915227351},{"key":"androidx/sqlite/util/ProcessLock$Companion.class","name":"androidx/sqlite/util/ProcessLock$Companion.class","size":2873,"crc":-1869193194},{"key":"androidx/sqlite/util/ProcessLock.class","name":"androidx/sqlite/util/ProcessLock.class","size":4637,"crc":-1618066634},{"key":"META-INF/androidx.sqlite_sqlite-framework.version","name":"META-INF/androidx.sqlite_sqlite-framework.version","size":6,"crc":-192393839},{"key":"META-INF/sqlite-framework_release.kotlin_module","name":"META-INF/sqlite-framework_release.kotlin_module","size":24,"crc":1613429616}]

View File

@@ -1 +0,0 @@
[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":81,"crc":-1059235062},{"key":"org/codehaus/mojo/animal_sniffer/IgnoreJRERequirement.class","name":"org/codehaus/mojo/animal_sniffer/IgnoreJRERequirement.class","size":495,"crc":-1068848301},{"key":"META-INF/maven/org.codehaus.mojo/animal-sniffer-annotations/pom.xml","name":"META-INF/maven/org.codehaus.mojo/animal-sniffer-annotations/pom.xml","size":2572,"crc":409789465},{"key":"META-INF/maven/org.codehaus.mojo/animal-sniffer-annotations/pom.properties","name":"META-INF/maven/org.codehaus.mojo/animal-sniffer-annotations/pom.properties","size":77,"crc":406840939}]

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":61,"crc":-128825844},{"key":"okhttp3/sse/EventSourceListener.class","name":"okhttp3/sse/EventSourceListener.class","size":1833,"crc":-1948954255},{"key":"okhttp3/sse/EventSources.class","name":"okhttp3/sse/EventSources.class","size":3206,"crc":817849967},{"key":"okhttp3/sse/EventSource$Factory.class","name":"okhttp3/sse/EventSource$Factory.class","size":841,"crc":972085600},{"key":"okhttp3/sse/EventSource.class","name":"okhttp3/sse/EventSource.class","size":632,"crc":-1844413027},{"key":"okhttp3/internal/sse/ServerSentEventReader.class","name":"okhttp3/internal/sse/ServerSentEventReader.class","size":5639,"crc":-784908992},{"key":"okhttp3/internal/sse/RealEventSource.class","name":"okhttp3/internal/sse/RealEventSource.class","size":6691,"crc":-662218754},{"key":"okhttp3/internal/sse/ServerSentEventReader$Callback.class","name":"okhttp3/internal/sse/ServerSentEventReader$Callback.class","size":877,"crc":693506050},{"key":"okhttp3/internal/sse/ServerSentEventReader$Companion.class","name":"okhttp3/internal/sse/ServerSentEventReader$Companion.class","size":2568,"crc":1095024341},{"key":"META-INF/okhttp-sse.kotlin_module","name":"META-INF/okhttp-sse.kotlin_module","size":24,"crc":1613429616}]

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1 +1 @@
[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":84,"crc":-795479778}] [{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":84,"crc":203610458}]

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":136,"crc":-202542824},{"key":"META-INF/ktor-client-websockets.kotlin_module","name":"META-INF/ktor-client-websockets.kotlin_module","size":24,"crc":-813369971},{"key":"io/ktor/client/plugins/websocket/empty/Empty.class","name":"io/ktor/client/plugins/websocket/empty/Empty.class","size":708,"crc":1817905188}]

View File

@@ -0,0 +1 @@
[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":140,"crc":-1873470111},{"key":"META-INF/ktor-serialization-kotlinx.kotlin_module","name":"META-INF/ktor-serialization-kotlinx.kotlin_module","size":141,"crc":1930801694},{"key":"io/ktor/serialization/kotlinx/ExtensionsJvmKt.class","name":"io/ktor/serialization/kotlinx/ExtensionsJvmKt.class","size":2597,"crc":1502109399},{"key":"io/ktor/serialization/kotlinx/ExtensionsKt.class","name":"io/ktor/serialization/kotlinx/ExtensionsKt.class","size":3615,"crc":-1490969238},{"key":"io/ktor/serialization/kotlinx/KotlinxSerializationConverter$deserialize$$inlined$map$1$2$1.class","name":"io/ktor/serialization/kotlinx/KotlinxSerializationConverter$deserialize$$inlined$map$1$2$1.class","size":1642,"crc":221063480},{"key":"io/ktor/serialization/kotlinx/KotlinxSerializationConverter$deserialize$$inlined$map$1$2.class","name":"io/ktor/serialization/kotlinx/KotlinxSerializationConverter$deserialize$$inlined$map$1$2.class","size":4057,"crc":1591883983},{"key":"io/ktor/serialization/kotlinx/KotlinxSerializationConverter$deserialize$$inlined$map$1.class","name":"io/ktor/serialization/kotlinx/KotlinxSerializationConverter$deserialize$$inlined$map$1.class","size":3331,"crc":-1186317082},{"key":"io/ktor/serialization/kotlinx/KotlinxSerializationConverter$deserialize$1.class","name":"io/ktor/serialization/kotlinx/KotlinxSerializationConverter$deserialize$1.class","size":2109,"crc":-1646578984},{"key":"io/ktor/serialization/kotlinx/KotlinxSerializationConverter$deserialize$fromExtension$2.class","name":"io/ktor/serialization/kotlinx/KotlinxSerializationConverter$deserialize$fromExtension$2.class","size":3465,"crc":-1676920127},{"key":"io/ktor/serialization/kotlinx/KotlinxSerializationConverter$serialize$$inlined$map$1$2$1.class","name":"io/ktor/serialization/kotlinx/KotlinxSerializationConverter$serialize$$inlined$map$1$2$1.class","size":1630,"crc":-1965564597},{"key":"io/ktor/serialization/kotlinx/KotlinxSerializationConverter$serialize$$inlined$map$1$2.class","name":"io/ktor/serialization/kotlinx/KotlinxSerializationConverter$serialize$$inlined$map$1$2.class","size":4104,"crc":1476726680},{"key":"io/ktor/serialization/kotlinx/KotlinxSerializationConverter$serialize$$inlined$map$1.class","name":"io/ktor/serialization/kotlinx/KotlinxSerializationConverter$serialize$$inlined$map$1.class","size":3435,"crc":603797295},{"key":"io/ktor/serialization/kotlinx/KotlinxSerializationConverter$serialize$1.class","name":"io/ktor/serialization/kotlinx/KotlinxSerializationConverter$serialize$1.class","size":2094,"crc":119568512},{"key":"io/ktor/serialization/kotlinx/KotlinxSerializationConverter$serialize$fromExtension$2.class","name":"io/ktor/serialization/kotlinx/KotlinxSerializationConverter$serialize$fromExtension$2.class","size":3353,"crc":-1414526416},{"key":"io/ktor/serialization/kotlinx/KotlinxSerializationConverter.class","name":"io/ktor/serialization/kotlinx/KotlinxSerializationConverter.class","size":13268,"crc":-902004467},{"key":"io/ktor/serialization/kotlinx/KotlinxSerializationConverterKt.class","name":"io/ktor/serialization/kotlinx/KotlinxSerializationConverterKt.class","size":1991,"crc":-389580822},{"key":"io/ktor/serialization/kotlinx/KotlinxSerializationExtension.class","name":"io/ktor/serialization/kotlinx/KotlinxSerializationExtension.class","size":1853,"crc":709542882},{"key":"io/ktor/serialization/kotlinx/KotlinxSerializationExtensionProvider.class","name":"io/ktor/serialization/kotlinx/KotlinxSerializationExtensionProvider.class","size":901,"crc":1431776749},{"key":"io/ktor/serialization/kotlinx/KotlinxWebsocketSerializationConverter.class","name":"io/ktor/serialization/kotlinx/KotlinxWebsocketSerializationConverter.class","size":6829,"crc":-811728098},{"key":"io/ktor/serialization/kotlinx/SerializerLookupKt.class","name":"io/ktor/serialization/kotlinx/SerializerLookupKt.class","size":9494,"crc":952412522}]

View File

@@ -0,0 +1 @@
[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":25,"crc":-301826126},{"key":"META-INF/kotlinx-io-bytestring.kotlin_module","name":"META-INF/kotlinx-io-bytestring.kotlin_module","size":121,"crc":1558073913},{"key":"kotlinx/io/bytestring/Base64Kt.class","name":"kotlinx/io/bytestring/Base64Kt.class","size":6402,"crc":1284460183},{"key":"kotlinx/io/bytestring/BenignDataRace.class","name":"kotlinx/io/bytestring/BenignDataRace.class","size":714,"crc":456339113},{"key":"kotlinx/io/bytestring/ByteString$Companion.class","name":"kotlinx/io/bytestring/ByteString$Companion.class","size":1675,"crc":750127120},{"key":"kotlinx/io/bytestring/ByteString.class","name":"kotlinx/io/bytestring/ByteString.class","size":7399,"crc":1134938286},{"key":"kotlinx/io/bytestring/ByteStringBuilder.class","name":"kotlinx/io/bytestring/ByteStringBuilder.class","size":4238,"crc":-1465779133},{"key":"kotlinx/io/bytestring/ByteStringBuilderKt.class","name":"kotlinx/io/bytestring/ByteStringBuilderKt.class","size":2768,"crc":-701628381},{"key":"kotlinx/io/bytestring/ByteStringJvmExtKt.class","name":"kotlinx/io/bytestring/ByteStringJvmExtKt.class","size":6429,"crc":-425841552},{"key":"kotlinx/io/bytestring/ByteStringKt.class","name":"kotlinx/io/bytestring/ByteStringKt.class","size":8065,"crc":-1123259371},{"key":"kotlinx/io/bytestring/HexKt.class","name":"kotlinx/io/bytestring/HexKt.class","size":2918,"crc":1599284133},{"key":"kotlinx/io/bytestring/unsafe/UnsafeByteStringApi.class","name":"kotlinx/io/bytestring/unsafe/UnsafeByteStringApi.class","size":1142,"crc":-767947983},{"key":"kotlinx/io/bytestring/unsafe/UnsafeByteStringOperations.class","name":"kotlinx/io/bytestring/unsafe/UnsafeByteStringOperations.class","size":2139,"crc":-2003380543}]

View File

@@ -0,0 +1 @@
[{"key":"com/google/firebase/ai/ondevice/interop/Candidate.class","name":"com/google/firebase/ai/ondevice/interop/Candidate.class","size":1456,"crc":1988090090},{"key":"com/google/firebase/ai/ondevice/interop/CountTokensResponse.class","name":"com/google/firebase/ai/ondevice/interop/CountTokensResponse.class","size":800,"crc":1754398618},{"key":"com/google/firebase/ai/ondevice/interop/FinishReason$Companion.class","name":"com/google/firebase/ai/ondevice/interop/FinishReason$Companion.class","size":1068,"crc":-756775243},{"key":"com/google/firebase/ai/ondevice/interop/FinishReason.class","name":"com/google/firebase/ai/ondevice/interop/FinishReason.class","size":1463,"crc":-1527794062},{"key":"com/google/firebase/ai/ondevice/interop/FirebaseAIOnDeviceException$Companion.class","name":"com/google/firebase/ai/ondevice/interop/FirebaseAIOnDeviceException$Companion.class","size":1924,"crc":404113926},{"key":"com/google/firebase/ai/ondevice/interop/FirebaseAIOnDeviceException.class","name":"com/google/firebase/ai/ondevice/interop/FirebaseAIOnDeviceException.class","size":1712,"crc":-522230395},{"key":"com/google/firebase/ai/ondevice/interop/FirebaseAIOnDeviceGenerativeModelFactory.class","name":"com/google/firebase/ai/ondevice/interop/FirebaseAIOnDeviceGenerativeModelFactory.class","size":773,"crc":1791356998},{"key":"com/google/firebase/ai/ondevice/interop/FirebaseAIOnDeviceInvalidRequestException.class","name":"com/google/firebase/ai/ondevice/interop/FirebaseAIOnDeviceInvalidRequestException.class","size":1334,"crc":1629611433},{"key":"com/google/firebase/ai/ondevice/interop/FirebaseAIOnDeviceNotAvailableException.class","name":"com/google/firebase/ai/ondevice/interop/FirebaseAIOnDeviceNotAvailableException.class","size":1385,"crc":-167871634},{"key":"com/google/firebase/ai/ondevice/interop/FirebaseAIOnDeviceUnknownException.class","name":"com/google/firebase/ai/ondevice/interop/FirebaseAIOnDeviceUnknownException.class","size":1375,"crc":1816940225},{"key":"com/google/firebase/ai/ondevice/interop/GenerateContentRequest.class","name":"com/google/firebase/ai/ondevice/interop/GenerateContentRequest.class","size":3279,"crc":-842027580},{"key":"com/google/firebase/ai/ondevice/interop/GenerateContentResponse.class","name":"com/google/firebase/ai/ondevice/interop/GenerateContentResponse.class","size":1450,"crc":-1916371506},{"key":"com/google/firebase/ai/ondevice/interop/GenerativeModel.class","name":"com/google/firebase/ai/ondevice/interop/GenerativeModel.class","size":2627,"crc":-71474571},{"key":"com/google/firebase/ai/ondevice/interop/ImagePart.class","name":"com/google/firebase/ai/ondevice/interop/ImagePart.class","size":1189,"crc":724680026},{"key":"com/google/firebase/ai/ondevice/interop/Part.class","name":"com/google/firebase/ai/ondevice/interop/Part.class","size":411,"crc":-2034068917},{"key":"com/google/firebase/ai/ondevice/interop/TextPart.class","name":"com/google/firebase/ai/ondevice/interop/TextPart.class","size":1165,"crc":-1026111472},{"key":"com/google/firebase/ai/ondevice/interop/BuildConfig.class","name":"com/google/firebase/ai/ondevice/interop/BuildConfig.class","size":584,"crc":1694835601},{"key":"META-INF/com.google.firebase-firebase-ai-ondevice-interop.kotlin_module","name":"META-INF/com.google.firebase-firebase-ai-ondevice-interop.kotlin_module","size":24,"crc":-813369971}]

View File

@@ -0,0 +1 @@
[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":540,"crc":-181951485},{"key":"org/reactivestreams/FlowAdapters$FlowPublisherFromReactive.class","name":"org/reactivestreams/FlowAdapters$FlowPublisherFromReactive.class","size":1653,"crc":-642892969},{"key":"org/reactivestreams/FlowAdapters$FlowToReactiveProcessor.class","name":"org/reactivestreams/FlowAdapters$FlowToReactiveProcessor.class","size":2640,"crc":1053026093},{"key":"org/reactivestreams/FlowAdapters$FlowToReactiveSubscriber.class","name":"org/reactivestreams/FlowAdapters$FlowToReactiveSubscriber.class","size":2053,"crc":-582117669},{"key":"org/reactivestreams/FlowAdapters$FlowToReactiveSubscription.class","name":"org/reactivestreams/FlowAdapters$FlowToReactiveSubscription.class","size":943,"crc":432683932},{"key":"org/reactivestreams/FlowAdapters$ReactivePublisherFromFlow.class","name":"org/reactivestreams/FlowAdapters$ReactivePublisherFromFlow.class","size":1678,"crc":573896940},{"key":"org/reactivestreams/FlowAdapters$ReactiveToFlowProcessor.class","name":"org/reactivestreams/FlowAdapters$ReactiveToFlowProcessor.class","size":2686,"crc":-524422571},{"key":"org/reactivestreams/FlowAdapters$ReactiveToFlowSubscriber.class","name":"org/reactivestreams/FlowAdapters$ReactiveToFlowSubscriber.class","size":2081,"crc":1095520221},{"key":"org/reactivestreams/FlowAdapters$ReactiveToFlowSubscription.class","name":"org/reactivestreams/FlowAdapters$ReactiveToFlowSubscription.class","size":933,"crc":1765410780},{"key":"org/reactivestreams/FlowAdapters.class","name":"org/reactivestreams/FlowAdapters.class","size":5570,"crc":-592759692},{"key":"org/reactivestreams/Processor.class","name":"org/reactivestreams/Processor.class","size":350,"crc":1062901816},{"key":"org/reactivestreams/Publisher.class","name":"org/reactivestreams/Publisher.class","size":292,"crc":1456438003},{"key":"org/reactivestreams/Subscriber.class","name":"org/reactivestreams/Subscriber.class","size":376,"crc":1415092387},{"key":"org/reactivestreams/Subscription.class","name":"org/reactivestreams/Subscription.class","size":173,"crc":-2058767666}]

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
[{"key":"io/grpc/android/AndroidChannelBuilder$1.class","name":"io/grpc/android/AndroidChannelBuilder$1.class","size":243,"crc":1464412864},{"key":"io/grpc/android/AndroidChannelBuilder$AndroidChannel$1.class","name":"io/grpc/android/AndroidChannelBuilder$AndroidChannel$1.class","size":1579,"crc":-815518671},{"key":"io/grpc/android/AndroidChannelBuilder$AndroidChannel$2.class","name":"io/grpc/android/AndroidChannelBuilder$AndroidChannel$2.class","size":1428,"crc":-141545456},{"key":"io/grpc/android/AndroidChannelBuilder$AndroidChannel$DefaultNetworkCallback.class","name":"io/grpc/android/AndroidChannelBuilder$AndroidChannel$DefaultNetworkCallback.class","size":1717,"crc":-802315508},{"key":"io/grpc/android/AndroidChannelBuilder$AndroidChannel$NetworkReceiver.class","name":"io/grpc/android/AndroidChannelBuilder$AndroidChannel$NetworkReceiver.class","size":2034,"crc":-2058720723},{"key":"io/grpc/android/AndroidChannelBuilder$AndroidChannel.class","name":"io/grpc/android/AndroidChannelBuilder$AndroidChannel.class","size":6315,"crc":-1132706027},{"key":"io/grpc/android/AndroidChannelBuilder.class","name":"io/grpc/android/AndroidChannelBuilder.class","size":5180,"crc":549560547},{"key":"io/grpc/android/BuildConfig.class","name":"io/grpc/android/BuildConfig.class","size":462,"crc":13095795},{"key":"io/grpc/android/UdsChannelBuilder.class","name":"io/grpc/android/UdsChannelBuilder.class","size":3284,"crc":2083698403},{"key":"io/grpc/android/UdsSocket$1.class","name":"io/grpc/android/UdsSocket$1.class","size":764,"crc":-1474615444},{"key":"io/grpc/android/UdsSocket$2.class","name":"io/grpc/android/UdsSocket$2.class","size":547,"crc":587466688},{"key":"io/grpc/android/UdsSocket$3.class","name":"io/grpc/android/UdsSocket$3.class","size":770,"crc":-659980139},{"key":"io/grpc/android/UdsSocket$4.class","name":"io/grpc/android/UdsSocket$4.class","size":548,"crc":-933716222},{"key":"io/grpc/android/UdsSocket.class","name":"io/grpc/android/UdsSocket.class","size":6876,"crc":1400832621},{"key":"io/grpc/android/UdsSocketFactory.class","name":"io/grpc/android/UdsSocketFactory.class","size":2079,"crc":-1136638836}]

View File

@@ -0,0 +1 @@
[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":132,"crc":-1356840831},{"key":"META-INF/ktor-serialization.kotlin_module","name":"META-INF/ktor-serialization.kotlin_module","size":98,"crc":242314292},{"key":"io/ktor/serialization/Configuration$DefaultImpls.class","name":"io/ktor/serialization/Configuration$DefaultImpls.class","size":1779,"crc":-2102042492},{"key":"io/ktor/serialization/Configuration.class","name":"io/ktor/serialization/Configuration.class","size":1159,"crc":1873880155},{"key":"io/ktor/serialization/ContentConvertException.class","name":"io/ktor/serialization/ContentConvertException.class","size":1230,"crc":-555113254},{"key":"io/ktor/serialization/ContentConverter.class","name":"io/ktor/serialization/ContentConverter.class","size":1809,"crc":-532358691},{"key":"io/ktor/serialization/ContentConverterKt$deserialize$$inlined$map$1$2$1.class","name":"io/ktor/serialization/ContentConverterKt$deserialize$$inlined$map$1$2$1.class","size":1515,"crc":328448297},{"key":"io/ktor/serialization/ContentConverterKt$deserialize$$inlined$map$1$2.class","name":"io/ktor/serialization/ContentConverterKt$deserialize$$inlined$map$1$2.class","size":3842,"crc":521489501},{"key":"io/ktor/serialization/ContentConverterKt$deserialize$$inlined$map$1.class","name":"io/ktor/serialization/ContentConverterKt$deserialize$$inlined$map$1.class","size":3268,"crc":2028900911},{"key":"io/ktor/serialization/ContentConverterKt$deserialize$1.class","name":"io/ktor/serialization/ContentConverterKt$deserialize$1.class","size":1636,"crc":-420731732},{"key":"io/ktor/serialization/ContentConverterKt$deserialize$result$2.class","name":"io/ktor/serialization/ContentConverterKt$deserialize$result$2.class","size":3342,"crc":1418900276},{"key":"io/ktor/serialization/ContentConverterKt.class","name":"io/ktor/serialization/ContentConverterKt.class","size":7542,"crc":-873701597},{"key":"io/ktor/serialization/JsonConvertException.class","name":"io/ktor/serialization/JsonConvertException.class","size":1242,"crc":1826057268},{"key":"io/ktor/serialization/WebsocketContentConvertException.class","name":"io/ktor/serialization/WebsocketContentConvertException.class","size":1268,"crc":432358297},{"key":"io/ktor/serialization/WebsocketContentConverter$DefaultImpls.class","name":"io/ktor/serialization/WebsocketContentConverter$DefaultImpls.class","size":1599,"crc":-986768865},{"key":"io/ktor/serialization/WebsocketContentConverter.class","name":"io/ktor/serialization/WebsocketContentConverter.class","size":1853,"crc":-1939087626},{"key":"io/ktor/serialization/WebsocketContentConverterKt.class","name":"io/ktor/serialization/WebsocketContentConverterKt.class","size":5522,"crc":-730728901},{"key":"io/ktor/serialization/WebsocketConverterNotFoundException.class","name":"io/ktor/serialization/WebsocketConverterNotFoundException.class","size":1290,"crc":1054057235},{"key":"io/ktor/serialization/WebsocketDeserializeException.class","name":"io/ktor/serialization/WebsocketDeserializeException.class","size":1680,"crc":-495869802}]

View File

@@ -0,0 +1 @@
[{"key":"META-INF/MANIFEST.MF","name":"META-INF/MANIFEST.MF","size":74,"crc":1112998917},{"key":"retrofit2/converter/gson/GsonRequestBodyConverter.class","name":"retrofit2/converter/gson/GsonRequestBodyConverter.class","size":2548,"crc":1245820514},{"key":"retrofit2/converter/gson/GsonConverterFactory.class","name":"retrofit2/converter/gson/GsonConverterFactory.class","size":2510,"crc":1705556919},{"key":"retrofit2/converter/gson/GsonResponseBodyConverter.class","name":"retrofit2/converter/gson/GsonResponseBodyConverter.class","size":2242,"crc":1111087981},{"key":"retrofit2/converter/gson/package-info.class","name":"retrofit2/converter/gson/package-info.class","size":213,"crc":-152528326}]

Some files were not shown because too many files have changed in this diff Show More