o login esta a dar erro
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -22,6 +22,9 @@ public final class ActivityLoginBinding implements ViewBinding {
|
|||||||
@NonNull
|
@NonNull
|
||||||
private final ScrollView rootView;
|
private final ScrollView rootView;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final MaterialButton biometricButton;
|
||||||
|
|
||||||
@NonNull
|
@NonNull
|
||||||
public final MaterialCheckBox checkboxRememberMe;
|
public final MaterialCheckBox checkboxRememberMe;
|
||||||
|
|
||||||
@@ -41,10 +44,12 @@ public final class ActivityLoginBinding implements ViewBinding {
|
|||||||
public final TextView registerLink;
|
public final TextView registerLink;
|
||||||
|
|
||||||
private ActivityLoginBinding(@NonNull ScrollView rootView,
|
private ActivityLoginBinding(@NonNull ScrollView rootView,
|
||||||
@NonNull MaterialCheckBox checkboxRememberMe, @NonNull TextInputEditText emailEditText,
|
@NonNull MaterialButton biometricButton, @NonNull MaterialCheckBox checkboxRememberMe,
|
||||||
@NonNull TextView forgotPasswordLink, @NonNull MaterialButton loginButton,
|
@NonNull TextInputEditText emailEditText, @NonNull TextView forgotPasswordLink,
|
||||||
@NonNull TextInputEditText passwordEditText, @NonNull TextView registerLink) {
|
@NonNull MaterialButton loginButton, @NonNull TextInputEditText passwordEditText,
|
||||||
|
@NonNull TextView registerLink) {
|
||||||
this.rootView = rootView;
|
this.rootView = rootView;
|
||||||
|
this.biometricButton = biometricButton;
|
||||||
this.checkboxRememberMe = checkboxRememberMe;
|
this.checkboxRememberMe = checkboxRememberMe;
|
||||||
this.emailEditText = emailEditText;
|
this.emailEditText = emailEditText;
|
||||||
this.forgotPasswordLink = forgotPasswordLink;
|
this.forgotPasswordLink = forgotPasswordLink;
|
||||||
@@ -80,6 +85,12 @@ public final class ActivityLoginBinding implements ViewBinding {
|
|||||||
// This is done to optimize the compiled bytecode for size and performance.
|
// This is done to optimize the compiled bytecode for size and performance.
|
||||||
int id;
|
int id;
|
||||||
missingId: {
|
missingId: {
|
||||||
|
id = R.id.biometric_button;
|
||||||
|
MaterialButton biometricButton = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (biometricButton == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
id = R.id.checkbox_remember_me;
|
id = R.id.checkbox_remember_me;
|
||||||
MaterialCheckBox checkboxRememberMe = ViewBindings.findChildViewById(rootView, id);
|
MaterialCheckBox checkboxRememberMe = ViewBindings.findChildViewById(rootView, id);
|
||||||
if (checkboxRememberMe == null) {
|
if (checkboxRememberMe == null) {
|
||||||
@@ -116,8 +127,8 @@ public final class ActivityLoginBinding implements ViewBinding {
|
|||||||
break missingId;
|
break missingId;
|
||||||
}
|
}
|
||||||
|
|
||||||
return new ActivityLoginBinding((ScrollView) rootView, checkboxRememberMe, emailEditText,
|
return new ActivityLoginBinding((ScrollView) rootView, biometricButton, checkboxRememberMe,
|
||||||
forgotPasswordLink, loginButton, passwordEditText, registerLink);
|
emailEditText, forgotPasswordLink, loginButton, passwordEditText, registerLink);
|
||||||
}
|
}
|
||||||
String missingId = rootView.getResources().getResourceName(id);
|
String missingId = rootView.getResources().getResourceName(id);
|
||||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||||
|
|||||||
@@ -7,13 +7,14 @@ import android.view.ViewGroup;
|
|||||||
import android.widget.LinearLayout;
|
import android.widget.LinearLayout;
|
||||||
import android.widget.RadioButton;
|
import android.widget.RadioButton;
|
||||||
import android.widget.RadioGroup;
|
import android.widget.RadioGroup;
|
||||||
import android.widget.TextView;
|
|
||||||
import androidx.annotation.NonNull;
|
import androidx.annotation.NonNull;
|
||||||
import androidx.annotation.Nullable;
|
import androidx.annotation.Nullable;
|
||||||
import androidx.recyclerview.widget.RecyclerView;
|
import androidx.recyclerview.widget.RecyclerView;
|
||||||
import androidx.viewbinding.ViewBinding;
|
import androidx.viewbinding.ViewBinding;
|
||||||
import androidx.viewbinding.ViewBindings;
|
import androidx.viewbinding.ViewBindings;
|
||||||
import com.example.cuida.R;
|
import com.example.cuida.R;
|
||||||
|
import com.google.android.material.button.MaterialButton;
|
||||||
|
import com.google.android.material.chip.ChipGroup;
|
||||||
import com.google.android.material.textfield.TextInputEditText;
|
import com.google.android.material.textfield.TextInputEditText;
|
||||||
import com.google.android.material.textfield.TextInputLayout;
|
import com.google.android.material.textfield.TextInputLayout;
|
||||||
import java.lang.NullPointerException;
|
import java.lang.NullPointerException;
|
||||||
@@ -24,6 +25,12 @@ public final class DialogAddMedicationBinding implements ViewBinding {
|
|||||||
@NonNull
|
@NonNull
|
||||||
private final LinearLayout rootView;
|
private final LinearLayout rootView;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final MaterialButton btnAddTime;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final ChipGroup chipGroupTimes;
|
||||||
|
|
||||||
@NonNull
|
@NonNull
|
||||||
public final TextInputEditText editMedName;
|
public final TextInputEditText editMedName;
|
||||||
|
|
||||||
@@ -48,16 +55,15 @@ public final class DialogAddMedicationBinding implements ViewBinding {
|
|||||||
@NonNull
|
@NonNull
|
||||||
public final RecyclerView recyclerSearchResults;
|
public final RecyclerView recyclerSearchResults;
|
||||||
|
|
||||||
@NonNull
|
|
||||||
public final TextView textMedTime;
|
|
||||||
|
|
||||||
private DialogAddMedicationBinding(@NonNull LinearLayout rootView,
|
private DialogAddMedicationBinding(@NonNull LinearLayout rootView,
|
||||||
|
@NonNull MaterialButton btnAddTime, @NonNull ChipGroup chipGroupTimes,
|
||||||
@NonNull TextInputEditText editMedName, @NonNull TextInputEditText editMedNotes,
|
@NonNull TextInputEditText editMedName, @NonNull TextInputEditText editMedNotes,
|
||||||
@NonNull TextInputLayout layoutMedName, @NonNull RadioGroup radioGroupRoute,
|
@NonNull TextInputLayout layoutMedName, @NonNull RadioGroup radioGroupRoute,
|
||||||
@NonNull RadioButton radioInhalatory, @NonNull RadioButton radioOral,
|
@NonNull RadioButton radioInhalatory, @NonNull RadioButton radioOral,
|
||||||
@NonNull RadioButton radioTopical, @NonNull RecyclerView recyclerSearchResults,
|
@NonNull RadioButton radioTopical, @NonNull RecyclerView recyclerSearchResults) {
|
||||||
@NonNull TextView textMedTime) {
|
|
||||||
this.rootView = rootView;
|
this.rootView = rootView;
|
||||||
|
this.btnAddTime = btnAddTime;
|
||||||
|
this.chipGroupTimes = chipGroupTimes;
|
||||||
this.editMedName = editMedName;
|
this.editMedName = editMedName;
|
||||||
this.editMedNotes = editMedNotes;
|
this.editMedNotes = editMedNotes;
|
||||||
this.layoutMedName = layoutMedName;
|
this.layoutMedName = layoutMedName;
|
||||||
@@ -66,7 +72,6 @@ public final class DialogAddMedicationBinding implements ViewBinding {
|
|||||||
this.radioOral = radioOral;
|
this.radioOral = radioOral;
|
||||||
this.radioTopical = radioTopical;
|
this.radioTopical = radioTopical;
|
||||||
this.recyclerSearchResults = recyclerSearchResults;
|
this.recyclerSearchResults = recyclerSearchResults;
|
||||||
this.textMedTime = textMedTime;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -96,6 +101,18 @@ public final class DialogAddMedicationBinding implements ViewBinding {
|
|||||||
// This is done to optimize the compiled bytecode for size and performance.
|
// This is done to optimize the compiled bytecode for size and performance.
|
||||||
int id;
|
int id;
|
||||||
missingId: {
|
missingId: {
|
||||||
|
id = R.id.btn_add_time;
|
||||||
|
MaterialButton btnAddTime = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (btnAddTime == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.chip_group_times;
|
||||||
|
ChipGroup chipGroupTimes = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (chipGroupTimes == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
id = R.id.edit_med_name;
|
id = R.id.edit_med_name;
|
||||||
TextInputEditText editMedName = ViewBindings.findChildViewById(rootView, id);
|
TextInputEditText editMedName = ViewBindings.findChildViewById(rootView, id);
|
||||||
if (editMedName == null) {
|
if (editMedName == null) {
|
||||||
@@ -144,15 +161,9 @@ public final class DialogAddMedicationBinding implements ViewBinding {
|
|||||||
break missingId;
|
break missingId;
|
||||||
}
|
}
|
||||||
|
|
||||||
id = R.id.text_med_time;
|
return new DialogAddMedicationBinding((LinearLayout) rootView, btnAddTime, chipGroupTimes,
|
||||||
TextView textMedTime = ViewBindings.findChildViewById(rootView, id);
|
editMedName, editMedNotes, layoutMedName, radioGroupRoute, radioInhalatory, radioOral,
|
||||||
if (textMedTime == null) {
|
radioTopical, recyclerSearchResults);
|
||||||
break missingId;
|
|
||||||
}
|
|
||||||
|
|
||||||
return new DialogAddMedicationBinding((LinearLayout) rootView, editMedName, editMedNotes,
|
|
||||||
layoutMedName, radioGroupRoute, radioInhalatory, radioOral, radioTopical,
|
|
||||||
recyclerSearchResults, textMedTime);
|
|
||||||
}
|
}
|
||||||
String missingId = rootView.getResources().getResourceName(id);
|
String missingId = rootView.getResources().getResourceName(id);
|
||||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||||
|
|||||||
@@ -24,6 +24,9 @@ public final class FragmentProfileBinding implements ViewBinding {
|
|||||||
@NonNull
|
@NonNull
|
||||||
public final MaterialButton buttonEditProfile;
|
public final MaterialButton buttonEditProfile;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final MaterialButton buttonExportReport;
|
||||||
|
|
||||||
@NonNull
|
@NonNull
|
||||||
public final MaterialButton buttonLogout;
|
public final MaterialButton buttonLogout;
|
||||||
|
|
||||||
@@ -43,12 +46,13 @@ public final class FragmentProfileBinding implements ViewBinding {
|
|||||||
public final TextView profileUtente;
|
public final TextView profileUtente;
|
||||||
|
|
||||||
private FragmentProfileBinding(@NonNull LinearLayout rootView,
|
private FragmentProfileBinding(@NonNull LinearLayout rootView,
|
||||||
@NonNull MaterialButton buttonEditProfile, @NonNull MaterialButton buttonLogout,
|
@NonNull MaterialButton buttonEditProfile, @NonNull MaterialButton buttonExportReport,
|
||||||
@NonNull TextView profileAge, @NonNull TextView profileEmail,
|
@NonNull MaterialButton buttonLogout, @NonNull TextView profileAge,
|
||||||
@NonNull ShapeableImageView profileImage, @NonNull TextView profileName,
|
@NonNull TextView profileEmail, @NonNull ShapeableImageView profileImage,
|
||||||
@NonNull TextView profileUtente) {
|
@NonNull TextView profileName, @NonNull TextView profileUtente) {
|
||||||
this.rootView = rootView;
|
this.rootView = rootView;
|
||||||
this.buttonEditProfile = buttonEditProfile;
|
this.buttonEditProfile = buttonEditProfile;
|
||||||
|
this.buttonExportReport = buttonExportReport;
|
||||||
this.buttonLogout = buttonLogout;
|
this.buttonLogout = buttonLogout;
|
||||||
this.profileAge = profileAge;
|
this.profileAge = profileAge;
|
||||||
this.profileEmail = profileEmail;
|
this.profileEmail = profileEmail;
|
||||||
@@ -90,6 +94,12 @@ public final class FragmentProfileBinding implements ViewBinding {
|
|||||||
break missingId;
|
break missingId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
id = R.id.button_export_report;
|
||||||
|
MaterialButton buttonExportReport = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (buttonExportReport == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
id = R.id.button_logout;
|
id = R.id.button_logout;
|
||||||
MaterialButton buttonLogout = ViewBindings.findChildViewById(rootView, id);
|
MaterialButton buttonLogout = ViewBindings.findChildViewById(rootView, id);
|
||||||
if (buttonLogout == null) {
|
if (buttonLogout == null) {
|
||||||
@@ -126,8 +136,9 @@ public final class FragmentProfileBinding implements ViewBinding {
|
|||||||
break missingId;
|
break missingId;
|
||||||
}
|
}
|
||||||
|
|
||||||
return new FragmentProfileBinding((LinearLayout) rootView, buttonEditProfile, buttonLogout,
|
return new FragmentProfileBinding((LinearLayout) rootView, buttonEditProfile,
|
||||||
profileAge, profileEmail, profileImage, profileName, profileUtente);
|
buttonExportReport, buttonLogout, profileAge, profileEmail, profileImage, profileName,
|
||||||
|
profileUtente);
|
||||||
}
|
}
|
||||||
String missingId = rootView.getResources().getResourceName(id);
|
String missingId = rootView.getResources().getResourceName(id);
|
||||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="activity_login" modulePackage="com.example.cuida" filePath="app/src/main/res/layout/activity_login.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.ScrollView"><Targets><Target tag="layout/activity_login_0" view="ScrollView"><Expressions/><location startLine="1" startOffset="0" endLine="125" endOffset="12"/></Target><Target id="@+id/email_edit_text" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="49" startOffset="20" endLine="55" endOffset="62"/></Target><Target id="@+id/password_edit_text" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="64" startOffset="20" endLine="70" endOffset="58"/></Target><Target id="@+id/checkbox_remember_me" view="com.google.android.material.checkbox.MaterialCheckBox"><Expressions/><location startLine="73" startOffset="16" endLine="79" endOffset="55"/></Target><Target id="@+id/login_button" view="com.google.android.material.button.MaterialButton"><Expressions/><location startLine="81" startOffset="16" endLine="88" endOffset="55"/></Target><Target id="@+id/forgot_password_link" view="TextView"><Expressions/><location startLine="90" startOffset="16" endLine="97" endOffset="42"/></Target><Target id="@+id/register_link" view="TextView"><Expressions/><location startLine="115" startOffset="12" endLine="121" endOffset="59"/></Target></Targets></Layout>
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="activity_login" modulePackage="com.example.cuida" filePath="app/src/main/res/layout/activity_login.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.ScrollView"><Targets><Target tag="layout/activity_login_0" view="ScrollView"><Expressions/><location startLine="1" startOffset="0" endLine="136" endOffset="12"/></Target><Target id="@+id/email_edit_text" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="49" startOffset="20" endLine="55" endOffset="62"/></Target><Target id="@+id/password_edit_text" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="64" startOffset="20" endLine="70" endOffset="58"/></Target><Target id="@+id/checkbox_remember_me" view="com.google.android.material.checkbox.MaterialCheckBox"><Expressions/><location startLine="73" startOffset="16" endLine="79" endOffset="55"/></Target><Target id="@+id/login_button" view="com.google.android.material.button.MaterialButton"><Expressions/><location startLine="81" startOffset="16" endLine="88" endOffset="54"/></Target><Target id="@+id/biometric_button" view="com.google.android.material.button.MaterialButton"><Expressions/><location startLine="90" startOffset="16" endLine="98" endOffset="46"/></Target><Target id="@+id/forgot_password_link" view="TextView"><Expressions/><location startLine="101" startOffset="16" endLine="108" endOffset="42"/></Target><Target id="@+id/register_link" view="TextView"><Expressions/><location startLine="126" startOffset="12" endLine="132" endOffset="59"/></Target></Targets></Layout>
|
||||||
@@ -1 +1 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="dialog_add_medication" modulePackage="com.example.cuida" filePath="app/src/main/res/layout/dialog_add_medication.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/dialog_add_medication_0" view="LinearLayout"><Expressions/><location startLine="1" startOffset="0" endLine="108" endOffset="14"/></Target><Target id="@+id/layout_med_name" view="com.google.android.material.textfield.TextInputLayout"><Expressions/><location startLine="16" startOffset="12" endLine="29" endOffset="67"/></Target><Target id="@+id/edit_med_name" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="24" startOffset="16" endLine="28" endOffset="54"/></Target><Target id="@+id/recycler_search_results" view="androidx.recyclerview.widget.RecyclerView"><Expressions/><location startLine="41" startOffset="8" endLine="48" endOffset="62"/></Target><Target id="@+id/text_med_time" view="TextView"><Expressions/><location startLine="51" startOffset="4" endLine="60" endOffset="43"/></Target><Target id="@+id/radio_group_route" view="RadioGroup"><Expressions/><location startLine="69" startOffset="4" endLine="92" endOffset="16"/></Target><Target id="@+id/radio_oral" view="RadioButton"><Expressions/><location startLine="75" startOffset="8" endLine="79" endOffset="49"/></Target><Target id="@+id/radio_topical" view="RadioButton"><Expressions/><location startLine="81" startOffset="8" endLine="85" endOffset="49"/></Target><Target id="@+id/radio_inhalatory" view="RadioButton"><Expressions/><location startLine="87" startOffset="8" endLine="91" endOffset="61"/></Target><Target id="@+id/edit_med_notes" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="100" startOffset="8" endLine="105" endOffset="33"/></Target></Targets></Layout>
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="dialog_add_medication" modulePackage="com.example.cuida" filePath="app/src/main/res/layout/dialog_add_medication.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/dialog_add_medication_0" view="LinearLayout"><Expressions/><location startLine="1" startOffset="0" endLine="114" endOffset="14"/></Target><Target id="@+id/layout_med_name" view="com.google.android.material.textfield.TextInputLayout"><Expressions/><location startLine="7" startOffset="4" endLine="20" endOffset="59"/></Target><Target id="@+id/edit_med_name" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="15" startOffset="8" endLine="19" endOffset="46"/></Target><Target id="@+id/recycler_search_results" view="androidx.recyclerview.widget.RecyclerView"><Expressions/><location startLine="23" startOffset="4" endLine="31" endOffset="33"/></Target><Target id="@+id/btn_add_time" view="com.google.android.material.button.MaterialButton"><Expressions/><location startLine="48" startOffset="8" endLine="56" endOffset="36"/></Target><Target id="@+id/chip_group_times" view="com.google.android.material.chip.ChipGroup"><Expressions/><location startLine="59" startOffset="4" endLine="64" endOffset="30"/></Target><Target id="@+id/radio_group_route" view="RadioGroup"><Expressions/><location startLine="74" startOffset="4" endLine="97" endOffset="16"/></Target><Target id="@+id/radio_oral" view="RadioButton"><Expressions/><location startLine="80" startOffset="8" endLine="84" endOffset="49"/></Target><Target id="@+id/radio_topical" view="RadioButton"><Expressions/><location startLine="86" startOffset="8" endLine="90" endOffset="49"/></Target><Target id="@+id/radio_inhalatory" view="RadioButton"><Expressions/><location startLine="92" startOffset="8" endLine="96" endOffset="61"/></Target><Target id="@+id/edit_med_notes" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="106" startOffset="8" endLine="111" endOffset="33"/></Target></Targets></Layout>
|
||||||
@@ -1 +1 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="fragment_profile" modulePackage="com.example.cuida" filePath="app/src/main/res/layout/fragment_profile.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/fragment_profile_0" view="LinearLayout"><Expressions/><location startLine="1" startOffset="0" endLine="126" endOffset="14"/></Target><Target id="@+id/profile_image" view="com.google.android.material.imageview.ShapeableImageView"><Expressions/><location startLine="10" startOffset="4" endLine="17" endOffset="43"/></Target><Target id="@+id/profile_name" view="TextView"><Expressions/><location startLine="34" startOffset="12" endLine="42" endOffset="50"/></Target><Target id="@+id/profile_email" view="TextView"><Expressions/><location startLine="44" startOffset="12" endLine="51" endOffset="51"/></Target><Target id="@+id/profile_age" view="TextView"><Expressions/><location startLine="73" startOffset="16" endLine="80" endOffset="60"/></Target><Target id="@+id/profile_utente" view="TextView"><Expressions/><location startLine="96" startOffset="16" endLine="103" endOffset="60"/></Target><Target id="@+id/button_edit_profile" view="com.google.android.material.button.MaterialButton"><Expressions/><location startLine="109" startOffset="4" endLine="115" endOffset="56"/></Target><Target id="@+id/button_logout" view="com.google.android.material.button.MaterialButton"><Expressions/><location startLine="117" startOffset="4" endLine="124" endOffset="47"/></Target></Targets></Layout>
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="fragment_profile" modulePackage="com.example.cuida" filePath="app/src/main/res/layout/fragment_profile.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/fragment_profile_0" view="LinearLayout"><Expressions/><location startLine="1" startOffset="0" endLine="137" endOffset="14"/></Target><Target id="@+id/profile_image" view="com.google.android.material.imageview.ShapeableImageView"><Expressions/><location startLine="10" startOffset="4" endLine="17" endOffset="43"/></Target><Target id="@+id/profile_name" view="TextView"><Expressions/><location startLine="34" startOffset="12" endLine="42" endOffset="50"/></Target><Target id="@+id/profile_email" view="TextView"><Expressions/><location startLine="44" startOffset="12" endLine="51" endOffset="51"/></Target><Target id="@+id/profile_age" view="TextView"><Expressions/><location startLine="73" startOffset="16" endLine="80" endOffset="60"/></Target><Target id="@+id/profile_utente" view="TextView"><Expressions/><location startLine="96" startOffset="16" endLine="103" endOffset="60"/></Target><Target id="@+id/button_edit_profile" view="com.google.android.material.button.MaterialButton"><Expressions/><location startLine="109" startOffset="4" endLine="115" endOffset="56"/></Target><Target id="@+id/button_export_report" view="com.google.android.material.button.MaterialButton"><Expressions/><location startLine="117" startOffset="4" endLine="125" endOffset="51"/></Target><Target id="@+id/button_logout" view="com.google.android.material.button.MaterialButton"><Expressions/><location startLine="128" startOffset="4" endLine="135" endOffset="47"/></Target></Targets></Layout>
|
||||||
@@ -1 +1 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="activity_login" modulePackage="com.example.cuida" filePath="app/src/main/res/layout/activity_login.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.ScrollView"><Targets><Target tag="layout/activity_login_0" view="ScrollView"><Expressions/><location startLine="1" startOffset="0" endLine="125" endOffset="12"/></Target><Target id="@+id/email_edit_text" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="49" startOffset="20" endLine="55" endOffset="62"/></Target><Target id="@+id/password_edit_text" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="64" startOffset="20" endLine="70" endOffset="58"/></Target><Target id="@+id/checkbox_remember_me" view="com.google.android.material.checkbox.MaterialCheckBox"><Expressions/><location startLine="73" startOffset="16" endLine="79" endOffset="55"/></Target><Target id="@+id/login_button" view="com.google.android.material.button.MaterialButton"><Expressions/><location startLine="81" startOffset="16" endLine="88" endOffset="55"/></Target><Target id="@+id/forgot_password_link" view="TextView"><Expressions/><location startLine="90" startOffset="16" endLine="97" endOffset="42"/></Target><Target id="@+id/register_link" view="TextView"><Expressions/><location startLine="115" startOffset="12" endLine="121" endOffset="59"/></Target></Targets></Layout>
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="activity_login" modulePackage="com.example.cuida" filePath="app/src/main/res/layout/activity_login.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.ScrollView"><Targets><Target tag="layout/activity_login_0" view="ScrollView"><Expressions/><location startLine="1" startOffset="0" endLine="136" endOffset="12"/></Target><Target id="@+id/email_edit_text" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="49" startOffset="20" endLine="55" endOffset="62"/></Target><Target id="@+id/password_edit_text" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="64" startOffset="20" endLine="70" endOffset="58"/></Target><Target id="@+id/checkbox_remember_me" view="com.google.android.material.checkbox.MaterialCheckBox"><Expressions/><location startLine="73" startOffset="16" endLine="79" endOffset="55"/></Target><Target id="@+id/login_button" view="com.google.android.material.button.MaterialButton"><Expressions/><location startLine="81" startOffset="16" endLine="88" endOffset="54"/></Target><Target id="@+id/biometric_button" view="com.google.android.material.button.MaterialButton"><Expressions/><location startLine="90" startOffset="16" endLine="98" endOffset="46"/></Target><Target id="@+id/forgot_password_link" view="TextView"><Expressions/><location startLine="101" startOffset="16" endLine="108" endOffset="42"/></Target><Target id="@+id/register_link" view="TextView"><Expressions/><location startLine="126" startOffset="12" endLine="132" endOffset="59"/></Target></Targets></Layout>
|
||||||
@@ -1 +1 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="dialog_add_medication" modulePackage="com.example.cuida" filePath="app/src/main/res/layout/dialog_add_medication.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/dialog_add_medication_0" view="LinearLayout"><Expressions/><location startLine="1" startOffset="0" endLine="108" endOffset="14"/></Target><Target id="@+id/layout_med_name" view="com.google.android.material.textfield.TextInputLayout"><Expressions/><location startLine="16" startOffset="12" endLine="29" endOffset="67"/></Target><Target id="@+id/edit_med_name" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="24" startOffset="16" endLine="28" endOffset="54"/></Target><Target id="@+id/recycler_search_results" view="androidx.recyclerview.widget.RecyclerView"><Expressions/><location startLine="41" startOffset="8" endLine="48" endOffset="62"/></Target><Target id="@+id/text_med_time" view="TextView"><Expressions/><location startLine="51" startOffset="4" endLine="60" endOffset="43"/></Target><Target id="@+id/radio_group_route" view="RadioGroup"><Expressions/><location startLine="69" startOffset="4" endLine="92" endOffset="16"/></Target><Target id="@+id/radio_oral" view="RadioButton"><Expressions/><location startLine="75" startOffset="8" endLine="79" endOffset="49"/></Target><Target id="@+id/radio_topical" view="RadioButton"><Expressions/><location startLine="81" startOffset="8" endLine="85" endOffset="49"/></Target><Target id="@+id/radio_inhalatory" view="RadioButton"><Expressions/><location startLine="87" startOffset="8" endLine="91" endOffset="61"/></Target><Target id="@+id/edit_med_notes" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="100" startOffset="8" endLine="105" endOffset="33"/></Target></Targets></Layout>
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="dialog_add_medication" modulePackage="com.example.cuida" filePath="app/src/main/res/layout/dialog_add_medication.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/dialog_add_medication_0" view="LinearLayout"><Expressions/><location startLine="1" startOffset="0" endLine="114" endOffset="14"/></Target><Target id="@+id/layout_med_name" view="com.google.android.material.textfield.TextInputLayout"><Expressions/><location startLine="7" startOffset="4" endLine="20" endOffset="59"/></Target><Target id="@+id/edit_med_name" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="15" startOffset="8" endLine="19" endOffset="46"/></Target><Target id="@+id/recycler_search_results" view="androidx.recyclerview.widget.RecyclerView"><Expressions/><location startLine="23" startOffset="4" endLine="31" endOffset="33"/></Target><Target id="@+id/btn_add_time" view="com.google.android.material.button.MaterialButton"><Expressions/><location startLine="48" startOffset="8" endLine="56" endOffset="36"/></Target><Target id="@+id/chip_group_times" view="com.google.android.material.chip.ChipGroup"><Expressions/><location startLine="59" startOffset="4" endLine="64" endOffset="30"/></Target><Target id="@+id/radio_group_route" view="RadioGroup"><Expressions/><location startLine="74" startOffset="4" endLine="97" endOffset="16"/></Target><Target id="@+id/radio_oral" view="RadioButton"><Expressions/><location startLine="80" startOffset="8" endLine="84" endOffset="49"/></Target><Target id="@+id/radio_topical" view="RadioButton"><Expressions/><location startLine="86" startOffset="8" endLine="90" endOffset="49"/></Target><Target id="@+id/radio_inhalatory" view="RadioButton"><Expressions/><location startLine="92" startOffset="8" endLine="96" endOffset="61"/></Target><Target id="@+id/edit_med_notes" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="106" startOffset="8" endLine="111" endOffset="33"/></Target></Targets></Layout>
|
||||||
@@ -1 +1 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="fragment_profile" modulePackage="com.example.cuida" filePath="app/src/main/res/layout/fragment_profile.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/fragment_profile_0" view="LinearLayout"><Expressions/><location startLine="1" startOffset="0" endLine="126" endOffset="14"/></Target><Target id="@+id/profile_image" view="com.google.android.material.imageview.ShapeableImageView"><Expressions/><location startLine="10" startOffset="4" endLine="17" endOffset="43"/></Target><Target id="@+id/profile_name" view="TextView"><Expressions/><location startLine="34" startOffset="12" endLine="42" endOffset="50"/></Target><Target id="@+id/profile_email" view="TextView"><Expressions/><location startLine="44" startOffset="12" endLine="51" endOffset="51"/></Target><Target id="@+id/profile_age" view="TextView"><Expressions/><location startLine="73" startOffset="16" endLine="80" endOffset="60"/></Target><Target id="@+id/profile_utente" view="TextView"><Expressions/><location startLine="96" startOffset="16" endLine="103" endOffset="60"/></Target><Target id="@+id/button_edit_profile" view="com.google.android.material.button.MaterialButton"><Expressions/><location startLine="109" startOffset="4" endLine="115" endOffset="56"/></Target><Target id="@+id/button_logout" view="com.google.android.material.button.MaterialButton"><Expressions/><location startLine="117" startOffset="4" endLine="124" endOffset="47"/></Target></Targets></Layout>
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="fragment_profile" modulePackage="com.example.cuida" filePath="app/src/main/res/layout/fragment_profile.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/fragment_profile_0" view="LinearLayout"><Expressions/><location startLine="1" startOffset="0" endLine="137" endOffset="14"/></Target><Target id="@+id/profile_image" view="com.google.android.material.imageview.ShapeableImageView"><Expressions/><location startLine="10" startOffset="4" endLine="17" endOffset="43"/></Target><Target id="@+id/profile_name" view="TextView"><Expressions/><location startLine="34" startOffset="12" endLine="42" endOffset="50"/></Target><Target id="@+id/profile_email" view="TextView"><Expressions/><location startLine="44" startOffset="12" endLine="51" endOffset="51"/></Target><Target id="@+id/profile_age" view="TextView"><Expressions/><location startLine="73" startOffset="16" endLine="80" endOffset="60"/></Target><Target id="@+id/profile_utente" view="TextView"><Expressions/><location startLine="96" startOffset="16" endLine="103" endOffset="60"/></Target><Target id="@+id/button_edit_profile" view="com.google.android.material.button.MaterialButton"><Expressions/><location startLine="109" startOffset="4" endLine="115" endOffset="56"/></Target><Target id="@+id/button_export_report" view="com.google.android.material.button.MaterialButton"><Expressions/><location startLine="117" startOffset="4" endLine="125" endOffset="51"/></Target><Target id="@+id/button_logout" view="com.google.android.material.button.MaterialButton"><Expressions/><location startLine="128" startOffset="4" endLine="135" endOffset="47"/></Target></Targets></Layout>
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,4 +1,4 @@
|
|||||||
#Tue Apr 14 16:49:24 WEST 2026
|
#Wed Apr 15 12:40:55 WEST 2026
|
||||||
com.example.cuida.app-main-56\:/drawable-v26/ic_launcher_final.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable-v26_ic_launcher_final.xml.flat
|
com.example.cuida.app-main-56\:/drawable-v26/ic_launcher_final.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable-v26_ic_launcher_final.xml.flat
|
||||||
com.example.cuida.app-main-56\:/drawable/bg_search_results.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable_bg_search_results.xml.flat
|
com.example.cuida.app-main-56\:/drawable/bg_search_results.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable_bg_search_results.xml.flat
|
||||||
com.example.cuida.app-main-56\:/drawable/btn_outline_error.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable_btn_outline_error.xml.flat
|
com.example.cuida.app-main-56\:/drawable/btn_outline_error.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/merged_res/debug/mergeDebugResources/drawable_btn_outline_error.xml.flat
|
||||||
@@ -12,6 +12,7 @@ com.example.cuida.app-main-56\:/drawable/ic_placeholder.xml=/Users/230405/Deskto
|
|||||||
com.example.cuida.app-main-56\:/menu/bottom_nav_menu.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/merged_res/debug/mergeDebugResources/menu_bottom_nav_menu.xml.flat
|
com.example.cuida.app-main-56\:/menu/bottom_nav_menu.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/merged_res/debug/mergeDebugResources/menu_bottom_nav_menu.xml.flat
|
||||||
com.example.cuida.app-main-56\:/xml/backup_rules.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/merged_res/debug/mergeDebugResources/xml_backup_rules.xml.flat
|
com.example.cuida.app-main-56\:/xml/backup_rules.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/merged_res/debug/mergeDebugResources/xml_backup_rules.xml.flat
|
||||||
com.example.cuida.app-main-56\:/xml/data_extraction_rules.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/merged_res/debug/mergeDebugResources/xml_data_extraction_rules.xml.flat
|
com.example.cuida.app-main-56\:/xml/data_extraction_rules.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/merged_res/debug/mergeDebugResources/xml_data_extraction_rules.xml.flat
|
||||||
|
com.example.cuida.app-main-56\:/xml/file_paths.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/merged_res/debug/mergeDebugResources/xml_file_paths.xml.flat
|
||||||
com.example.cuida.app-mergeDebugResources-53\:/layout/activity_forgot_password.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/merged_res/debug/mergeDebugResources/layout_activity_forgot_password.xml.flat
|
com.example.cuida.app-mergeDebugResources-53\:/layout/activity_forgot_password.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/merged_res/debug/mergeDebugResources/layout_activity_forgot_password.xml.flat
|
||||||
com.example.cuida.app-mergeDebugResources-53\:/layout/activity_login.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/merged_res/debug/mergeDebugResources/layout_activity_login.xml.flat
|
com.example.cuida.app-mergeDebugResources-53\:/layout/activity_login.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/merged_res/debug/mergeDebugResources/layout_activity_login.xml.flat
|
||||||
com.example.cuida.app-mergeDebugResources-53\:/layout/activity_main.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/merged_res/debug/mergeDebugResources/layout_activity_main.xml.flat
|
com.example.cuida.app-mergeDebugResources-53\:/layout/activity_main.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/merged_res/debug/mergeDebugResources/layout_activity_main.xml.flat
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -1,4 +1,4 @@
|
|||||||
#Tue Apr 14 16:49:24 WEST 2026
|
#Wed Apr 15 12:40:55 WEST 2026
|
||||||
com.example.cuida.app-main-6\:/drawable-v26/ic_launcher_final.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/packaged_res/debug/packageDebugResources/drawable-v26/ic_launcher_final.xml
|
com.example.cuida.app-main-6\:/drawable-v26/ic_launcher_final.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/packaged_res/debug/packageDebugResources/drawable-v26/ic_launcher_final.xml
|
||||||
com.example.cuida.app-main-6\:/drawable/bg_search_results.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/packaged_res/debug/packageDebugResources/drawable/bg_search_results.xml
|
com.example.cuida.app-main-6\:/drawable/bg_search_results.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/packaged_res/debug/packageDebugResources/drawable/bg_search_results.xml
|
||||||
com.example.cuida.app-main-6\:/drawable/btn_outline_error.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/packaged_res/debug/packageDebugResources/drawable/btn_outline_error.xml
|
com.example.cuida.app-main-6\:/drawable/btn_outline_error.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/packaged_res/debug/packageDebugResources/drawable/btn_outline_error.xml
|
||||||
@@ -12,6 +12,7 @@ com.example.cuida.app-main-6\:/drawable/ic_placeholder.xml=/Users/230405/Desktop
|
|||||||
com.example.cuida.app-main-6\:/menu/bottom_nav_menu.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/packaged_res/debug/packageDebugResources/menu/bottom_nav_menu.xml
|
com.example.cuida.app-main-6\:/menu/bottom_nav_menu.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/packaged_res/debug/packageDebugResources/menu/bottom_nav_menu.xml
|
||||||
com.example.cuida.app-main-6\:/xml/backup_rules.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/packaged_res/debug/packageDebugResources/xml/backup_rules.xml
|
com.example.cuida.app-main-6\:/xml/backup_rules.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/packaged_res/debug/packageDebugResources/xml/backup_rules.xml
|
||||||
com.example.cuida.app-main-6\:/xml/data_extraction_rules.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/packaged_res/debug/packageDebugResources/xml/data_extraction_rules.xml
|
com.example.cuida.app-main-6\:/xml/data_extraction_rules.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/packaged_res/debug/packageDebugResources/xml/data_extraction_rules.xml
|
||||||
|
com.example.cuida.app-main-6\:/xml/file_paths.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/packaged_res/debug/packageDebugResources/xml/file_paths.xml
|
||||||
com.example.cuida.app-packageDebugResources-3\:/layout/activity_forgot_password.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/packaged_res/debug/packageDebugResources/layout/activity_forgot_password.xml
|
com.example.cuida.app-packageDebugResources-3\:/layout/activity_forgot_password.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/packaged_res/debug/packageDebugResources/layout/activity_forgot_password.xml
|
||||||
com.example.cuida.app-packageDebugResources-3\:/layout/activity_login.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/packaged_res/debug/packageDebugResources/layout/activity_login.xml
|
com.example.cuida.app-packageDebugResources-3\:/layout/activity_login.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/packaged_res/debug/packageDebugResources/layout/activity_login.xml
|
||||||
com.example.cuida.app-packageDebugResources-3\:/layout/activity_main.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/packaged_res/debug/packageDebugResources/layout/activity_main.xml
|
com.example.cuida.app-packageDebugResources-3\:/layout/activity_main.xml=/Users/230405/Desktop/papcuida/app/build/intermediates/packaged_res/debug/packageDebugResources/layout/activity_main.xml
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -1,4 +1,4 @@
|
|||||||
#Tue Apr 14 16:57:59 WEST 2026
|
#Wed Apr 15 12:44:30 WEST 2026
|
||||||
base.0=/Users/230405/Desktop/papcuida/app/build/intermediates/dex/debug/mergeExtDexDebug/classes.dex
|
base.0=/Users/230405/Desktop/papcuida/app/build/intermediates/dex/debug/mergeExtDexDebug/classes.dex
|
||||||
base.1=/Users/230405/Desktop/papcuida/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex
|
base.1=/Users/230405/Desktop/papcuida/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex
|
||||||
base.10=/Users/230405/Desktop/papcuida/app/build/intermediates/dex/debug/mergeExtDexDebug/classes2.dex
|
base.10=/Users/230405/Desktop/papcuida/app/build/intermediates/dex/debug/mergeExtDexDebug/classes2.dex
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -30,6 +30,8 @@ id action_appointments_to_schedule
|
|||||||
id action_home_to_schedule_appointment
|
id action_home_to_schedule_appointment
|
||||||
id age_edit_text
|
id age_edit_text
|
||||||
id back_to_login
|
id back_to_login
|
||||||
|
id biometric_button
|
||||||
|
id btn_add_time
|
||||||
id btn_confirm_appointment
|
id btn_confirm_appointment
|
||||||
id btn_time_slot
|
id btn_time_slot
|
||||||
id button_ai_triage
|
id button_ai_triage
|
||||||
@@ -40,6 +42,7 @@ id button_cancel_password
|
|||||||
id button_change_password
|
id button_change_password
|
||||||
id button_change_photo
|
id button_change_photo
|
||||||
id button_edit_profile
|
id button_edit_profile
|
||||||
|
id button_export_report
|
||||||
id button_find_hospital
|
id button_find_hospital
|
||||||
id button_logout
|
id button_logout
|
||||||
id button_save
|
id button_save
|
||||||
@@ -47,6 +50,7 @@ id button_save_password
|
|||||||
id card_next_medication
|
id card_next_medication
|
||||||
id checkbox_remember_me
|
id checkbox_remember_me
|
||||||
id checkbox_taken
|
id checkbox_taken
|
||||||
|
id chip_group_times
|
||||||
id confirm_new_password_edit_text
|
id confirm_new_password_edit_text
|
||||||
id datePicker
|
id datePicker
|
||||||
id edit_age
|
id edit_age
|
||||||
@@ -165,3 +169,4 @@ style Widget.Cuida.Button
|
|||||||
style Widget.Cuida.CardView
|
style Widget.Cuida.CardView
|
||||||
xml backup_rules
|
xml backup_rules
|
||||||
xml data_extraction_rules
|
xml data_extraction_rules
|
||||||
|
xml file_paths
|
||||||
|
|||||||
@@ -31,12 +31,12 @@
|
|||||||
18 <uses-permission android:name="android.permission.USE_EXACT_ALARM" />
|
18 <uses-permission android:name="android.permission.USE_EXACT_ALARM" />
|
||||||
18-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:12:5-74
|
18-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:12:5-74
|
||||||
18-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:12:22-71
|
18-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:12:22-71
|
||||||
19 <uses-permission android:name="android.permission.USE_BIOMETRIC" /> <!-- suppress DeprecatedClassUsageInspection -->
|
19 <uses-permission android:name="android.permission.USE_BIOMETRIC" />
|
||||||
19-->[androidx.biometric:biometric:1.1.0] /Users/230405/.gradle/caches/9.3.1/transforms/fe09619e3ebb1d293cf7eb0cf257a687/transformed/biometric-1.1.0/AndroidManifest.xml:24:5-72
|
19-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:13:5-72
|
||||||
19-->[androidx.biometric:biometric:1.1.0] /Users/230405/.gradle/caches/9.3.1/transforms/fe09619e3ebb1d293cf7eb0cf257a687/transformed/biometric-1.1.0/AndroidManifest.xml:24:22-69
|
19-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:13:22-69
|
||||||
20 <uses-permission android:name="android.permission.USE_FINGERPRINT" />
|
20 <uses-permission android:name="android.permission.USE_FINGERPRINT" />
|
||||||
20-->[androidx.biometric:biometric:1.1.0] /Users/230405/.gradle/caches/9.3.1/transforms/fe09619e3ebb1d293cf7eb0cf257a687/transformed/biometric-1.1.0/AndroidManifest.xml:27:5-74
|
20-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:14:5-74
|
||||||
20-->[androidx.biometric:biometric:1.1.0] /Users/230405/.gradle/caches/9.3.1/transforms/fe09619e3ebb1d293cf7eb0cf257a687/transformed/biometric-1.1.0/AndroidManifest.xml:27:22-71
|
20-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:14:22-71
|
||||||
21 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
21 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||||||
21-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:26:5-79
|
21-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:26:5-79
|
||||||
21-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:26:22-76
|
21-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:26:22-76
|
||||||
@@ -56,405 +56,425 @@
|
|||||||
28-->[androidx.core:core:1.15.0] /Users/230405/.gradle/caches/9.3.1/transforms/1283ca8f3259235ee9c05354dbab6dad/transformed/core-1.15.0/AndroidManifest.xml:26:22-94
|
28-->[androidx.core:core:1.15.0] /Users/230405/.gradle/caches/9.3.1/transforms/1283ca8f3259235ee9c05354dbab6dad/transformed/core-1.15.0/AndroidManifest.xml:26:22-94
|
||||||
29
|
29
|
||||||
30 <application
|
30 <application
|
||||||
30-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:14:5-61:19
|
30-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:16:5-74:19
|
||||||
31 android:allowBackup="true"
|
31 android:name="com.example.cuida.CuidaApplication"
|
||||||
31-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:15:9-35
|
31-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:17:9-41
|
||||||
32 android:appComponentFactory="androidx.core.app.CoreComponentFactory"
|
32 android:allowBackup="true"
|
||||||
32-->[androidx.core:core:1.15.0] /Users/230405/.gradle/caches/9.3.1/transforms/1283ca8f3259235ee9c05354dbab6dad/transformed/core-1.15.0/AndroidManifest.xml:28:18-86
|
32-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:18:9-35
|
||||||
33 android:dataExtractionRules="@xml/data_extraction_rules"
|
33 android:appComponentFactory="androidx.core.app.CoreComponentFactory"
|
||||||
33-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:16:9-65
|
33-->[androidx.core:core:1.15.0] /Users/230405/.gradle/caches/9.3.1/transforms/1283ca8f3259235ee9c05354dbab6dad/transformed/core-1.15.0/AndroidManifest.xml:28:18-86
|
||||||
34 android:debuggable="true"
|
34 android:dataExtractionRules="@xml/data_extraction_rules"
|
||||||
35 android:extractNativeLibs="false"
|
34-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:19:9-65
|
||||||
35-->INJECTED
|
35 android:debuggable="true"
|
||||||
36 android:fullBackupContent="@xml/backup_rules"
|
36 android:extractNativeLibs="false"
|
||||||
36-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:17:9-54
|
36-->INJECTED
|
||||||
37 android:icon="@drawable/ic_launcher_final"
|
37 android:fullBackupContent="@xml/backup_rules"
|
||||||
37-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:18:9-51
|
37-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:20:9-54
|
||||||
38 android:label="@string/app_name"
|
38 android:icon="@drawable/ic_launcher_final"
|
||||||
38-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:19:9-41
|
38-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:21:9-51
|
||||||
39 android:roundIcon="@drawable/ic_launcher_final"
|
39 android:label="@string/app_name"
|
||||||
39-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:20:9-56
|
39-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:22:9-41
|
||||||
40 android:supportsRtl="true"
|
40 android:roundIcon="@drawable/ic_launcher_final"
|
||||||
40-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:21:9-35
|
40-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:23:9-56
|
||||||
41 android:testOnly="true"
|
41 android:supportsRtl="true"
|
||||||
42 android:theme="@style/Theme.Cuida" >
|
41-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:24:9-35
|
||||||
42-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:22:9-43
|
42 android:testOnly="true"
|
||||||
43 <activity
|
43 android:theme="@style/Theme.Cuida" >
|
||||||
43-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:25:9-30:20
|
43-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:25:9-43
|
||||||
44 android:name="com.example.cuida.MainActivity"
|
44 <activity
|
||||||
44-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:26:13-41
|
44-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:28:9-33:20
|
||||||
45 android:exported="true"
|
45 android:name="com.example.cuida.MainActivity"
|
||||||
45-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:27:13-36
|
45-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:29:13-41
|
||||||
46 android:windowSoftInputMode="adjustResize" >
|
46 android:exported="true"
|
||||||
46-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:28:13-55
|
46-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:30:13-36
|
||||||
47
|
47 android:windowSoftInputMode="adjustResize" >
|
||||||
48 <!-- Launcher Intent Filter handled in LoginActivity usually, but for now we might start Main -->
|
47-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:31:13-55
|
||||||
49 </activity>
|
48
|
||||||
50 <activity
|
49 <!-- Launcher Intent Filter handled in LoginActivity usually, but for now we might start Main -->
|
||||||
50-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:32:9-37:20
|
50 </activity>
|
||||||
51 android:name="com.example.cuida.ui.auth.LoginActivity"
|
51 <activity
|
||||||
51-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:32:19-56
|
51-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:35:9-40:20
|
||||||
52 android:exported="true" >
|
52 android:name="com.example.cuida.ui.auth.LoginActivity"
|
||||||
52-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:32:57-80
|
52-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:35:19-56
|
||||||
53 <intent-filter>
|
53 android:exported="true" >
|
||||||
53-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:33:13-36:29
|
53-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:35:57-80
|
||||||
54 <action android:name="android.intent.action.MAIN" />
|
54 <intent-filter>
|
||||||
54-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:34:17-69
|
54-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:36:13-39:29
|
||||||
54-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:34:25-66
|
55 <action android:name="android.intent.action.MAIN" />
|
||||||
55
|
55-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:37:17-69
|
||||||
56 <category android:name="android.intent.category.LAUNCHER" />
|
55-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:37:25-66
|
||||||
56-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:35:17-77
|
56
|
||||||
56-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:35:27-74
|
57 <category android:name="android.intent.category.LAUNCHER" />
|
||||||
57 </intent-filter>
|
57-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:38:17-77
|
||||||
58 </activity>
|
57-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:38:27-74
|
||||||
59 <activity android:name="com.example.cuida.ui.auth.RegisterActivity" />
|
58 </intent-filter>
|
||||||
59-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:40:9-62
|
59 </activity>
|
||||||
59-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:40:19-59
|
60 <activity android:name="com.example.cuida.ui.auth.RegisterActivity" />
|
||||||
60 <activity android:name="com.example.cuida.ui.auth.ForgotPasswordActivity" />
|
60-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:43:9-62
|
||||||
60-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:41:9-68
|
60-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:43:19-59
|
||||||
60-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:41:19-65
|
61 <activity android:name="com.example.cuida.ui.auth.ForgotPasswordActivity" />
|
||||||
61 <activity
|
61-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:44:9-68
|
||||||
61-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:42:9-57:20
|
61-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:44:19-65
|
||||||
62 android:name="com.example.cuida.ui.auth.ResetPasswordActivity"
|
62 <activity
|
||||||
62-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:42:19-64
|
62-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:45:9-60:20
|
||||||
63 android:exported="true" >
|
63 android:name="com.example.cuida.ui.auth.ResetPasswordActivity"
|
||||||
63-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:43:13-36
|
63-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:45:19-64
|
||||||
64 <intent-filter>
|
64 android:exported="true" >
|
||||||
64-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:44:13-56:29
|
64-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:46:13-36
|
||||||
65 <action android:name="android.intent.action.VIEW" />
|
65 <intent-filter>
|
||||||
65-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:45:17-69
|
65-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:47:13-59:29
|
||||||
65-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:45:25-66
|
66 <action android:name="android.intent.action.VIEW" />
|
||||||
66
|
66-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:48:17-69
|
||||||
67 <category android:name="android.intent.category.DEFAULT" />
|
66-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:48:25-66
|
||||||
67-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:46:17-76
|
67
|
||||||
67-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:46:27-73
|
68 <category android:name="android.intent.category.DEFAULT" />
|
||||||
68 <category android:name="android.intent.category.BROWSABLE" />
|
68-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:49:17-76
|
||||||
68-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:47:17-78
|
68-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:49:27-73
|
||||||
68-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:47:27-75
|
69 <category android:name="android.intent.category.BROWSABLE" />
|
||||||
69 <!--
|
69-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:50:17-78
|
||||||
70 Update the host to match your Firebase project's hosting domain
|
69-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:50:27-75
|
||||||
71 or the custom domain you configured for dynamic links
|
70 <!--
|
||||||
72 -->
|
71 Update the host to match your Firebase project's hosting domain
|
||||||
73 <data
|
72 or the custom domain you configured for dynamic links
|
||||||
73-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:50:17-52:57
|
73 -->
|
||||||
74 android:host="papcuida.page.link"
|
74 <data
|
||||||
74-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:52:21-54
|
74-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:53:17-55:57
|
||||||
75 android:scheme="https" />
|
75 android:host="papcuida.page.link"
|
||||||
75-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:51:21-43
|
75-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:55:21-54
|
||||||
76 <data
|
76 android:scheme="https" />
|
||||||
76-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:50:17-52:57
|
76-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:54:21-43
|
||||||
77 android:host="resetpassword"
|
77 <data
|
||||||
77-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:52:21-54
|
77-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:53:17-55:57
|
||||||
78 android:scheme="cuida" />
|
78 android:host="resetpassword"
|
||||||
78-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:51:21-43
|
78-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:55:21-54
|
||||||
79 </intent-filter>
|
79 android:scheme="cuida" />
|
||||||
80 </activity>
|
79-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:54:21-43
|
||||||
81
|
80 </intent-filter>
|
||||||
82 <receiver
|
81 </activity>
|
||||||
82-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:59:9-85
|
82
|
||||||
83 android:name="com.example.cuida.services.AlarmReceiver"
|
83 <receiver
|
||||||
83-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:59:19-57
|
83-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:62:9-85
|
||||||
84 android:exported="false" />
|
84 android:name="com.example.cuida.services.AlarmReceiver"
|
||||||
84-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:59:58-82
|
84-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:62:19-57
|
||||||
85
|
85 android:exported="false" />
|
||||||
86 <service
|
85-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:62:58-82
|
||||||
86-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:24:9-32:19
|
86
|
||||||
87 android:name="androidx.credentials.playservices.CredentialProviderMetadataHolder"
|
87 <provider
|
||||||
87-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:25:13-94
|
87-->INJECTED
|
||||||
88 android:enabled="true"
|
88 android:name="androidx.core.content.FileProvider"
|
||||||
88-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:26:13-35
|
88-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:65:13-62
|
||||||
89 android:exported="false" >
|
89 android:authorities="com.example.cuida.fileprovider"
|
||||||
89-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:27:13-37
|
89-->INJECTED
|
||||||
90 <meta-data
|
90 android:exported="false"
|
||||||
90-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:29:13-31:104
|
90-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:67:13-37
|
||||||
91 android:name="androidx.credentials.CREDENTIAL_PROVIDER_KEY"
|
91 android:grantUriPermissions="true" >
|
||||||
91-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:30:17-76
|
91-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:68:13-47
|
||||||
92 android:value="androidx.credentials.playservices.CredentialProviderPlayServicesImpl" />
|
92 <meta-data
|
||||||
92-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:31:17-101
|
92-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:69:13-71:54
|
||||||
93 </service>
|
93 android:name="android.support.FILE_PATHS"
|
||||||
94
|
93-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:70:17-58
|
||||||
95 <activity
|
94 android:resource="@xml/file_paths" />
|
||||||
95-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:34:9-41:20
|
94-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:71:17-51
|
||||||
96 android:name="androidx.credentials.playservices.HiddenActivity"
|
95 </provider>
|
||||||
96-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:35:13-76
|
96
|
||||||
97 android:configChanges="orientation|screenSize|screenLayout|keyboardHidden"
|
97 <service
|
||||||
97-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:36:13-87
|
97-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:24:9-32:19
|
||||||
98 android:enabled="true"
|
98 android:name="androidx.credentials.playservices.CredentialProviderMetadataHolder"
|
||||||
98-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:37:13-35
|
98-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:25:13-94
|
||||||
99 android:exported="false"
|
99 android:enabled="true"
|
||||||
99-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:38:13-37
|
99-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:26:13-35
|
||||||
100 android:fitsSystemWindows="true"
|
100 android:exported="false" >
|
||||||
100-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:39:13-45
|
100-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:27:13-37
|
||||||
101 android:theme="@style/Theme.Hidden" >
|
101 <meta-data
|
||||||
101-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:40:13-48
|
101-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:29:13-31:104
|
||||||
102 </activity>
|
102 android:name="androidx.credentials.CREDENTIAL_PROVIDER_KEY"
|
||||||
103 <activity
|
102-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:30:17-76
|
||||||
103-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:42:9-49:20
|
103 android:value="androidx.credentials.playservices.CredentialProviderPlayServicesImpl" />
|
||||||
104 android:name="androidx.credentials.playservices.IdentityCredentialApiHiddenActivity"
|
103-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:31:17-101
|
||||||
104-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:43:13-97
|
104 </service>
|
||||||
105 android:configChanges="orientation|screenSize|screenLayout|keyboardHidden"
|
105
|
||||||
105-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:44:13-87
|
106 <activity
|
||||||
106 android:enabled="true"
|
106-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:34:9-41:20
|
||||||
106-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:45:13-35
|
107 android:name="androidx.credentials.playservices.HiddenActivity"
|
||||||
107 android:exported="false"
|
107-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:35:13-76
|
||||||
107-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:46:13-37
|
108 android:configChanges="orientation|screenSize|screenLayout|keyboardHidden"
|
||||||
108 android:fitsSystemWindows="true"
|
108-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:36:13-87
|
||||||
108-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:47:13-45
|
109 android:enabled="true"
|
||||||
109 android:theme="@style/Theme.Hidden" >
|
109-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:37:13-35
|
||||||
109-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:48:13-48
|
110 android:exported="false"
|
||||||
110 </activity>
|
110-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:38:13-37
|
||||||
111 <activity
|
111 android:fitsSystemWindows="true"
|
||||||
111-->[com.google.android.gms:play-services-auth:21.1.1] /Users/230405/.gradle/caches/9.3.1/transforms/123778403539b24fd6a519395e8f6531/transformed/jetified-play-services-auth-21.1.1/AndroidManifest.xml:23:9-27:75
|
111-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:39:13-45
|
||||||
112 android:name="com.google.android.gms.auth.api.signin.internal.SignInHubActivity"
|
112 android:theme="@style/Theme.Hidden" >
|
||||||
112-->[com.google.android.gms:play-services-auth:21.1.1] /Users/230405/.gradle/caches/9.3.1/transforms/123778403539b24fd6a519395e8f6531/transformed/jetified-play-services-auth-21.1.1/AndroidManifest.xml:24:13-93
|
112-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:40:13-48
|
||||||
113 android:excludeFromRecents="true"
|
113 </activity>
|
||||||
113-->[com.google.android.gms:play-services-auth:21.1.1] /Users/230405/.gradle/caches/9.3.1/transforms/123778403539b24fd6a519395e8f6531/transformed/jetified-play-services-auth-21.1.1/AndroidManifest.xml:25:13-46
|
114 <activity
|
||||||
114 android:exported="false"
|
114-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:42:9-49:20
|
||||||
114-->[com.google.android.gms:play-services-auth:21.1.1] /Users/230405/.gradle/caches/9.3.1/transforms/123778403539b24fd6a519395e8f6531/transformed/jetified-play-services-auth-21.1.1/AndroidManifest.xml:26:13-37
|
115 android:name="androidx.credentials.playservices.IdentityCredentialApiHiddenActivity"
|
||||||
115 android:theme="@android:style/Theme.Translucent.NoTitleBar" />
|
115-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:43:13-97
|
||||||
115-->[com.google.android.gms:play-services-auth:21.1.1] /Users/230405/.gradle/caches/9.3.1/transforms/123778403539b24fd6a519395e8f6531/transformed/jetified-play-services-auth-21.1.1/AndroidManifest.xml:27:13-72
|
116 android:configChanges="orientation|screenSize|screenLayout|keyboardHidden"
|
||||||
116 <!--
|
116-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:44:13-87
|
||||||
117 Service handling Google Sign-In user revocation. For apps that do not integrate with
|
117 android:enabled="true"
|
||||||
118 Google Sign-In, this service will never be started.
|
117-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:45:13-35
|
||||||
119 -->
|
118 android:exported="false"
|
||||||
120 <service
|
118-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:46:13-37
|
||||||
120-->[com.google.android.gms:play-services-auth:21.1.1] /Users/230405/.gradle/caches/9.3.1/transforms/123778403539b24fd6a519395e8f6531/transformed/jetified-play-services-auth-21.1.1/AndroidManifest.xml:33:9-37:51
|
119 android:fitsSystemWindows="true"
|
||||||
121 android:name="com.google.android.gms.auth.api.signin.RevocationBoundService"
|
119-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:47:13-45
|
||||||
121-->[com.google.android.gms:play-services-auth:21.1.1] /Users/230405/.gradle/caches/9.3.1/transforms/123778403539b24fd6a519395e8f6531/transformed/jetified-play-services-auth-21.1.1/AndroidManifest.xml:34:13-89
|
120 android:theme="@style/Theme.Hidden" >
|
||||||
122 android:exported="true"
|
120-->[androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:48:13-48
|
||||||
122-->[com.google.android.gms:play-services-auth:21.1.1] /Users/230405/.gradle/caches/9.3.1/transforms/123778403539b24fd6a519395e8f6531/transformed/jetified-play-services-auth-21.1.1/AndroidManifest.xml:35:13-36
|
121 </activity>
|
||||||
123 android:permission="com.google.android.gms.auth.api.signin.permission.REVOCATION_NOTIFICATION"
|
122 <activity
|
||||||
123-->[com.google.android.gms:play-services-auth:21.1.1] /Users/230405/.gradle/caches/9.3.1/transforms/123778403539b24fd6a519395e8f6531/transformed/jetified-play-services-auth-21.1.1/AndroidManifest.xml:36:13-107
|
122-->[com.google.android.gms:play-services-auth:21.1.1] /Users/230405/.gradle/caches/9.3.1/transforms/123778403539b24fd6a519395e8f6531/transformed/jetified-play-services-auth-21.1.1/AndroidManifest.xml:23:9-27:75
|
||||||
124 android:visibleToInstantApps="true" />
|
123 android:name="com.google.android.gms.auth.api.signin.internal.SignInHubActivity"
|
||||||
124-->[com.google.android.gms:play-services-auth:21.1.1] /Users/230405/.gradle/caches/9.3.1/transforms/123778403539b24fd6a519395e8f6531/transformed/jetified-play-services-auth-21.1.1/AndroidManifest.xml:37:13-48
|
123-->[com.google.android.gms:play-services-auth:21.1.1] /Users/230405/.gradle/caches/9.3.1/transforms/123778403539b24fd6a519395e8f6531/transformed/jetified-play-services-auth-21.1.1/AndroidManifest.xml:24:13-93
|
||||||
125
|
124 android:excludeFromRecents="true"
|
||||||
126 <activity
|
124-->[com.google.android.gms:play-services-auth:21.1.1] /Users/230405/.gradle/caches/9.3.1/transforms/123778403539b24fd6a519395e8f6531/transformed/jetified-play-services-auth-21.1.1/AndroidManifest.xml:25:13-46
|
||||||
126-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:29:9-46:20
|
125 android:exported="false"
|
||||||
127 android:name="com.google.firebase.auth.internal.GenericIdpActivity"
|
125-->[com.google.android.gms:play-services-auth:21.1.1] /Users/230405/.gradle/caches/9.3.1/transforms/123778403539b24fd6a519395e8f6531/transformed/jetified-play-services-auth-21.1.1/AndroidManifest.xml:26:13-37
|
||||||
127-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:30:13-80
|
126 android:theme="@android:style/Theme.Translucent.NoTitleBar" />
|
||||||
128 android:excludeFromRecents="true"
|
126-->[com.google.android.gms:play-services-auth:21.1.1] /Users/230405/.gradle/caches/9.3.1/transforms/123778403539b24fd6a519395e8f6531/transformed/jetified-play-services-auth-21.1.1/AndroidManifest.xml:27:13-72
|
||||||
128-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:31:13-46
|
127 <!--
|
||||||
129 android:exported="true"
|
128 Service handling Google Sign-In user revocation. For apps that do not integrate with
|
||||||
129-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:32:13-36
|
129 Google Sign-In, this service will never be started.
|
||||||
130 android:launchMode="singleTask"
|
130 -->
|
||||||
130-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:33:13-44
|
131 <service
|
||||||
131 android:theme="@android:style/Theme.Translucent.NoTitleBar" >
|
131-->[com.google.android.gms:play-services-auth:21.1.1] /Users/230405/.gradle/caches/9.3.1/transforms/123778403539b24fd6a519395e8f6531/transformed/jetified-play-services-auth-21.1.1/AndroidManifest.xml:33:9-37:51
|
||||||
131-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:34:13-72
|
132 android:name="com.google.android.gms.auth.api.signin.RevocationBoundService"
|
||||||
132 <intent-filter>
|
132-->[com.google.android.gms:play-services-auth:21.1.1] /Users/230405/.gradle/caches/9.3.1/transforms/123778403539b24fd6a519395e8f6531/transformed/jetified-play-services-auth-21.1.1/AndroidManifest.xml:34:13-89
|
||||||
132-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:35:13-45:29
|
133 android:exported="true"
|
||||||
133 <action android:name="android.intent.action.VIEW" />
|
133-->[com.google.android.gms:play-services-auth:21.1.1] /Users/230405/.gradle/caches/9.3.1/transforms/123778403539b24fd6a519395e8f6531/transformed/jetified-play-services-auth-21.1.1/AndroidManifest.xml:35:13-36
|
||||||
133-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:45:17-69
|
134 android:permission="com.google.android.gms.auth.api.signin.permission.REVOCATION_NOTIFICATION"
|
||||||
133-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:45:25-66
|
134-->[com.google.android.gms:play-services-auth:21.1.1] /Users/230405/.gradle/caches/9.3.1/transforms/123778403539b24fd6a519395e8f6531/transformed/jetified-play-services-auth-21.1.1/AndroidManifest.xml:36:13-107
|
||||||
134
|
135 android:visibleToInstantApps="true" />
|
||||||
135 <category android:name="android.intent.category.DEFAULT" />
|
135-->[com.google.android.gms:play-services-auth:21.1.1] /Users/230405/.gradle/caches/9.3.1/transforms/123778403539b24fd6a519395e8f6531/transformed/jetified-play-services-auth-21.1.1/AndroidManifest.xml:37:13-48
|
||||||
135-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:46:17-76
|
136
|
||||||
135-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:46:27-73
|
137 <activity
|
||||||
136 <category android:name="android.intent.category.BROWSABLE" />
|
137-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:29:9-46:20
|
||||||
136-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:47:17-78
|
138 android:name="com.google.firebase.auth.internal.GenericIdpActivity"
|
||||||
136-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:47:27-75
|
138-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:30:13-80
|
||||||
137
|
139 android:excludeFromRecents="true"
|
||||||
138 <data
|
139-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:31:13-46
|
||||||
138-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:50:17-52:57
|
140 android:exported="true"
|
||||||
139 android:host="firebase.auth"
|
140-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:32:13-36
|
||||||
139-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:52:21-54
|
141 android:launchMode="singleTask"
|
||||||
140 android:path="/"
|
141-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:33:13-44
|
||||||
141 android:scheme="genericidp" />
|
142 android:theme="@android:style/Theme.Translucent.NoTitleBar" >
|
||||||
141-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:51:21-43
|
142-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:34:13-72
|
||||||
142 </intent-filter>
|
143 <intent-filter>
|
||||||
143 </activity>
|
143-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:35:13-45:29
|
||||||
144 <activity
|
144 <action android:name="android.intent.action.VIEW" />
|
||||||
144-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:47:9-64:20
|
144-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:48:17-69
|
||||||
145 android:name="com.google.firebase.auth.internal.RecaptchaActivity"
|
144-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:48:25-66
|
||||||
145-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:48:13-79
|
145
|
||||||
146 android:excludeFromRecents="true"
|
146 <category android:name="android.intent.category.DEFAULT" />
|
||||||
146-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:49:13-46
|
146-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:49:17-76
|
||||||
147 android:exported="true"
|
146-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:49:27-73
|
||||||
147-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:50:13-36
|
147 <category android:name="android.intent.category.BROWSABLE" />
|
||||||
148 android:launchMode="singleTask"
|
147-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:50:17-78
|
||||||
148-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:51:13-44
|
147-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:50:27-75
|
||||||
149 android:theme="@android:style/Theme.Translucent.NoTitleBar" >
|
148
|
||||||
149-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:52:13-72
|
149 <data
|
||||||
150 <intent-filter>
|
149-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:53:17-55:57
|
||||||
150-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:53:13-63:29
|
150 android:host="firebase.auth"
|
||||||
151 <action android:name="android.intent.action.VIEW" />
|
150-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:55:21-54
|
||||||
151-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:45:17-69
|
151 android:path="/"
|
||||||
151-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:45:25-66
|
152 android:scheme="genericidp" />
|
||||||
152
|
152-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:54:21-43
|
||||||
153 <category android:name="android.intent.category.DEFAULT" />
|
153 </intent-filter>
|
||||||
153-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:46:17-76
|
154 </activity>
|
||||||
153-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:46:27-73
|
155 <activity
|
||||||
154 <category android:name="android.intent.category.BROWSABLE" />
|
155-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:47:9-64:20
|
||||||
154-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:47:17-78
|
156 android:name="com.google.firebase.auth.internal.RecaptchaActivity"
|
||||||
154-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:47:27-75
|
156-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:48:13-79
|
||||||
155
|
157 android:excludeFromRecents="true"
|
||||||
156 <data
|
157-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:49:13-46
|
||||||
156-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:50:17-52:57
|
158 android:exported="true"
|
||||||
157 android:host="firebase.auth"
|
158-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:50:13-36
|
||||||
157-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:52:21-54
|
159 android:launchMode="singleTask"
|
||||||
158 android:path="/"
|
159-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:51:13-44
|
||||||
159 android:scheme="recaptcha" />
|
160 android:theme="@android:style/Theme.Translucent.NoTitleBar" >
|
||||||
159-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:51:21-43
|
160-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:52:13-72
|
||||||
160 </intent-filter>
|
161 <intent-filter>
|
||||||
161 </activity>
|
161-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:53:13-63:29
|
||||||
162
|
162 <action android:name="android.intent.action.VIEW" />
|
||||||
163 <service
|
162-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:48:17-69
|
||||||
163-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:66:9-72:19
|
162-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:48:25-66
|
||||||
164 android:name="com.google.firebase.components.ComponentDiscoveryService"
|
163
|
||||||
164-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:67:13-84
|
164 <category android:name="android.intent.category.DEFAULT" />
|
||||||
165 android:directBootAware="true"
|
164-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:49:17-76
|
||||||
165-->[com.google.firebase:firebase-common:20.4.2] /Users/230405/.gradle/caches/9.3.1/transforms/b39874c7db819525a9f5154a17e28f58/transformed/jetified-firebase-common-20.4.2/AndroidManifest.xml:32:13-43
|
164-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:49:27-73
|
||||||
166 android:exported="false" >
|
165 <category android:name="android.intent.category.BROWSABLE" />
|
||||||
166-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:68:13-37
|
165-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:50:17-78
|
||||||
167 <meta-data
|
165-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:50:27-75
|
||||||
167-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:69:13-71:85
|
166
|
||||||
168 android:name="com.google.firebase.components:com.google.firebase.auth.FirebaseAuthRegistrar"
|
167 <data
|
||||||
168-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:70:17-109
|
167-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:53:17-55:57
|
||||||
169 android:value="com.google.firebase.components.ComponentRegistrar" />
|
168 android:host="firebase.auth"
|
||||||
169-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:71:17-82
|
168-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:55:21-54
|
||||||
170 <meta-data
|
169 android:path="/"
|
||||||
170-->[com.google.firebase:firebase-firestore:24.10.2] /Users/230405/.gradle/caches/9.3.1/transforms/98ff2a49f9fc4619cf1d7637e362b2c6/transformed/jetified-firebase-firestore-24.10.2/AndroidManifest.xml:17:13-19:85
|
170 android:scheme="recaptcha" />
|
||||||
171 android:name="com.google.firebase.components:com.google.firebase.firestore.FirebaseFirestoreKtxRegistrar"
|
170-->/Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:54:21-43
|
||||||
171-->[com.google.firebase:firebase-firestore:24.10.2] /Users/230405/.gradle/caches/9.3.1/transforms/98ff2a49f9fc4619cf1d7637e362b2c6/transformed/jetified-firebase-firestore-24.10.2/AndroidManifest.xml:18:17-122
|
171 </intent-filter>
|
||||||
172 android:value="com.google.firebase.components.ComponentRegistrar" />
|
172 </activity>
|
||||||
172-->[com.google.firebase:firebase-firestore:24.10.2] /Users/230405/.gradle/caches/9.3.1/transforms/98ff2a49f9fc4619cf1d7637e362b2c6/transformed/jetified-firebase-firestore-24.10.2/AndroidManifest.xml:19:17-82
|
173
|
||||||
173 <meta-data
|
174 <service
|
||||||
173-->[com.google.firebase:firebase-firestore:24.10.2] /Users/230405/.gradle/caches/9.3.1/transforms/98ff2a49f9fc4619cf1d7637e362b2c6/transformed/jetified-firebase-firestore-24.10.2/AndroidManifest.xml:20:13-22:85
|
174-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:66:9-72:19
|
||||||
174 android:name="com.google.firebase.components:com.google.firebase.firestore.FirestoreRegistrar"
|
175 android:name="com.google.firebase.components.ComponentDiscoveryService"
|
||||||
174-->[com.google.firebase:firebase-firestore:24.10.2] /Users/230405/.gradle/caches/9.3.1/transforms/98ff2a49f9fc4619cf1d7637e362b2c6/transformed/jetified-firebase-firestore-24.10.2/AndroidManifest.xml:21:17-111
|
175-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:67:13-84
|
||||||
175 android:value="com.google.firebase.components.ComponentRegistrar" />
|
176 android:directBootAware="true"
|
||||||
175-->[com.google.firebase:firebase-firestore:24.10.2] /Users/230405/.gradle/caches/9.3.1/transforms/98ff2a49f9fc4619cf1d7637e362b2c6/transformed/jetified-firebase-firestore-24.10.2/AndroidManifest.xml:22:17-82
|
176-->[com.google.firebase:firebase-common:20.4.2] /Users/230405/.gradle/caches/9.3.1/transforms/b39874c7db819525a9f5154a17e28f58/transformed/jetified-firebase-common-20.4.2/AndroidManifest.xml:32:13-43
|
||||||
176 <meta-data
|
177 android:exported="false" >
|
||||||
176-->[com.google.firebase:firebase-database:20.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/41a2d2e062c403a1fb624b22e749e1f9/transformed/jetified-firebase-database-20.3.0/AndroidManifest.xml:29:13-31:85
|
177-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:68:13-37
|
||||||
177 android:name="com.google.firebase.components:com.google.firebase.database.FirebaseDatabaseKtxRegistrar"
|
178 <meta-data
|
||||||
177-->[com.google.firebase:firebase-database:20.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/41a2d2e062c403a1fb624b22e749e1f9/transformed/jetified-firebase-database-20.3.0/AndroidManifest.xml:30:17-120
|
178-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:69:13-71:85
|
||||||
178 android:value="com.google.firebase.components.ComponentRegistrar" />
|
179 android:name="com.google.firebase.components:com.google.firebase.auth.FirebaseAuthRegistrar"
|
||||||
178-->[com.google.firebase:firebase-database:20.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/41a2d2e062c403a1fb624b22e749e1f9/transformed/jetified-firebase-database-20.3.0/AndroidManifest.xml:31:17-82
|
179-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:70:17-109
|
||||||
179 <meta-data
|
180 android:value="com.google.firebase.components.ComponentRegistrar" />
|
||||||
179-->[com.google.firebase:firebase-database:20.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/41a2d2e062c403a1fb624b22e749e1f9/transformed/jetified-firebase-database-20.3.0/AndroidManifest.xml:32:13-34:85
|
180-->[com.google.firebase:firebase-auth:22.3.1] /Users/230405/.gradle/caches/9.3.1/transforms/cd0b2c91810725c4586ac91567054059/transformed/jetified-firebase-auth-22.3.1/AndroidManifest.xml:71:17-82
|
||||||
180 android:name="com.google.firebase.components:com.google.firebase.database.DatabaseRegistrar"
|
181 <meta-data
|
||||||
180-->[com.google.firebase:firebase-database:20.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/41a2d2e062c403a1fb624b22e749e1f9/transformed/jetified-firebase-database-20.3.0/AndroidManifest.xml:33:17-109
|
181-->[com.google.firebase:firebase-firestore:24.10.2] /Users/230405/.gradle/caches/9.3.1/transforms/98ff2a49f9fc4619cf1d7637e362b2c6/transformed/jetified-firebase-firestore-24.10.2/AndroidManifest.xml:17:13-19:85
|
||||||
181 android:value="com.google.firebase.components.ComponentRegistrar" />
|
182 android:name="com.google.firebase.components:com.google.firebase.firestore.FirebaseFirestoreKtxRegistrar"
|
||||||
181-->[com.google.firebase:firebase-database:20.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/41a2d2e062c403a1fb624b22e749e1f9/transformed/jetified-firebase-database-20.3.0/AndroidManifest.xml:34:17-82
|
182-->[com.google.firebase:firebase-firestore:24.10.2] /Users/230405/.gradle/caches/9.3.1/transforms/98ff2a49f9fc4619cf1d7637e362b2c6/transformed/jetified-firebase-firestore-24.10.2/AndroidManifest.xml:18:17-122
|
||||||
182 <meta-data
|
183 android:value="com.google.firebase.components.ComponentRegistrar" />
|
||||||
182-->[com.google.firebase:firebase-common-ktx:20.4.2] /Users/230405/.gradle/caches/9.3.1/transforms/35a60490c9817179a8e8979bc19936b2/transformed/jetified-firebase-common-ktx-20.4.2/AndroidManifest.xml:12:13-14:85
|
183-->[com.google.firebase:firebase-firestore:24.10.2] /Users/230405/.gradle/caches/9.3.1/transforms/98ff2a49f9fc4619cf1d7637e362b2c6/transformed/jetified-firebase-firestore-24.10.2/AndroidManifest.xml:19:17-82
|
||||||
183 android:name="com.google.firebase.components:com.google.firebase.ktx.FirebaseCommonLegacyRegistrar"
|
184 <meta-data
|
||||||
183-->[com.google.firebase:firebase-common-ktx:20.4.2] /Users/230405/.gradle/caches/9.3.1/transforms/35a60490c9817179a8e8979bc19936b2/transformed/jetified-firebase-common-ktx-20.4.2/AndroidManifest.xml:13:17-116
|
184-->[com.google.firebase:firebase-firestore:24.10.2] /Users/230405/.gradle/caches/9.3.1/transforms/98ff2a49f9fc4619cf1d7637e362b2c6/transformed/jetified-firebase-firestore-24.10.2/AndroidManifest.xml:20:13-22:85
|
||||||
184 android:value="com.google.firebase.components.ComponentRegistrar" />
|
185 android:name="com.google.firebase.components:com.google.firebase.firestore.FirestoreRegistrar"
|
||||||
184-->[com.google.firebase:firebase-common-ktx:20.4.2] /Users/230405/.gradle/caches/9.3.1/transforms/35a60490c9817179a8e8979bc19936b2/transformed/jetified-firebase-common-ktx-20.4.2/AndroidManifest.xml:14:17-82
|
185-->[com.google.firebase:firebase-firestore:24.10.2] /Users/230405/.gradle/caches/9.3.1/transforms/98ff2a49f9fc4619cf1d7637e362b2c6/transformed/jetified-firebase-firestore-24.10.2/AndroidManifest.xml:21:17-111
|
||||||
185 <meta-data
|
186 android:value="com.google.firebase.components.ComponentRegistrar" />
|
||||||
185-->[com.google.firebase:firebase-common:20.4.2] /Users/230405/.gradle/caches/9.3.1/transforms/b39874c7db819525a9f5154a17e28f58/transformed/jetified-firebase-common-20.4.2/AndroidManifest.xml:35:13-37:85
|
186-->[com.google.firebase:firebase-firestore:24.10.2] /Users/230405/.gradle/caches/9.3.1/transforms/98ff2a49f9fc4619cf1d7637e362b2c6/transformed/jetified-firebase-firestore-24.10.2/AndroidManifest.xml:22:17-82
|
||||||
186 android:name="com.google.firebase.components:com.google.firebase.FirebaseCommonKtxRegistrar"
|
187 <meta-data
|
||||||
186-->[com.google.firebase:firebase-common:20.4.2] /Users/230405/.gradle/caches/9.3.1/transforms/b39874c7db819525a9f5154a17e28f58/transformed/jetified-firebase-common-20.4.2/AndroidManifest.xml:36:17-109
|
187-->[com.google.firebase:firebase-database:20.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/41a2d2e062c403a1fb624b22e749e1f9/transformed/jetified-firebase-database-20.3.0/AndroidManifest.xml:29:13-31:85
|
||||||
187 android:value="com.google.firebase.components.ComponentRegistrar" />
|
188 android:name="com.google.firebase.components:com.google.firebase.database.FirebaseDatabaseKtxRegistrar"
|
||||||
187-->[com.google.firebase:firebase-common:20.4.2] /Users/230405/.gradle/caches/9.3.1/transforms/b39874c7db819525a9f5154a17e28f58/transformed/jetified-firebase-common-20.4.2/AndroidManifest.xml:37:17-82
|
188-->[com.google.firebase:firebase-database:20.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/41a2d2e062c403a1fb624b22e749e1f9/transformed/jetified-firebase-database-20.3.0/AndroidManifest.xml:30:17-120
|
||||||
188 </service>
|
189 android:value="com.google.firebase.components.ComponentRegistrar" />
|
||||||
189
|
189-->[com.google.firebase:firebase-database:20.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/41a2d2e062c403a1fb624b22e749e1f9/transformed/jetified-firebase-database-20.3.0/AndroidManifest.xml:31:17-82
|
||||||
190 <activity
|
190 <meta-data
|
||||||
190-->[com.google.android.gms:play-services-base:18.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/08c63c2d695195a40059d86b2560f322/transformed/jetified-play-services-base-18.5.0/AndroidManifest.xml:5:9-173
|
190-->[com.google.firebase:firebase-database:20.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/41a2d2e062c403a1fb624b22e749e1f9/transformed/jetified-firebase-database-20.3.0/AndroidManifest.xml:32:13-34:85
|
||||||
191 android:name="com.google.android.gms.common.api.GoogleApiActivity"
|
191 android:name="com.google.firebase.components:com.google.firebase.database.DatabaseRegistrar"
|
||||||
191-->[com.google.android.gms:play-services-base:18.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/08c63c2d695195a40059d86b2560f322/transformed/jetified-play-services-base-18.5.0/AndroidManifest.xml:5:19-85
|
191-->[com.google.firebase:firebase-database:20.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/41a2d2e062c403a1fb624b22e749e1f9/transformed/jetified-firebase-database-20.3.0/AndroidManifest.xml:33:17-109
|
||||||
192 android:exported="false"
|
192 android:value="com.google.firebase.components.ComponentRegistrar" />
|
||||||
192-->[com.google.android.gms:play-services-base:18.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/08c63c2d695195a40059d86b2560f322/transformed/jetified-play-services-base-18.5.0/AndroidManifest.xml:5:146-170
|
192-->[com.google.firebase:firebase-database:20.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/41a2d2e062c403a1fb624b22e749e1f9/transformed/jetified-firebase-database-20.3.0/AndroidManifest.xml:34:17-82
|
||||||
193 android:theme="@android:style/Theme.Translucent.NoTitleBar" />
|
193 <meta-data
|
||||||
193-->[com.google.android.gms:play-services-base:18.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/08c63c2d695195a40059d86b2560f322/transformed/jetified-play-services-base-18.5.0/AndroidManifest.xml:5:86-145
|
193-->[com.google.firebase:firebase-common-ktx:20.4.2] /Users/230405/.gradle/caches/9.3.1/transforms/35a60490c9817179a8e8979bc19936b2/transformed/jetified-firebase-common-ktx-20.4.2/AndroidManifest.xml:12:13-14:85
|
||||||
194
|
194 android:name="com.google.firebase.components:com.google.firebase.ktx.FirebaseCommonLegacyRegistrar"
|
||||||
195 <provider
|
194-->[com.google.firebase:firebase-common-ktx:20.4.2] /Users/230405/.gradle/caches/9.3.1/transforms/35a60490c9817179a8e8979bc19936b2/transformed/jetified-firebase-common-ktx-20.4.2/AndroidManifest.xml:13:17-116
|
||||||
195-->[com.google.firebase:firebase-common:20.4.2] /Users/230405/.gradle/caches/9.3.1/transforms/b39874c7db819525a9f5154a17e28f58/transformed/jetified-firebase-common-20.4.2/AndroidManifest.xml:23:9-28:39
|
195 android:value="com.google.firebase.components.ComponentRegistrar" />
|
||||||
196 android:name="com.google.firebase.provider.FirebaseInitProvider"
|
195-->[com.google.firebase:firebase-common-ktx:20.4.2] /Users/230405/.gradle/caches/9.3.1/transforms/35a60490c9817179a8e8979bc19936b2/transformed/jetified-firebase-common-ktx-20.4.2/AndroidManifest.xml:14:17-82
|
||||||
196-->[com.google.firebase:firebase-common:20.4.2] /Users/230405/.gradle/caches/9.3.1/transforms/b39874c7db819525a9f5154a17e28f58/transformed/jetified-firebase-common-20.4.2/AndroidManifest.xml:24:13-77
|
196 <meta-data
|
||||||
197 android:authorities="com.example.cuida.firebaseinitprovider"
|
196-->[com.google.firebase:firebase-common:20.4.2] /Users/230405/.gradle/caches/9.3.1/transforms/b39874c7db819525a9f5154a17e28f58/transformed/jetified-firebase-common-20.4.2/AndroidManifest.xml:35:13-37:85
|
||||||
197-->[com.google.firebase:firebase-common:20.4.2] /Users/230405/.gradle/caches/9.3.1/transforms/b39874c7db819525a9f5154a17e28f58/transformed/jetified-firebase-common-20.4.2/AndroidManifest.xml:25:13-72
|
197 android:name="com.google.firebase.components:com.google.firebase.FirebaseCommonKtxRegistrar"
|
||||||
198 android:directBootAware="true"
|
197-->[com.google.firebase:firebase-common:20.4.2] /Users/230405/.gradle/caches/9.3.1/transforms/b39874c7db819525a9f5154a17e28f58/transformed/jetified-firebase-common-20.4.2/AndroidManifest.xml:36:17-109
|
||||||
198-->[com.google.firebase:firebase-common:20.4.2] /Users/230405/.gradle/caches/9.3.1/transforms/b39874c7db819525a9f5154a17e28f58/transformed/jetified-firebase-common-20.4.2/AndroidManifest.xml:26:13-43
|
198 android:value="com.google.firebase.components.ComponentRegistrar" />
|
||||||
199 android:exported="false"
|
198-->[com.google.firebase:firebase-common:20.4.2] /Users/230405/.gradle/caches/9.3.1/transforms/b39874c7db819525a9f5154a17e28f58/transformed/jetified-firebase-common-20.4.2/AndroidManifest.xml:37:17-82
|
||||||
199-->[com.google.firebase:firebase-common:20.4.2] /Users/230405/.gradle/caches/9.3.1/transforms/b39874c7db819525a9f5154a17e28f58/transformed/jetified-firebase-common-20.4.2/AndroidManifest.xml:27:13-37
|
199 </service>
|
||||||
200 android:initOrder="100" />
|
200
|
||||||
200-->[com.google.firebase:firebase-common:20.4.2] /Users/230405/.gradle/caches/9.3.1/transforms/b39874c7db819525a9f5154a17e28f58/transformed/jetified-firebase-common-20.4.2/AndroidManifest.xml:28:13-36
|
201 <activity
|
||||||
201 <provider
|
201-->[com.google.android.gms:play-services-base:18.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/08c63c2d695195a40059d86b2560f322/transformed/jetified-play-services-base-18.5.0/AndroidManifest.xml:5:9-173
|
||||||
201-->[androidx.emoji2:emoji2:1.2.0] /Users/230405/.gradle/caches/9.3.1/transforms/595a443fc347bf96780d3ff48dd3e301/transformed/jetified-emoji2-1.2.0/AndroidManifest.xml:24:9-32:20
|
202 android:name="com.google.android.gms.common.api.GoogleApiActivity"
|
||||||
202 android:name="androidx.startup.InitializationProvider"
|
202-->[com.google.android.gms:play-services-base:18.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/08c63c2d695195a40059d86b2560f322/transformed/jetified-play-services-base-18.5.0/AndroidManifest.xml:5:19-85
|
||||||
202-->[androidx.emoji2:emoji2:1.2.0] /Users/230405/.gradle/caches/9.3.1/transforms/595a443fc347bf96780d3ff48dd3e301/transformed/jetified-emoji2-1.2.0/AndroidManifest.xml:25:13-67
|
203 android:exported="false"
|
||||||
203 android:authorities="com.example.cuida.androidx-startup"
|
203-->[com.google.android.gms:play-services-base:18.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/08c63c2d695195a40059d86b2560f322/transformed/jetified-play-services-base-18.5.0/AndroidManifest.xml:5:146-170
|
||||||
203-->[androidx.emoji2:emoji2:1.2.0] /Users/230405/.gradle/caches/9.3.1/transforms/595a443fc347bf96780d3ff48dd3e301/transformed/jetified-emoji2-1.2.0/AndroidManifest.xml:26:13-68
|
204 android:theme="@android:style/Theme.Translucent.NoTitleBar" />
|
||||||
204 android:exported="false" >
|
204-->[com.google.android.gms:play-services-base:18.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/08c63c2d695195a40059d86b2560f322/transformed/jetified-play-services-base-18.5.0/AndroidManifest.xml:5:86-145
|
||||||
204-->[androidx.emoji2:emoji2:1.2.0] /Users/230405/.gradle/caches/9.3.1/transforms/595a443fc347bf96780d3ff48dd3e301/transformed/jetified-emoji2-1.2.0/AndroidManifest.xml:27:13-37
|
205
|
||||||
205 <meta-data
|
206 <provider
|
||||||
205-->[androidx.emoji2:emoji2:1.2.0] /Users/230405/.gradle/caches/9.3.1/transforms/595a443fc347bf96780d3ff48dd3e301/transformed/jetified-emoji2-1.2.0/AndroidManifest.xml:29:13-31:52
|
206-->[com.google.firebase:firebase-common:20.4.2] /Users/230405/.gradle/caches/9.3.1/transforms/b39874c7db819525a9f5154a17e28f58/transformed/jetified-firebase-common-20.4.2/AndroidManifest.xml:23:9-28:39
|
||||||
206 android:name="androidx.emoji2.text.EmojiCompatInitializer"
|
207 android:name="com.google.firebase.provider.FirebaseInitProvider"
|
||||||
206-->[androidx.emoji2:emoji2:1.2.0] /Users/230405/.gradle/caches/9.3.1/transforms/595a443fc347bf96780d3ff48dd3e301/transformed/jetified-emoji2-1.2.0/AndroidManifest.xml:30:17-75
|
207-->[com.google.firebase:firebase-common:20.4.2] /Users/230405/.gradle/caches/9.3.1/transforms/b39874c7db819525a9f5154a17e28f58/transformed/jetified-firebase-common-20.4.2/AndroidManifest.xml:24:13-77
|
||||||
207 android:value="androidx.startup" />
|
208 android:authorities="com.example.cuida.firebaseinitprovider"
|
||||||
207-->[androidx.emoji2:emoji2:1.2.0] /Users/230405/.gradle/caches/9.3.1/transforms/595a443fc347bf96780d3ff48dd3e301/transformed/jetified-emoji2-1.2.0/AndroidManifest.xml:31:17-49
|
208-->[com.google.firebase:firebase-common:20.4.2] /Users/230405/.gradle/caches/9.3.1/transforms/b39874c7db819525a9f5154a17e28f58/transformed/jetified-firebase-common-20.4.2/AndroidManifest.xml:25:13-72
|
||||||
208 <meta-data
|
209 android:directBootAware="true"
|
||||||
208-->[androidx.lifecycle:lifecycle-process:2.7.0] /Users/230405/.gradle/caches/9.3.1/transforms/fc798f85efb5ef77469cfc8b7d3e99d9/transformed/jetified-lifecycle-process-2.7.0/AndroidManifest.xml:29:13-31:52
|
209-->[com.google.firebase:firebase-common:20.4.2] /Users/230405/.gradle/caches/9.3.1/transforms/b39874c7db819525a9f5154a17e28f58/transformed/jetified-firebase-common-20.4.2/AndroidManifest.xml:26:13-43
|
||||||
209 android:name="androidx.lifecycle.ProcessLifecycleInitializer"
|
210 android:exported="false"
|
||||||
209-->[androidx.lifecycle:lifecycle-process:2.7.0] /Users/230405/.gradle/caches/9.3.1/transforms/fc798f85efb5ef77469cfc8b7d3e99d9/transformed/jetified-lifecycle-process-2.7.0/AndroidManifest.xml:30:17-78
|
210-->[com.google.firebase:firebase-common:20.4.2] /Users/230405/.gradle/caches/9.3.1/transforms/b39874c7db819525a9f5154a17e28f58/transformed/jetified-firebase-common-20.4.2/AndroidManifest.xml:27:13-37
|
||||||
210 android:value="androidx.startup" />
|
211 android:initOrder="100" />
|
||||||
210-->[androidx.lifecycle:lifecycle-process:2.7.0] /Users/230405/.gradle/caches/9.3.1/transforms/fc798f85efb5ef77469cfc8b7d3e99d9/transformed/jetified-lifecycle-process-2.7.0/AndroidManifest.xml:31:17-49
|
211-->[com.google.firebase:firebase-common:20.4.2] /Users/230405/.gradle/caches/9.3.1/transforms/b39874c7db819525a9f5154a17e28f58/transformed/jetified-firebase-common-20.4.2/AndroidManifest.xml:28:13-36
|
||||||
211 <meta-data
|
212 <provider
|
||||||
211-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:29:13-31:52
|
212-->[androidx.emoji2:emoji2:1.2.0] /Users/230405/.gradle/caches/9.3.1/transforms/595a443fc347bf96780d3ff48dd3e301/transformed/jetified-emoji2-1.2.0/AndroidManifest.xml:24:9-32:20
|
||||||
212 android:name="androidx.profileinstaller.ProfileInstallerInitializer"
|
213 android:name="androidx.startup.InitializationProvider"
|
||||||
212-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:30:17-85
|
213-->[androidx.emoji2:emoji2:1.2.0] /Users/230405/.gradle/caches/9.3.1/transforms/595a443fc347bf96780d3ff48dd3e301/transformed/jetified-emoji2-1.2.0/AndroidManifest.xml:25:13-67
|
||||||
213 android:value="androidx.startup" />
|
214 android:authorities="com.example.cuida.androidx-startup"
|
||||||
213-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:31:17-49
|
214-->[androidx.emoji2:emoji2:1.2.0] /Users/230405/.gradle/caches/9.3.1/transforms/595a443fc347bf96780d3ff48dd3e301/transformed/jetified-emoji2-1.2.0/AndroidManifest.xml:26:13-68
|
||||||
214 </provider>
|
215 android:exported="false" >
|
||||||
215
|
215-->[androidx.emoji2:emoji2:1.2.0] /Users/230405/.gradle/caches/9.3.1/transforms/595a443fc347bf96780d3ff48dd3e301/transformed/jetified-emoji2-1.2.0/AndroidManifest.xml:27:13-37
|
||||||
216 <uses-library
|
216 <meta-data
|
||||||
216-->[androidx.window:window:1.0.0] /Users/230405/.gradle/caches/9.3.1/transforms/05ce0d608947fc001ac2ea304b774f98/transformed/jetified-window-1.0.0/AndroidManifest.xml:25:9-27:40
|
216-->[androidx.emoji2:emoji2:1.2.0] /Users/230405/.gradle/caches/9.3.1/transforms/595a443fc347bf96780d3ff48dd3e301/transformed/jetified-emoji2-1.2.0/AndroidManifest.xml:29:13-31:52
|
||||||
217 android:name="androidx.window.extensions"
|
217 android:name="androidx.emoji2.text.EmojiCompatInitializer"
|
||||||
217-->[androidx.window:window:1.0.0] /Users/230405/.gradle/caches/9.3.1/transforms/05ce0d608947fc001ac2ea304b774f98/transformed/jetified-window-1.0.0/AndroidManifest.xml:26:13-54
|
217-->[androidx.emoji2:emoji2:1.2.0] /Users/230405/.gradle/caches/9.3.1/transforms/595a443fc347bf96780d3ff48dd3e301/transformed/jetified-emoji2-1.2.0/AndroidManifest.xml:30:17-75
|
||||||
218 android:required="false" />
|
218 android:value="androidx.startup" />
|
||||||
218-->[androidx.window:window:1.0.0] /Users/230405/.gradle/caches/9.3.1/transforms/05ce0d608947fc001ac2ea304b774f98/transformed/jetified-window-1.0.0/AndroidManifest.xml:27:13-37
|
218-->[androidx.emoji2:emoji2:1.2.0] /Users/230405/.gradle/caches/9.3.1/transforms/595a443fc347bf96780d3ff48dd3e301/transformed/jetified-emoji2-1.2.0/AndroidManifest.xml:31:17-49
|
||||||
219 <uses-library
|
219 <meta-data
|
||||||
219-->[androidx.window:window:1.0.0] /Users/230405/.gradle/caches/9.3.1/transforms/05ce0d608947fc001ac2ea304b774f98/transformed/jetified-window-1.0.0/AndroidManifest.xml:28:9-30:40
|
219-->[androidx.lifecycle:lifecycle-process:2.7.0] /Users/230405/.gradle/caches/9.3.1/transforms/fc798f85efb5ef77469cfc8b7d3e99d9/transformed/jetified-lifecycle-process-2.7.0/AndroidManifest.xml:29:13-31:52
|
||||||
220 android:name="androidx.window.sidecar"
|
220 android:name="androidx.lifecycle.ProcessLifecycleInitializer"
|
||||||
220-->[androidx.window:window:1.0.0] /Users/230405/.gradle/caches/9.3.1/transforms/05ce0d608947fc001ac2ea304b774f98/transformed/jetified-window-1.0.0/AndroidManifest.xml:29:13-51
|
220-->[androidx.lifecycle:lifecycle-process:2.7.0] /Users/230405/.gradle/caches/9.3.1/transforms/fc798f85efb5ef77469cfc8b7d3e99d9/transformed/jetified-lifecycle-process-2.7.0/AndroidManifest.xml:30:17-78
|
||||||
221 android:required="false" />
|
221 android:value="androidx.startup" />
|
||||||
221-->[androidx.window:window:1.0.0] /Users/230405/.gradle/caches/9.3.1/transforms/05ce0d608947fc001ac2ea304b774f98/transformed/jetified-window-1.0.0/AndroidManifest.xml:30:13-37
|
221-->[androidx.lifecycle:lifecycle-process:2.7.0] /Users/230405/.gradle/caches/9.3.1/transforms/fc798f85efb5ef77469cfc8b7d3e99d9/transformed/jetified-lifecycle-process-2.7.0/AndroidManifest.xml:31:17-49
|
||||||
222
|
222 <meta-data
|
||||||
223 <receiver
|
222-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:29:13-31:52
|
||||||
223-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:34:9-52:20
|
223 android:name="androidx.profileinstaller.ProfileInstallerInitializer"
|
||||||
224 android:name="androidx.profileinstaller.ProfileInstallReceiver"
|
223-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:30:17-85
|
||||||
224-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:35:13-76
|
224 android:value="androidx.startup" />
|
||||||
225 android:directBootAware="false"
|
224-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:31:17-49
|
||||||
225-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:36:13-44
|
225 </provider>
|
||||||
226 android:enabled="true"
|
226
|
||||||
226-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:37:13-35
|
227 <uses-library
|
||||||
227 android:exported="true"
|
227-->[androidx.window:window:1.0.0] /Users/230405/.gradle/caches/9.3.1/transforms/05ce0d608947fc001ac2ea304b774f98/transformed/jetified-window-1.0.0/AndroidManifest.xml:25:9-27:40
|
||||||
227-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:38:13-36
|
228 android:name="androidx.window.extensions"
|
||||||
228 android:permission="android.permission.DUMP" >
|
228-->[androidx.window:window:1.0.0] /Users/230405/.gradle/caches/9.3.1/transforms/05ce0d608947fc001ac2ea304b774f98/transformed/jetified-window-1.0.0/AndroidManifest.xml:26:13-54
|
||||||
228-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:39:13-57
|
229 android:required="false" />
|
||||||
229 <intent-filter>
|
229-->[androidx.window:window:1.0.0] /Users/230405/.gradle/caches/9.3.1/transforms/05ce0d608947fc001ac2ea304b774f98/transformed/jetified-window-1.0.0/AndroidManifest.xml:27:13-37
|
||||||
229-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:40:13-42:29
|
230 <uses-library
|
||||||
230 <action android:name="androidx.profileinstaller.action.INSTALL_PROFILE" />
|
230-->[androidx.window:window:1.0.0] /Users/230405/.gradle/caches/9.3.1/transforms/05ce0d608947fc001ac2ea304b774f98/transformed/jetified-window-1.0.0/AndroidManifest.xml:28:9-30:40
|
||||||
230-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:41:17-91
|
231 android:name="androidx.window.sidecar"
|
||||||
230-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:41:25-88
|
231-->[androidx.window:window:1.0.0] /Users/230405/.gradle/caches/9.3.1/transforms/05ce0d608947fc001ac2ea304b774f98/transformed/jetified-window-1.0.0/AndroidManifest.xml:29:13-51
|
||||||
231 </intent-filter>
|
232 android:required="false" />
|
||||||
232 <intent-filter>
|
232-->[androidx.window:window:1.0.0] /Users/230405/.gradle/caches/9.3.1/transforms/05ce0d608947fc001ac2ea304b774f98/transformed/jetified-window-1.0.0/AndroidManifest.xml:30:13-37
|
||||||
232-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:43:13-45:29
|
233
|
||||||
233 <action android:name="androidx.profileinstaller.action.SKIP_FILE" />
|
234 <receiver
|
||||||
233-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:44:17-85
|
234-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:34:9-52:20
|
||||||
233-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:44:25-82
|
235 android:name="androidx.profileinstaller.ProfileInstallReceiver"
|
||||||
234 </intent-filter>
|
235-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:35:13-76
|
||||||
235 <intent-filter>
|
236 android:directBootAware="false"
|
||||||
235-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:46:13-48:29
|
236-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:36:13-44
|
||||||
236 <action android:name="androidx.profileinstaller.action.SAVE_PROFILE" />
|
237 android:enabled="true"
|
||||||
236-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:47:17-88
|
237-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:37:13-35
|
||||||
236-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:47:25-85
|
238 android:exported="true"
|
||||||
237 </intent-filter>
|
238-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:38:13-36
|
||||||
238 <intent-filter>
|
239 android:permission="android.permission.DUMP" >
|
||||||
238-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:49:13-51:29
|
239-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:39:13-57
|
||||||
239 <action android:name="androidx.profileinstaller.action.BENCHMARK_OPERATION" />
|
240 <intent-filter>
|
||||||
239-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:50:17-95
|
240-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:40:13-42:29
|
||||||
239-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:50:25-92
|
241 <action android:name="androidx.profileinstaller.action.INSTALL_PROFILE" />
|
||||||
240 </intent-filter>
|
241-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:41:17-91
|
||||||
241 </receiver>
|
241-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:41:25-88
|
||||||
242
|
242 </intent-filter>
|
||||||
243 <meta-data
|
243 <intent-filter>
|
||||||
243-->[com.google.android.gms:play-services-basement:18.4.0] /Users/230405/.gradle/caches/9.3.1/transforms/25cfb66be76178547eabc641711f426d/transformed/jetified-play-services-basement-18.4.0/AndroidManifest.xml:6:9-122
|
243-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:43:13-45:29
|
||||||
244 android:name="com.google.android.gms.version"
|
244 <action android:name="androidx.profileinstaller.action.SKIP_FILE" />
|
||||||
244-->[com.google.android.gms:play-services-basement:18.4.0] /Users/230405/.gradle/caches/9.3.1/transforms/25cfb66be76178547eabc641711f426d/transformed/jetified-play-services-basement-18.4.0/AndroidManifest.xml:6:20-65
|
244-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:44:17-85
|
||||||
245 android:value="@integer/google_play_services_version" />
|
244-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:44:25-82
|
||||||
245-->[com.google.android.gms:play-services-basement:18.4.0] /Users/230405/.gradle/caches/9.3.1/transforms/25cfb66be76178547eabc641711f426d/transformed/jetified-play-services-basement-18.4.0/AndroidManifest.xml:6:66-119
|
245 </intent-filter>
|
||||||
246 </application>
|
246 <intent-filter>
|
||||||
247
|
246-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:46:13-48:29
|
||||||
248</manifest>
|
247 <action android:name="androidx.profileinstaller.action.SAVE_PROFILE" />
|
||||||
|
247-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:47:17-88
|
||||||
|
247-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:47:25-85
|
||||||
|
248 </intent-filter>
|
||||||
|
249 <intent-filter>
|
||||||
|
249-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:49:13-51:29
|
||||||
|
250 <action android:name="androidx.profileinstaller.action.BENCHMARK_OPERATION" />
|
||||||
|
250-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:50:17-95
|
||||||
|
250-->[androidx.profileinstaller:profileinstaller:1.3.0] /Users/230405/.gradle/caches/9.3.1/transforms/da4c04d5a093d60fd1056f60dcc2fd09/transformed/jetified-profileinstaller-1.3.0/AndroidManifest.xml:50:25-92
|
||||||
|
251 </intent-filter>
|
||||||
|
252 </receiver>
|
||||||
|
253
|
||||||
|
254 <meta-data
|
||||||
|
254-->[com.google.android.gms:play-services-basement:18.4.0] /Users/230405/.gradle/caches/9.3.1/transforms/25cfb66be76178547eabc641711f426d/transformed/jetified-play-services-basement-18.4.0/AndroidManifest.xml:6:9-122
|
||||||
|
255 android:name="com.google.android.gms.version"
|
||||||
|
255-->[com.google.android.gms:play-services-basement:18.4.0] /Users/230405/.gradle/caches/9.3.1/transforms/25cfb66be76178547eabc641711f426d/transformed/jetified-play-services-basement-18.4.0/AndroidManifest.xml:6:20-65
|
||||||
|
256 android:value="@integer/google_play_services_version" />
|
||||||
|
256-->[com.google.android.gms:play-services-basement:18.4.0] /Users/230405/.gradle/caches/9.3.1/transforms/25cfb66be76178547eabc641711f426d/transformed/jetified-play-services-basement-18.4.0/AndroidManifest.xml:6:66-119
|
||||||
|
257 </application>
|
||||||
|
258
|
||||||
|
259</manifest>
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
||||||
<uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM" />
|
<uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM" />
|
||||||
<uses-permission android:name="android.permission.USE_EXACT_ALARM" />
|
<uses-permission android:name="android.permission.USE_EXACT_ALARM" />
|
||||||
<uses-permission android:name="android.permission.USE_BIOMETRIC" /> <!-- suppress DeprecatedClassUsageInspection -->
|
<uses-permission android:name="android.permission.USE_BIOMETRIC" />
|
||||||
<uses-permission android:name="android.permission.USE_FINGERPRINT" />
|
<uses-permission android:name="android.permission.USE_FINGERPRINT" />
|
||||||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||||||
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
|
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
|
||||||
@@ -28,6 +28,7 @@
|
|||||||
<uses-permission android:name="com.example.cuida.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION" />
|
<uses-permission android:name="com.example.cuida.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION" />
|
||||||
|
|
||||||
<application
|
<application
|
||||||
|
android:name="com.example.cuida.CuidaApplication"
|
||||||
android:allowBackup="true"
|
android:allowBackup="true"
|
||||||
android:appComponentFactory="androidx.core.app.CoreComponentFactory"
|
android:appComponentFactory="androidx.core.app.CoreComponentFactory"
|
||||||
android:dataExtractionRules="@xml/data_extraction_rules"
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
||||||
@@ -83,6 +84,16 @@
|
|||||||
android:name="com.example.cuida.services.AlarmReceiver"
|
android:name="com.example.cuida.services.AlarmReceiver"
|
||||||
android:exported="false" />
|
android:exported="false" />
|
||||||
|
|
||||||
|
<provider
|
||||||
|
android:name="androidx.core.content.FileProvider"
|
||||||
|
android:authorities="com.example.cuida.fileprovider"
|
||||||
|
android:exported="false"
|
||||||
|
android:grantUriPermissions="true" >
|
||||||
|
<meta-data
|
||||||
|
android:name="android.support.FILE_PATHS"
|
||||||
|
android:resource="@xml/file_paths" />
|
||||||
|
</provider>
|
||||||
|
|
||||||
<service
|
<service
|
||||||
android:name="androidx.credentials.playservices.CredentialProviderMetadataHolder"
|
android:name="androidx.credentials.playservices.CredentialProviderMetadataHolder"
|
||||||
android:enabled="true"
|
android:enabled="true"
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
||||||
<uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM" />
|
<uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM" />
|
||||||
<uses-permission android:name="android.permission.USE_EXACT_ALARM" />
|
<uses-permission android:name="android.permission.USE_EXACT_ALARM" />
|
||||||
<uses-permission android:name="android.permission.USE_BIOMETRIC" /> <!-- suppress DeprecatedClassUsageInspection -->
|
<uses-permission android:name="android.permission.USE_BIOMETRIC" />
|
||||||
<uses-permission android:name="android.permission.USE_FINGERPRINT" />
|
<uses-permission android:name="android.permission.USE_FINGERPRINT" />
|
||||||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||||||
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
|
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
|
||||||
@@ -28,6 +28,7 @@
|
|||||||
<uses-permission android:name="com.example.cuida.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION" />
|
<uses-permission android:name="com.example.cuida.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION" />
|
||||||
|
|
||||||
<application
|
<application
|
||||||
|
android:name="com.example.cuida.CuidaApplication"
|
||||||
android:allowBackup="true"
|
android:allowBackup="true"
|
||||||
android:appComponentFactory="androidx.core.app.CoreComponentFactory"
|
android:appComponentFactory="androidx.core.app.CoreComponentFactory"
|
||||||
android:dataExtractionRules="@xml/data_extraction_rules"
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
||||||
@@ -83,6 +84,16 @@
|
|||||||
android:name="com.example.cuida.services.AlarmReceiver"
|
android:name="com.example.cuida.services.AlarmReceiver"
|
||||||
android:exported="false" />
|
android:exported="false" />
|
||||||
|
|
||||||
|
<provider
|
||||||
|
android:name="androidx.core.content.FileProvider"
|
||||||
|
android:authorities="com.example.cuida.fileprovider"
|
||||||
|
android:exported="false"
|
||||||
|
android:grantUriPermissions="true" >
|
||||||
|
<meta-data
|
||||||
|
android:name="android.support.FILE_PATHS"
|
||||||
|
android:resource="@xml/file_paths" />
|
||||||
|
</provider>
|
||||||
|
|
||||||
<service
|
<service
|
||||||
android:name="androidx.credentials.playservices.CredentialProviderMetadataHolder"
|
android:name="androidx.credentials.playservices.CredentialProviderMetadataHolder"
|
||||||
android:enabled="true"
|
android:enabled="true"
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,78 +1,74 @@
|
|||||||
[
|
[
|
||||||
|
{
|
||||||
|
"merged": "com.example.cuida.app-mergeDebugResources-53:/layout/activity_register.xml",
|
||||||
|
"source": "com.example.cuida.app-main-56:/layout/activity_register.xml"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"merged": "com.example.cuida.app-mergeDebugResources-53:/layout/item_comprimido_search.xml",
|
"merged": "com.example.cuida.app-mergeDebugResources-53:/layout/item_comprimido_search.xml",
|
||||||
"source": "com.example.cuida.app-main-56:/layout/item_comprimido_search.xml"
|
"source": "com.example.cuida.app-main-56:/layout/item_comprimido_search.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-mergeDebugResources-53:/layout/item_comprimido_search.xml",
|
"merged": "com.example.cuida.app-mergeDebugResources-53:/layout/fragment_appointments.xml",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/layout/item_comprimido_search.xml"
|
"source": "com.example.cuida.app-main-56:/layout/fragment_appointments.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-mergeDebugResources-53:/layout/fragment_medication.xml",
|
"merged": "com.example.cuida.app-mergeDebugResources-53:/layout/dialog_edit_profile.xml",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/layout/fragment_medication.xml"
|
"source": "com.example.cuida.app-main-56:/layout/dialog_edit_profile.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-mergeDebugResources-53:/layout/fragment_appointments.xml",
|
"merged": "com.example.cuida.app-mergeDebugResources-53:/layout/activity_login.xml",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/layout/fragment_appointments.xml"
|
"source": "com.example.cuida.app-main-56:/layout/activity_login.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-mergeDebugResources-53:/layout/fragment_schedule_appointment.xml",
|
"merged": "com.example.cuida.app-mergeDebugResources-53:/layout/dialog_change_password.xml",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/layout/fragment_schedule_appointment.xml"
|
"source": "com.example.cuida.app-main-56:/layout/dialog_change_password.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-mergeDebugResources-53:/layout/dialog_change_password.xml",
|
"merged": "com.example.cuida.app-mergeDebugResources-53:/layout/item_medication.xml",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/layout/dialog_change_password.xml"
|
"source": "com.example.cuida.app-main-56:/layout/item_medication.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-mergeDebugResources-53:/layout/item_medication.xml",
|
"merged": "com.example.cuida.app-mergeDebugResources-53:/layout/fragment_medication.xml",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/layout/item_medication.xml"
|
"source": "com.example.cuida.app-main-56:/layout/fragment_medication.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-mergeDebugResources-53:/layout/activity_forgot_password.xml",
|
"merged": "com.example.cuida.app-mergeDebugResources-53:/layout/item_time_slot.xml",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/layout/activity_forgot_password.xml"
|
"source": "com.example.cuida.app-main-56:/layout/item_time_slot.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-mergeDebugResources-53:/layout/fragment_sns24.xml",
|
"merged": "com.example.cuida.app-mergeDebugResources-53:/layout/activity_forgot_password.xml",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/layout/fragment_sns24.xml"
|
"source": "com.example.cuida.app-main-56:/layout/activity_forgot_password.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-mergeDebugResources-53:/layout/fragment_profile.xml",
|
"merged": "com.example.cuida.app-mergeDebugResources-53:/layout/activity_reset_password.xml",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/layout/fragment_profile.xml"
|
"source": "com.example.cuida.app-main-56:/layout/activity_reset_password.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-mergeDebugResources-53:/layout/activity_login.xml",
|
"merged": "com.example.cuida.app-mergeDebugResources-53:/layout/fragment_schedule_appointment.xml",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/layout/activity_login.xml"
|
"source": "com.example.cuida.app-main-56:/layout/fragment_schedule_appointment.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-mergeDebugResources-53:/layout/item_appointment.xml",
|
"merged": "com.example.cuida.app-mergeDebugResources-53:/layout/fragment_sns24.xml",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/layout/item_appointment.xml"
|
"source": "com.example.cuida.app-main-56:/layout/fragment_sns24.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-mergeDebugResources-53:/layout/activity_register.xml",
|
"merged": "com.example.cuida.app-mergeDebugResources-53:/layout/fragment_profile.xml",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/layout/activity_register.xml"
|
"source": "com.example.cuida.app-main-56:/layout/fragment_profile.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-mergeDebugResources-53:/layout/activity_main.xml",
|
"merged": "com.example.cuida.app-mergeDebugResources-53:/layout/activity_main.xml",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/layout/activity_main.xml"
|
"source": "com.example.cuida.app-main-56:/layout/activity_main.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-mergeDebugResources-53:/layout/activity_reset_password.xml",
|
"merged": "com.example.cuida.app-mergeDebugResources-53:/layout/dialog_add_medication.xml",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/layout/activity_reset_password.xml"
|
"source": "com.example.cuida.app-main-56:/layout/dialog_add_medication.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-mergeDebugResources-53:/layout/dialog_edit_profile.xml",
|
"merged": "com.example.cuida.app-mergeDebugResources-53:/layout/fragment_home.xml",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/layout/dialog_edit_profile.xml"
|
"source": "com.example.cuida.app-main-56:/layout/fragment_home.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-mergeDebugResources-53:/layout/item_time_slot.xml",
|
"merged": "com.example.cuida.app-mergeDebugResources-53:/layout/item_appointment.xml",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/layout/item_time_slot.xml"
|
"source": "com.example.cuida.app-main-56:/layout/item_appointment.xml"
|
||||||
},
|
|
||||||
{
|
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-mergeDebugResources-53:/layout/fragment_home.xml",
|
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/layout/fragment_home.xml"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-mergeDebugResources-53:/layout/dialog_add_medication.xml",
|
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/layout/dialog_add_medication.xml"
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -1,130 +1,130 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-debug-54:/layout_fragment_sns24.xml.flat",
|
"merged": "com.example.cuida.app-debug-54:/xml_data_extraction_rules.xml.flat",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/layout/fragment_sns24.xml"
|
"source": "com.example.cuida.app-main-56:/xml/data_extraction_rules.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-debug-54:/layout_fragment_schedule_appointment.xml.flat",
|
"merged": "com.example.cuida.app-debug-54:/drawable_ic_logo.png.flat",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/layout/fragment_schedule_appointment.xml"
|
"source": "com.example.cuida.app-main-56:/drawable/ic_logo.png"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-debug-54:/layout_item_time_slot.xml.flat",
|
"merged": "com.example.cuida.app-debug-54:/layout_fragment_appointments.xml.flat",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/layout/item_time_slot.xml"
|
"source": "com.example.cuida.app-main-56:/layout/fragment_appointments.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-debug-54:/drawable_ic_placeholder.xml.flat",
|
"merged": "com.example.cuida.app-debug-54:/layout_fragment_medication.xml.flat",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/drawable/ic_placeholder.xml"
|
"source": "com.example.cuida.app-main-56:/layout/fragment_medication.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-debug-54:/drawable_btn_outline_primary.xml.flat",
|
"merged": "com.example.cuida.app-debug-54:/layout_activity_reset_password.xml.flat",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/drawable/btn_outline_primary.xml"
|
"source": "com.example.cuida.app-main-56:/layout/activity_reset_password.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-debug-54:/layout_dialog_edit_profile.xml.flat",
|
"merged": "com.example.cuida.app-debug-54:/layout_fragment_profile.xml.flat",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/layout/dialog_edit_profile.xml"
|
"source": "com.example.cuida.app-main-56:/layout/fragment_profile.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-debug-54:/drawable_ic_launcher_round.xml.flat",
|
"merged": "com.example.cuida.app-debug-54:/xml_file_paths.xml.flat",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/drawable/ic_launcher_round.xml"
|
"source": "com.example.cuida.app-main-56:/xml/file_paths.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-debug-54:/layout_activity_reset_password.xml.flat",
|
"merged": "com.example.cuida.app-debug-54:/layout_activity_login.xml.flat",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/layout/activity_reset_password.xml"
|
"source": "com.example.cuida.app-main-56:/layout/activity_login.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-debug-54:/layout_item_medication.xml.flat",
|
"merged": "com.example.cuida.app-debug-54:/layout_dialog_add_medication.xml.flat",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/layout/item_medication.xml"
|
"source": "com.example.cuida.app-main-56:/layout/dialog_add_medication.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-debug-54:/drawable_ic_launcher_final.xml.flat",
|
"merged": "com.example.cuida.app-debug-54:/layout_item_medication.xml.flat",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/drawable/ic_launcher_final.xml"
|
"source": "com.example.cuida.app-main-56:/layout/item_medication.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-debug-54:/layout_fragment_home.xml.flat",
|
"merged": "com.example.cuida.app-debug-54:/drawable_btn_outline_error.xml.flat",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/layout/fragment_home.xml"
|
"source": "com.example.cuida.app-main-56:/drawable/btn_outline_error.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-debug-54:/drawable_ic_launcher.xml.flat",
|
"merged": "com.example.cuida.app-debug-54:/xml_backup_rules.xml.flat",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/drawable/ic_launcher.xml"
|
"source": "com.example.cuida.app-main-56:/xml/backup_rules.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-debug-54:/drawable-v26_ic_launcher_final.xml.flat",
|
"merged": "com.example.cuida.app-debug-54:/drawable_ic_launcher_final.xml.flat",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/drawable-v26/ic_launcher_final.xml"
|
"source": "com.example.cuida.app-main-56:/drawable/ic_launcher_final.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-debug-54:/layout_item_comprimido_search.xml.flat",
|
"merged": "com.example.cuida.app-debug-54:/layout_item_appointment.xml.flat",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/layout/item_comprimido_search.xml"
|
"source": "com.example.cuida.app-main-56:/layout/item_appointment.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-debug-54:/drawable_ic_logo_scaled.xml.flat",
|
"merged": "com.example.cuida.app-debug-54:/menu_bottom_nav_menu.xml.flat",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/drawable/ic_logo_scaled.xml"
|
"source": "com.example.cuida.app-main-56:/menu/bottom_nav_menu.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-debug-54:/xml_data_extraction_rules.xml.flat",
|
"merged": "com.example.cuida.app-debug-54:/layout_fragment_sns24.xml.flat",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/xml/data_extraction_rules.xml"
|
"source": "com.example.cuida.app-main-56:/layout/fragment_sns24.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-debug-54:/drawable_btn_outline_error.xml.flat",
|
"merged": "com.example.cuida.app-debug-54:/drawable_btn_outline_primary.xml.flat",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/drawable/btn_outline_error.xml"
|
"source": "com.example.cuida.app-main-56:/drawable/btn_outline_primary.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-debug-54:/xml_backup_rules.xml.flat",
|
"merged": "com.example.cuida.app-debug-54:/drawable_ic_launcher_round.xml.flat",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/xml/backup_rules.xml"
|
"source": "com.example.cuida.app-main-56:/drawable/ic_launcher_round.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-debug-54:/layout_activity_register.xml.flat",
|
"merged": "com.example.cuida.app-debug-54:/layout_item_time_slot.xml.flat",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/layout/activity_register.xml"
|
"source": "com.example.cuida.app-main-56:/layout/item_time_slot.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-debug-54:/layout_activity_main.xml.flat",
|
"merged": "com.example.cuida.app-debug-54:/layout_activity_register.xml.flat",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/layout/activity_main.xml"
|
"source": "com.example.cuida.app-main-56:/layout/activity_register.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-debug-54:/layout_fragment_medication.xml.flat",
|
"merged": "com.example.cuida.app-debug-54:/layout_activity_forgot_password.xml.flat",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/layout/fragment_medication.xml"
|
"source": "com.example.cuida.app-main-56:/layout/activity_forgot_password.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-debug-54:/drawable_ic_logo.png.flat",
|
"merged": "com.example.cuida.app-debug-54:/drawable_ic_logo_scaled.xml.flat",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/drawable/ic_logo.png"
|
"source": "com.example.cuida.app-main-56:/drawable/ic_logo_scaled.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-debug-54:/layout_activity_login.xml.flat",
|
"merged": "com.example.cuida.app-debug-54:/drawable-v26_ic_launcher_final.xml.flat",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/layout/activity_login.xml"
|
"source": "com.example.cuida.app-main-56:/drawable-v26/ic_launcher_final.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-debug-54:/layout_activity_forgot_password.xml.flat",
|
"merged": "com.example.cuida.app-debug-54:/drawable_ic_launcher.xml.flat",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/layout/activity_forgot_password.xml"
|
"source": "com.example.cuida.app-main-56:/drawable/ic_launcher.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-debug-54:/layout_dialog_add_medication.xml.flat",
|
"merged": "com.example.cuida.app-debug-54:/layout_activity_main.xml.flat",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/layout/dialog_add_medication.xml"
|
"source": "com.example.cuida.app-main-56:/layout/activity_main.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-debug-54:/layout_item_appointment.xml.flat",
|
"merged": "com.example.cuida.app-debug-54:/drawable_ic_placeholder.xml.flat",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/layout/item_appointment.xml"
|
"source": "com.example.cuida.app-main-56:/drawable/ic_placeholder.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-debug-54:/menu_bottom_nav_menu.xml.flat",
|
"merged": "com.example.cuida.app-debug-54:/layout_fragment_schedule_appointment.xml.flat",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/menu/bottom_nav_menu.xml"
|
"source": "com.example.cuida.app-main-56:/layout/fragment_schedule_appointment.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-debug-54:/layout_dialog_change_password.xml.flat",
|
"merged": "com.example.cuida.app-debug-54:/drawable_bg_search_results.xml.flat",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/layout/dialog_change_password.xml"
|
"source": "com.example.cuida.app-main-56:/drawable/bg_search_results.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-debug-54:/layout_fragment_profile.xml.flat",
|
"merged": "com.example.cuida.app-debug-54:/layout_fragment_home.xml.flat",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/layout/fragment_profile.xml"
|
"source": "com.example.cuida.app-main-56:/layout/fragment_home.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-debug-54:/drawable_bg_search_results.xml.flat",
|
"merged": "com.example.cuida.app-debug-54:/layout_dialog_edit_profile.xml.flat",
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/drawable/bg_search_results.xml"
|
"source": "com.example.cuida.app-main-56:/layout/dialog_edit_profile.xml"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"merged": "com.example.cuida.app-debug-54:/layout_dialog_change_password.xml.flat",
|
||||||
|
"source": "com.example.cuida.app-main-56:/layout/dialog_change_password.xml"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"merged": "com.example.cuida.app-debug-54:/layout_item_comprimido_search.xml.flat",
|
"merged": "com.example.cuida.app-debug-54:/layout_item_comprimido_search.xml.flat",
|
||||||
"source": "com.example.cuida.app-main-56:/layout/item_comprimido_search.xml"
|
"source": "com.example.cuida.app-main-56:/layout/item_comprimido_search.xml"
|
||||||
},
|
|
||||||
{
|
|
||||||
"merged": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-debug-54:/layout_fragment_appointments.xml.flat",
|
|
||||||
"source": "/Users/230405/.gradle/daemon/9.3.1/com.example.cuida.app-main-56:/layout/fragment_appointments.xml"
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
||||||
<uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM" />
|
<uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM" />
|
||||||
<uses-permission android:name="android.permission.USE_EXACT_ALARM" />
|
<uses-permission android:name="android.permission.USE_EXACT_ALARM" />
|
||||||
<uses-permission android:name="android.permission.USE_BIOMETRIC" /> <!-- suppress DeprecatedClassUsageInspection -->
|
<uses-permission android:name="android.permission.USE_BIOMETRIC" />
|
||||||
<uses-permission android:name="android.permission.USE_FINGERPRINT" />
|
<uses-permission android:name="android.permission.USE_FINGERPRINT" />
|
||||||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||||||
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
|
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
|
||||||
@@ -28,6 +28,7 @@
|
|||||||
<uses-permission android:name="com.example.cuida.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION" />
|
<uses-permission android:name="com.example.cuida.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION" />
|
||||||
|
|
||||||
<application
|
<application
|
||||||
|
android:name="com.example.cuida.CuidaApplication"
|
||||||
android:allowBackup="true"
|
android:allowBackup="true"
|
||||||
android:appComponentFactory="androidx.core.app.CoreComponentFactory"
|
android:appComponentFactory="androidx.core.app.CoreComponentFactory"
|
||||||
android:dataExtractionRules="@xml/data_extraction_rules"
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
||||||
@@ -83,6 +84,16 @@
|
|||||||
android:name="com.example.cuida.services.AlarmReceiver"
|
android:name="com.example.cuida.services.AlarmReceiver"
|
||||||
android:exported="false" />
|
android:exported="false" />
|
||||||
|
|
||||||
|
<provider
|
||||||
|
android:name="androidx.core.content.FileProvider"
|
||||||
|
android:authorities="com.example.cuida.fileprovider"
|
||||||
|
android:exported="false"
|
||||||
|
android:grantUriPermissions="true" >
|
||||||
|
<meta-data
|
||||||
|
android:name="android.support.FILE_PATHS"
|
||||||
|
android:resource="@xml/file_paths" />
|
||||||
|
</provider>
|
||||||
|
|
||||||
<service
|
<service
|
||||||
android:name="androidx.credentials.playservices.CredentialProviderMetadataHolder"
|
android:name="androidx.credentials.playservices.CredentialProviderMetadataHolder"
|
||||||
android:enabled="true"
|
android:enabled="true"
|
||||||
|
|||||||
@@ -86,7 +86,18 @@
|
|||||||
android:text="@string/login_button"
|
android:text="@string/login_button"
|
||||||
android:textSize="16sp"
|
android:textSize="16sp"
|
||||||
android:textStyle="bold"
|
android:textStyle="bold"
|
||||||
android:layout_marginBottom="16dp"/>
|
android:layout_marginBottom="8dp"/>
|
||||||
|
|
||||||
|
<com.google.android.material.button.MaterialButton
|
||||||
|
android:id="@+id/biometric_button"
|
||||||
|
style="@style/Widget.MaterialComponents.Button.TextButton"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="Login com Biometria"
|
||||||
|
android:icon="@android:drawable/ic_dialog_info"
|
||||||
|
android:layout_marginBottom="16dp"
|
||||||
|
android:visibility="gone"/>
|
||||||
|
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/forgot_password_link"
|
android:id="@+id/forgot_password_link"
|
||||||
|
|||||||
@@ -5,66 +5,71 @@
|
|||||||
android:orientation="vertical"
|
android:orientation="vertical"
|
||||||
android:padding="24dp">
|
android:padding="24dp">
|
||||||
|
|
||||||
<FrameLayout
|
<com.google.android.material.textfield.TextInputLayout
|
||||||
android:layout_width="match_parent"
|
android:id="@+id/layout_med_name"
|
||||||
android:layout_height="wrap_content">
|
|
||||||
|
|
||||||
<LinearLayout
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:orientation="vertical">
|
|
||||||
|
|
||||||
<com.google.android.material.textfield.TextInputLayout
|
|
||||||
android:id="@+id/layout_med_name"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
|
||||||
android:hint="Nome do Medicamento"
|
|
||||||
android:layout_marginBottom="8dp">
|
|
||||||
|
|
||||||
<com.google.android.material.textfield.TextInputEditText
|
|
||||||
android:id="@+id/edit_med_name"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:inputType="textCapWords" />
|
|
||||||
</com.google.android.material.textfield.TextInputLayout>
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:text="Horário"
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:textSize="14sp"
|
|
||||||
android:layout_marginBottom="4dp"/>
|
|
||||||
|
|
||||||
<!-- O resto do conteúdo do diálogo continua aqui em baixo -->
|
|
||||||
</LinearLayout>
|
|
||||||
|
|
||||||
<androidx.recyclerview.widget.RecyclerView
|
|
||||||
android:id="@+id/recycler_search_results"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="200dp"
|
|
||||||
android:layout_marginTop="60dp"
|
|
||||||
android:visibility="gone"
|
|
||||||
android:elevation="8dp"
|
|
||||||
android:background="@drawable/bg_search_results" />
|
|
||||||
</FrameLayout>
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:id="@+id/text_med_time"
|
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="08:00"
|
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
||||||
android:textSize="18sp"
|
android:hint="Nome do Medicamento"
|
||||||
android:padding="12dp"
|
android:layout_marginBottom="8dp">
|
||||||
android:background="#E0E0E0"
|
|
||||||
android:gravity="center"
|
<com.google.android.material.textfield.TextInputEditText
|
||||||
android:layout_marginBottom="16dp"/>
|
android:id="@+id/edit_med_name"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:inputType="textCapWords" />
|
||||||
|
</com.google.android.material.textfield.TextInputLayout>
|
||||||
|
|
||||||
|
<!-- Search Results RecyclerView -->
|
||||||
|
<androidx.recyclerview.widget.RecyclerView
|
||||||
|
android:id="@+id/recycler_search_results"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="-8dp"
|
||||||
|
android:layout_marginBottom="16dp"
|
||||||
|
android:visibility="gone"
|
||||||
|
android:background="#FFFFFF"
|
||||||
|
android:elevation="4dp" />
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:gravity="center_vertical"
|
||||||
|
android:layout_marginBottom="4dp">
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:text="Horários"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:textColor="@color/black"
|
||||||
|
android:textSize="14sp"/>
|
||||||
|
|
||||||
|
<com.google.android.material.button.MaterialButton
|
||||||
|
android:id="@+id/btn_add_time"
|
||||||
|
style="@style/Widget.MaterialComponents.Button.TextButton"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="Adicionar"
|
||||||
|
android:padding="0dp"
|
||||||
|
android:minWidth="0dp"
|
||||||
|
android:minHeight="0dp"/>
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
<com.google.android.material.chip.ChipGroup
|
||||||
|
android:id="@+id/chip_group_times"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginBottom="16dp"
|
||||||
|
android:padding="4dp"/>
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:text="Via de Administração"
|
android:text="Via de Administração"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:textSize="14sp"
|
android:textSize="14sp"
|
||||||
|
android:textColor="@color/black"
|
||||||
android:layout_marginBottom="4dp"/>
|
android:layout_marginBottom="4dp"/>
|
||||||
|
|
||||||
<RadioGroup
|
<RadioGroup
|
||||||
@@ -89,12 +94,13 @@
|
|||||||
android:id="@+id/radio_inhalatory"
|
android:id="@+id/radio_inhalatory"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="Via Inalatória (Pelo nariz/boca)" />
|
android:text="Via Inalatória (Pela nariz/boca)" />
|
||||||
</RadioGroup>
|
</RadioGroup>
|
||||||
|
|
||||||
<com.google.android.material.textfield.TextInputLayout
|
<com.google.android.material.textfield.TextInputLayout
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
|
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
||||||
android:hint="Notas (Opcional)"
|
android:hint="Notas (Opcional)"
|
||||||
android:layout_marginBottom="16dp">
|
android:layout_marginBottom="16dp">
|
||||||
|
|
||||||
|
|||||||
@@ -115,6 +115,17 @@
|
|||||||
android:layout_marginBottom="16dp"
|
android:layout_marginBottom="16dp"
|
||||||
android:backgroundTint="@color/secondary_color"/>
|
android:backgroundTint="@color/secondary_color"/>
|
||||||
|
|
||||||
|
<com.google.android.material.button.MaterialButton
|
||||||
|
android:id="@+id/button_export_report"
|
||||||
|
style="@style/Widget.MaterialComponents.Button.OutlinedButton"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="60dp"
|
||||||
|
android:text="Exportar Relatório Mensal"
|
||||||
|
android:layout_marginBottom="16dp"
|
||||||
|
app:strokeColor="@color/secondary_color"
|
||||||
|
android:textColor="@color/secondary_color"/>
|
||||||
|
|
||||||
|
|
||||||
<com.google.android.material.button.MaterialButton
|
<com.google.android.material.button.MaterialButton
|
||||||
android:id="@+id/button_logout"
|
android:id="@+id/button_logout"
|
||||||
style="@style/Widget.MaterialComponents.Button.OutlinedButton"
|
style="@style/Widget.MaterialComponents.Button.OutlinedButton"
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -3303,6 +3303,7 @@ id baseline
|
|||||||
id beginOnFirstDraw
|
id beginOnFirstDraw
|
||||||
id beginning
|
id beginning
|
||||||
id bestChoice
|
id bestChoice
|
||||||
|
id biometric_button
|
||||||
id blocking
|
id blocking
|
||||||
id bottom
|
id bottom
|
||||||
id bounce
|
id bounce
|
||||||
@@ -3314,6 +3315,7 @@ id browser_actions_menu_item_icon
|
|||||||
id browser_actions_menu_item_text
|
id browser_actions_menu_item_text
|
||||||
id browser_actions_menu_items
|
id browser_actions_menu_items
|
||||||
id browser_actions_menu_view
|
id browser_actions_menu_view
|
||||||
|
id btn_add_time
|
||||||
id btn_confirm_appointment
|
id btn_confirm_appointment
|
||||||
id btn_time_slot
|
id btn_time_slot
|
||||||
id buttonPanel
|
id buttonPanel
|
||||||
@@ -3325,6 +3327,7 @@ id button_cancel_password
|
|||||||
id button_change_password
|
id button_change_password
|
||||||
id button_change_photo
|
id button_change_photo
|
||||||
id button_edit_profile
|
id button_edit_profile
|
||||||
|
id button_export_report
|
||||||
id button_find_hospital
|
id button_find_hospital
|
||||||
id button_logout
|
id button_logout
|
||||||
id button_save
|
id button_save
|
||||||
@@ -3346,6 +3349,7 @@ id checkbox
|
|||||||
id checkbox_remember_me
|
id checkbox_remember_me
|
||||||
id checkbox_taken
|
id checkbox_taken
|
||||||
id checked
|
id checked
|
||||||
|
id chip_group_times
|
||||||
id chronometer
|
id chronometer
|
||||||
id circle_center
|
id circle_center
|
||||||
id clear_text
|
id clear_text
|
||||||
@@ -5555,4 +5559,5 @@ styleable ViewTransition android_id SharedValue SharedValueId clearsTag duration
|
|||||||
styleable include constraintSet
|
styleable include constraintSet
|
||||||
xml backup_rules
|
xml backup_rules
|
||||||
xml data_extraction_rules
|
xml data_extraction_rules
|
||||||
|
xml file_paths
|
||||||
xml image_share_filepaths
|
xml image_share_filepaths
|
||||||
|
|||||||
@@ -1,9 +1,20 @@
|
|||||||
-- Merging decision tree log ---
|
-- Merging decision tree log ---
|
||||||
|
provider#androidx.core.content.FileProvider
|
||||||
|
INJECTED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:64:9-72:20
|
||||||
|
android:grantUriPermissions
|
||||||
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:68:13-47
|
||||||
|
android:authorities
|
||||||
|
INJECTED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml
|
||||||
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:66:13-64
|
||||||
|
android:exported
|
||||||
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:67:13-37
|
||||||
|
android:name
|
||||||
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:65:13-62
|
||||||
manifest
|
manifest
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:2:1-63:12
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:2:1-76:12
|
||||||
INJECTED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:2:1-63:12
|
INJECTED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:2:1-76:12
|
||||||
INJECTED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:2:1-63:12
|
INJECTED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:2:1-76:12
|
||||||
INJECTED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:2:1-63:12
|
INJECTED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:2:1-76:12
|
||||||
MERGED from [androidx.databinding:viewbinding:9.1.1] /Users/230405/.gradle/caches/9.3.1/transforms/f20cb9c7f87e5f4c22eddf2604ade6d4/transformed/jetified-viewbinding-9.1.1/AndroidManifest.xml:2:1-7:12
|
MERGED from [androidx.databinding:viewbinding:9.1.1] /Users/230405/.gradle/caches/9.3.1/transforms/f20cb9c7f87e5f4c22eddf2604ade6d4/transformed/jetified-viewbinding-9.1.1/AndroidManifest.xml:2:1-7:12
|
||||||
MERGED from [androidx.navigation:navigation-common:2.7.7] /Users/230405/.gradle/caches/9.3.1/transforms/a3e6a128ddc1c8ac0a4d85f781a00a90/transformed/navigation-common-2.7.7/AndroidManifest.xml:17:1-22:12
|
MERGED from [androidx.navigation:navigation-common:2.7.7] /Users/230405/.gradle/caches/9.3.1/transforms/a3e6a128ddc1c8ac0a4d85f781a00a90/transformed/navigation-common-2.7.7/AndroidManifest.xml:17:1-22:12
|
||||||
MERGED from [androidx.navigation:navigation-runtime:2.7.7] /Users/230405/.gradle/caches/9.3.1/transforms/9972b7cb809d9e9cc2d163994af57568/transformed/navigation-runtime-2.7.7/AndroidManifest.xml:17:1-22:12
|
MERGED from [androidx.navigation:navigation-runtime:2.7.7] /Users/230405/.gradle/caches/9.3.1/transforms/9972b7cb809d9e9cc2d163994af57568/transformed/navigation-runtime-2.7.7/AndroidManifest.xml:17:1-22:12
|
||||||
@@ -11,11 +22,11 @@ MERGED from [androidx.navigation:navigation-fragment:2.7.7] /Users/230405/.gradl
|
|||||||
MERGED from [androidx.navigation:navigation-ui:2.7.7] /Users/230405/.gradle/caches/9.3.1/transforms/4697338e1d5105cbc813a661eb994e73/transformed/navigation-ui-2.7.7/AndroidManifest.xml:17:1-22:12
|
MERGED from [androidx.navigation:navigation-ui:2.7.7] /Users/230405/.gradle/caches/9.3.1/transforms/4697338e1d5105cbc813a661eb994e73/transformed/navigation-ui-2.7.7/AndroidManifest.xml:17:1-22:12
|
||||||
MERGED from [com.google.android.material:material:1.11.0] /Users/230405/.gradle/caches/9.3.1/transforms/71354a6605486c73b97ab596a8b9067d/transformed/material-1.11.0/AndroidManifest.xml:17:1-24:12
|
MERGED from [com.google.android.material:material:1.11.0] /Users/230405/.gradle/caches/9.3.1/transforms/71354a6605486c73b97ab596a8b9067d/transformed/material-1.11.0/AndroidManifest.xml:17:1-24:12
|
||||||
MERGED from [androidx.constraintlayout:constraintlayout:2.1.4] /Users/230405/.gradle/caches/9.3.1/transforms/8460deb06fa2ed67bcb5c8f352dadd34/transformed/constraintlayout-2.1.4/AndroidManifest.xml:2:1-11:12
|
MERGED from [androidx.constraintlayout:constraintlayout:2.1.4] /Users/230405/.gradle/caches/9.3.1/transforms/8460deb06fa2ed67bcb5c8f352dadd34/transformed/constraintlayout-2.1.4/AndroidManifest.xml:2:1-11:12
|
||||||
MERGED from [androidx.appcompat:appcompat-resources:1.6.1] /Users/230405/.gradle/caches/9.3.1/transforms/bc5f68d1f1f62023bd394e738f5a8b6b/transformed/jetified-appcompat-resources-1.6.1/AndroidManifest.xml:17:1-22:12
|
|
||||||
MERGED from [androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:17:1-52:12
|
MERGED from [androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:17:1-52:12
|
||||||
MERGED from [com.google.android.libraries.identity.googleid:googleid:1.1.1] /Users/230405/.gradle/caches/9.3.1/transforms/c55338c79406263c3387b7a598488e23/transformed/jetified-googleid-1.1.1/AndroidManifest.xml:2:1-7:12
|
MERGED from [com.google.android.libraries.identity.googleid:googleid:1.1.1] /Users/230405/.gradle/caches/9.3.1/transforms/c55338c79406263c3387b7a598488e23/transformed/jetified-googleid-1.1.1/AndroidManifest.xml:2:1-7:12
|
||||||
MERGED from [androidx.credentials:credentials:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/bcfa9298ffe2ab69cb25e66f0259f667/transformed/jetified-credentials-1.5.0/AndroidManifest.xml:2:1-7:12
|
MERGED from [androidx.credentials:credentials:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/bcfa9298ffe2ab69cb25e66f0259f667/transformed/jetified-credentials-1.5.0/AndroidManifest.xml:2:1-7:12
|
||||||
MERGED from [androidx.biometric:biometric:1.1.0] /Users/230405/.gradle/caches/9.3.1/transforms/fe09619e3ebb1d293cf7eb0cf257a687/transformed/biometric-1.1.0/AndroidManifest.xml:17:1-29:12
|
MERGED from [androidx.biometric:biometric:1.1.0] /Users/230405/.gradle/caches/9.3.1/transforms/fe09619e3ebb1d293cf7eb0cf257a687/transformed/biometric-1.1.0/AndroidManifest.xml:17:1-29:12
|
||||||
|
MERGED from [androidx.appcompat:appcompat-resources:1.6.1] /Users/230405/.gradle/caches/9.3.1/transforms/bc5f68d1f1f62023bd394e738f5a8b6b/transformed/jetified-appcompat-resources-1.6.1/AndroidManifest.xml:17:1-22:12
|
||||||
MERGED from [androidx.appcompat:appcompat:1.6.1] /Users/230405/.gradle/caches/9.3.1/transforms/e8a3d9f4bd5a90aa80f709a37eeec2cc/transformed/appcompat-1.6.1/AndroidManifest.xml:17:1-22:12
|
MERGED from [androidx.appcompat:appcompat:1.6.1] /Users/230405/.gradle/caches/9.3.1/transforms/e8a3d9f4bd5a90aa80f709a37eeec2cc/transformed/appcompat-1.6.1/AndroidManifest.xml:17:1-22:12
|
||||||
MERGED from [androidx.viewpager2:viewpager2:1.0.0] /Users/230405/.gradle/caches/9.3.1/transforms/03c871a01100f1f9352d7fdc80f8fa11/transformed/jetified-viewpager2-1.0.0/AndroidManifest.xml:17:1-24:12
|
MERGED from [androidx.viewpager2:viewpager2:1.0.0] /Users/230405/.gradle/caches/9.3.1/transforms/03c871a01100f1f9352d7fdc80f8fa11/transformed/jetified-viewpager2-1.0.0/AndroidManifest.xml:17:1-24:12
|
||||||
MERGED from [androidx.fragment:fragment-ktx:1.6.2] /Users/230405/.gradle/caches/9.3.1/transforms/a75e330cf4acc7cdee080ae13d67584b/transformed/jetified-fragment-ktx-1.6.2/AndroidManifest.xml:17:1-22:12
|
MERGED from [androidx.fragment:fragment-ktx:1.6.2] /Users/230405/.gradle/caches/9.3.1/transforms/a75e330cf4acc7cdee080ae13d67584b/transformed/jetified-fragment-ktx-1.6.2/AndroidManifest.xml:17:1-22:12
|
||||||
@@ -45,8 +56,8 @@ MERGED from [androidx.activity:activity-ktx:1.8.0] /Users/230405/.gradle/caches/
|
|||||||
MERGED from [androidx.savedstate:savedstate-ktx:1.2.1] /Users/230405/.gradle/caches/9.3.1/transforms/b5731106b76900dd3c07427c79c9fc20/transformed/jetified-savedstate-ktx-1.2.1/AndroidManifest.xml:17:1-22:12
|
MERGED from [androidx.savedstate:savedstate-ktx:1.2.1] /Users/230405/.gradle/caches/9.3.1/transforms/b5731106b76900dd3c07427c79c9fc20/transformed/jetified-savedstate-ktx-1.2.1/AndroidManifest.xml:17:1-22:12
|
||||||
MERGED from [androidx.savedstate:savedstate:1.2.1] /Users/230405/.gradle/caches/9.3.1/transforms/bbcb35c84de3e92bd140a23cebf3fa2b/transformed/jetified-savedstate-1.2.1/AndroidManifest.xml:17:1-22:12
|
MERGED from [androidx.savedstate:savedstate:1.2.1] /Users/230405/.gradle/caches/9.3.1/transforms/bbcb35c84de3e92bd140a23cebf3fa2b/transformed/jetified-savedstate-1.2.1/AndroidManifest.xml:17:1-22:12
|
||||||
MERGED from [androidx.lifecycle:lifecycle-runtime-ktx:2.7.0] /Users/230405/.gradle/caches/9.3.1/transforms/d2e46ecd16fd9fcc28d5c34bf729fc53/transformed/jetified-lifecycle-runtime-ktx-2.7.0/AndroidManifest.xml:17:1-22:12
|
MERGED from [androidx.lifecycle:lifecycle-runtime-ktx:2.7.0] /Users/230405/.gradle/caches/9.3.1/transforms/d2e46ecd16fd9fcc28d5c34bf729fc53/transformed/jetified-lifecycle-runtime-ktx-2.7.0/AndroidManifest.xml:17:1-22:12
|
||||||
MERGED from [androidx.lifecycle:lifecycle-livedata-core:2.7.0] /Users/230405/.gradle/caches/9.3.1/transforms/2585b4941ba07408e055a581eeeadad0/transformed/lifecycle-livedata-core-2.7.0/AndroidManifest.xml:17:1-22:12
|
|
||||||
MERGED from [androidx.lifecycle:lifecycle-process:2.7.0] /Users/230405/.gradle/caches/9.3.1/transforms/fc798f85efb5ef77469cfc8b7d3e99d9/transformed/jetified-lifecycle-process-2.7.0/AndroidManifest.xml:17:1-35:12
|
MERGED from [androidx.lifecycle:lifecycle-process:2.7.0] /Users/230405/.gradle/caches/9.3.1/transforms/fc798f85efb5ef77469cfc8b7d3e99d9/transformed/jetified-lifecycle-process-2.7.0/AndroidManifest.xml:17:1-35:12
|
||||||
|
MERGED from [androidx.lifecycle:lifecycle-livedata-core:2.7.0] /Users/230405/.gradle/caches/9.3.1/transforms/2585b4941ba07408e055a581eeeadad0/transformed/lifecycle-livedata-core-2.7.0/AndroidManifest.xml:17:1-22:12
|
||||||
MERGED from [androidx.lifecycle:lifecycle-livedata-core-ktx:2.7.0] /Users/230405/.gradle/caches/9.3.1/transforms/59c8172751955f93adc60cf0bd9f0d4a/transformed/jetified-lifecycle-livedata-core-ktx-2.7.0/AndroidManifest.xml:2:1-7:12
|
MERGED from [androidx.lifecycle:lifecycle-livedata-core-ktx:2.7.0] /Users/230405/.gradle/caches/9.3.1/transforms/59c8172751955f93adc60cf0bd9f0d4a/transformed/jetified-lifecycle-livedata-core-ktx-2.7.0/AndroidManifest.xml:2:1-7:12
|
||||||
MERGED from [androidx.dynamicanimation:dynamicanimation:1.0.0] /Users/230405/.gradle/caches/9.3.1/transforms/9e735e7a09ef4a1798213671aa2e3353/transformed/dynamicanimation-1.0.0/AndroidManifest.xml:17:1-22:12
|
MERGED from [androidx.dynamicanimation:dynamicanimation:1.0.0] /Users/230405/.gradle/caches/9.3.1/transforms/9e735e7a09ef4a1798213671aa2e3353/transformed/dynamicanimation-1.0.0/AndroidManifest.xml:17:1-22:12
|
||||||
MERGED from [androidx.legacy:legacy-support-core-utils:1.0.0] /Users/230405/.gradle/caches/9.3.1/transforms/3020a755c3c3f68d46210be2f6c3d4c6/transformed/legacy-support-core-utils-1.0.0/AndroidManifest.xml:17:1-22:12
|
MERGED from [androidx.legacy:legacy-support-core-utils:1.0.0] /Users/230405/.gradle/caches/9.3.1/transforms/3020a755c3c3f68d46210be2f6c3d4c6/transformed/legacy-support-core-utils-1.0.0/AndroidManifest.xml:17:1-22:12
|
||||||
@@ -135,9 +146,21 @@ uses-permission#android.permission.USE_EXACT_ALARM
|
|||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:12:5-74
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:12:5-74
|
||||||
android:name
|
android:name
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:12:22-71
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:12:22-71
|
||||||
|
uses-permission#android.permission.USE_BIOMETRIC
|
||||||
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:13:5-72
|
||||||
|
MERGED from [androidx.biometric:biometric:1.1.0] /Users/230405/.gradle/caches/9.3.1/transforms/fe09619e3ebb1d293cf7eb0cf257a687/transformed/biometric-1.1.0/AndroidManifest.xml:24:5-72
|
||||||
|
MERGED from [androidx.biometric:biometric:1.1.0] /Users/230405/.gradle/caches/9.3.1/transforms/fe09619e3ebb1d293cf7eb0cf257a687/transformed/biometric-1.1.0/AndroidManifest.xml:24:5-72
|
||||||
|
android:name
|
||||||
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:13:22-69
|
||||||
|
uses-permission#android.permission.USE_FINGERPRINT
|
||||||
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:14:5-74
|
||||||
|
MERGED from [androidx.biometric:biometric:1.1.0] /Users/230405/.gradle/caches/9.3.1/transforms/fe09619e3ebb1d293cf7eb0cf257a687/transformed/biometric-1.1.0/AndroidManifest.xml:27:5-74
|
||||||
|
MERGED from [androidx.biometric:biometric:1.1.0] /Users/230405/.gradle/caches/9.3.1/transforms/fe09619e3ebb1d293cf7eb0cf257a687/transformed/biometric-1.1.0/AndroidManifest.xml:27:5-74
|
||||||
|
android:name
|
||||||
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:14:22-71
|
||||||
application
|
application
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:14:5-61:19
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:16:5-74:19
|
||||||
INJECTED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:14:5-61:19
|
INJECTED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:16:5-74:19
|
||||||
MERGED from [com.google.android.material:material:1.11.0] /Users/230405/.gradle/caches/9.3.1/transforms/71354a6605486c73b97ab596a8b9067d/transformed/material-1.11.0/AndroidManifest.xml:22:5-20
|
MERGED from [com.google.android.material:material:1.11.0] /Users/230405/.gradle/caches/9.3.1/transforms/71354a6605486c73b97ab596a8b9067d/transformed/material-1.11.0/AndroidManifest.xml:22:5-20
|
||||||
MERGED from [com.google.android.material:material:1.11.0] /Users/230405/.gradle/caches/9.3.1/transforms/71354a6605486c73b97ab596a8b9067d/transformed/material-1.11.0/AndroidManifest.xml:22:5-20
|
MERGED from [com.google.android.material:material:1.11.0] /Users/230405/.gradle/caches/9.3.1/transforms/71354a6605486c73b97ab596a8b9067d/transformed/material-1.11.0/AndroidManifest.xml:22:5-20
|
||||||
MERGED from [androidx.constraintlayout:constraintlayout:2.1.4] /Users/230405/.gradle/caches/9.3.1/transforms/8460deb06fa2ed67bcb5c8f352dadd34/transformed/constraintlayout-2.1.4/AndroidManifest.xml:9:5-20
|
MERGED from [androidx.constraintlayout:constraintlayout:2.1.4] /Users/230405/.gradle/caches/9.3.1/transforms/8460deb06fa2ed67bcb5c8f352dadd34/transformed/constraintlayout-2.1.4/AndroidManifest.xml:9:5-20
|
||||||
@@ -193,87 +216,95 @@ MERGED from [androidx.versionedparcelable:versionedparcelable:1.1.1] /Users/2304
|
|||||||
android:appComponentFactory
|
android:appComponentFactory
|
||||||
ADDED from [androidx.core:core:1.15.0] /Users/230405/.gradle/caches/9.3.1/transforms/1283ca8f3259235ee9c05354dbab6dad/transformed/core-1.15.0/AndroidManifest.xml:28:18-86
|
ADDED from [androidx.core:core:1.15.0] /Users/230405/.gradle/caches/9.3.1/transforms/1283ca8f3259235ee9c05354dbab6dad/transformed/core-1.15.0/AndroidManifest.xml:28:18-86
|
||||||
android:supportsRtl
|
android:supportsRtl
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:21:9-35
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:24:9-35
|
||||||
android:label
|
android:label
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:19:9-41
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:22:9-41
|
||||||
android:fullBackupContent
|
android:fullBackupContent
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:17:9-54
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:20:9-54
|
||||||
android:roundIcon
|
android:roundIcon
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:20:9-56
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:23:9-56
|
||||||
tools:targetApi
|
tools:targetApi
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:23:9-29
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:26:9-29
|
||||||
android:icon
|
android:icon
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:18:9-51
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:21:9-51
|
||||||
android:allowBackup
|
android:allowBackup
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:15:9-35
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:18:9-35
|
||||||
android:theme
|
android:theme
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:22:9-43
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:25:9-43
|
||||||
android:dataExtractionRules
|
android:dataExtractionRules
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:16:9-65
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:19:9-65
|
||||||
|
android:name
|
||||||
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:17:9-41
|
||||||
activity#com.example.cuida.MainActivity
|
activity#com.example.cuida.MainActivity
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:25:9-30:20
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:28:9-33:20
|
||||||
android:windowSoftInputMode
|
android:windowSoftInputMode
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:28:13-55
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:31:13-55
|
||||||
android:exported
|
android:exported
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:27:13-36
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:30:13-36
|
||||||
android:name
|
android:name
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:26:13-41
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:29:13-41
|
||||||
activity#com.example.cuida.ui.auth.LoginActivity
|
activity#com.example.cuida.ui.auth.LoginActivity
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:32:9-37:20
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:35:9-40:20
|
||||||
android:exported
|
android:exported
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:32:57-80
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:35:57-80
|
||||||
android:name
|
android:name
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:32:19-56
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:35:19-56
|
||||||
intent-filter#action:name:android.intent.action.MAIN+category:name:android.intent.category.LAUNCHER
|
intent-filter#action:name:android.intent.action.MAIN+category:name:android.intent.category.LAUNCHER
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:33:13-36:29
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:36:13-39:29
|
||||||
action#android.intent.action.MAIN
|
action#android.intent.action.MAIN
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:34:17-69
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:37:17-69
|
||||||
android:name
|
android:name
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:34:25-66
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:37:25-66
|
||||||
category#android.intent.category.LAUNCHER
|
category#android.intent.category.LAUNCHER
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:35:17-77
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:38:17-77
|
||||||
android:name
|
android:name
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:35:27-74
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:38:27-74
|
||||||
activity#com.example.cuida.ui.auth.RegisterActivity
|
activity#com.example.cuida.ui.auth.RegisterActivity
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:40:9-62
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:43:9-62
|
||||||
android:name
|
android:name
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:40:19-59
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:43:19-59
|
||||||
activity#com.example.cuida.ui.auth.ForgotPasswordActivity
|
activity#com.example.cuida.ui.auth.ForgotPasswordActivity
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:41:9-68
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:44:9-68
|
||||||
android:name
|
android:name
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:41:19-65
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:44:19-65
|
||||||
activity#com.example.cuida.ui.auth.ResetPasswordActivity
|
activity#com.example.cuida.ui.auth.ResetPasswordActivity
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:42:9-57:20
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:45:9-60:20
|
||||||
android:exported
|
android:exported
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:43:13-36
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:46:13-36
|
||||||
android:name
|
android:name
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:42:19-64
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:45:19-64
|
||||||
intent-filter#action:name:android.intent.action.VIEW+category:name:android.intent.category.BROWSABLE+category:name:android.intent.category.DEFAULT+data:host:papcuida.page.link+data:host:resetpassword+data:scheme:cuida+data:scheme:https
|
intent-filter#action:name:android.intent.action.VIEW+category:name:android.intent.category.BROWSABLE+category:name:android.intent.category.DEFAULT+data:host:papcuida.page.link+data:host:resetpassword+data:scheme:cuida+data:scheme:https
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:44:13-56:29
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:47:13-59:29
|
||||||
action#android.intent.action.VIEW
|
action#android.intent.action.VIEW
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:45:17-69
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:48:17-69
|
||||||
android:name
|
android:name
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:45:25-66
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:48:25-66
|
||||||
category#android.intent.category.DEFAULT
|
category#android.intent.category.DEFAULT
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:46:17-76
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:49:17-76
|
||||||
android:name
|
android:name
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:46:27-73
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:49:27-73
|
||||||
category#android.intent.category.BROWSABLE
|
category#android.intent.category.BROWSABLE
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:47:17-78
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:50:17-78
|
||||||
android:name
|
android:name
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:47:27-75
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:50:27-75
|
||||||
data
|
data
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:50:17-52:57
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:53:17-55:57
|
||||||
android:host
|
android:host
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:52:21-54
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:55:21-54
|
||||||
android:scheme
|
android:scheme
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:51:21-43
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:54:21-43
|
||||||
receiver#com.example.cuida.services.AlarmReceiver
|
receiver#com.example.cuida.services.AlarmReceiver
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:59:9-85
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:62:9-85
|
||||||
android:exported
|
android:exported
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:59:58-82
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:62:58-82
|
||||||
android:name
|
android:name
|
||||||
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:59:19-57
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:62:19-57
|
||||||
|
meta-data#android.support.FILE_PATHS
|
||||||
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:69:13-71:54
|
||||||
|
android:resource
|
||||||
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:71:17-51
|
||||||
|
android:name
|
||||||
|
ADDED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml:70:17-58
|
||||||
uses-sdk
|
uses-sdk
|
||||||
INJECTED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml reason: use-sdk injection requested
|
INJECTED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml reason: use-sdk injection requested
|
||||||
INJECTED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml
|
INJECTED from /Users/230405/Desktop/papcuida/app/src/main/AndroidManifest.xml
|
||||||
@@ -292,8 +323,6 @@ MERGED from [com.google.android.material:material:1.11.0] /Users/230405/.gradle/
|
|||||||
MERGED from [com.google.android.material:material:1.11.0] /Users/230405/.gradle/caches/9.3.1/transforms/71354a6605486c73b97ab596a8b9067d/transformed/material-1.11.0/AndroidManifest.xml:20:5-44
|
MERGED from [com.google.android.material:material:1.11.0] /Users/230405/.gradle/caches/9.3.1/transforms/71354a6605486c73b97ab596a8b9067d/transformed/material-1.11.0/AndroidManifest.xml:20:5-44
|
||||||
MERGED from [androidx.constraintlayout:constraintlayout:2.1.4] /Users/230405/.gradle/caches/9.3.1/transforms/8460deb06fa2ed67bcb5c8f352dadd34/transformed/constraintlayout-2.1.4/AndroidManifest.xml:5:5-7:41
|
MERGED from [androidx.constraintlayout:constraintlayout:2.1.4] /Users/230405/.gradle/caches/9.3.1/transforms/8460deb06fa2ed67bcb5c8f352dadd34/transformed/constraintlayout-2.1.4/AndroidManifest.xml:5:5-7:41
|
||||||
MERGED from [androidx.constraintlayout:constraintlayout:2.1.4] /Users/230405/.gradle/caches/9.3.1/transforms/8460deb06fa2ed67bcb5c8f352dadd34/transformed/constraintlayout-2.1.4/AndroidManifest.xml:5:5-7:41
|
MERGED from [androidx.constraintlayout:constraintlayout:2.1.4] /Users/230405/.gradle/caches/9.3.1/transforms/8460deb06fa2ed67bcb5c8f352dadd34/transformed/constraintlayout-2.1.4/AndroidManifest.xml:5:5-7:41
|
||||||
MERGED from [androidx.appcompat:appcompat-resources:1.6.1] /Users/230405/.gradle/caches/9.3.1/transforms/bc5f68d1f1f62023bd394e738f5a8b6b/transformed/jetified-appcompat-resources-1.6.1/AndroidManifest.xml:20:5-44
|
|
||||||
MERGED from [androidx.appcompat:appcompat-resources:1.6.1] /Users/230405/.gradle/caches/9.3.1/transforms/bc5f68d1f1f62023bd394e738f5a8b6b/transformed/jetified-appcompat-resources-1.6.1/AndroidManifest.xml:20:5-44
|
|
||||||
MERGED from [androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:21:5-44
|
MERGED from [androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:21:5-44
|
||||||
MERGED from [androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:21:5-44
|
MERGED from [androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:21:5-44
|
||||||
MERGED from [com.google.android.libraries.identity.googleid:googleid:1.1.1] /Users/230405/.gradle/caches/9.3.1/transforms/c55338c79406263c3387b7a598488e23/transformed/jetified-googleid-1.1.1/AndroidManifest.xml:5:5-44
|
MERGED from [com.google.android.libraries.identity.googleid:googleid:1.1.1] /Users/230405/.gradle/caches/9.3.1/transforms/c55338c79406263c3387b7a598488e23/transformed/jetified-googleid-1.1.1/AndroidManifest.xml:5:5-44
|
||||||
@@ -302,6 +331,8 @@ MERGED from [androidx.credentials:credentials:1.5.0] /Users/230405/.gradle/cache
|
|||||||
MERGED from [androidx.credentials:credentials:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/bcfa9298ffe2ab69cb25e66f0259f667/transformed/jetified-credentials-1.5.0/AndroidManifest.xml:5:5-44
|
MERGED from [androidx.credentials:credentials:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/bcfa9298ffe2ab69cb25e66f0259f667/transformed/jetified-credentials-1.5.0/AndroidManifest.xml:5:5-44
|
||||||
MERGED from [androidx.biometric:biometric:1.1.0] /Users/230405/.gradle/caches/9.3.1/transforms/fe09619e3ebb1d293cf7eb0cf257a687/transformed/biometric-1.1.0/AndroidManifest.xml:20:5-22:41
|
MERGED from [androidx.biometric:biometric:1.1.0] /Users/230405/.gradle/caches/9.3.1/transforms/fe09619e3ebb1d293cf7eb0cf257a687/transformed/biometric-1.1.0/AndroidManifest.xml:20:5-22:41
|
||||||
MERGED from [androidx.biometric:biometric:1.1.0] /Users/230405/.gradle/caches/9.3.1/transforms/fe09619e3ebb1d293cf7eb0cf257a687/transformed/biometric-1.1.0/AndroidManifest.xml:20:5-22:41
|
MERGED from [androidx.biometric:biometric:1.1.0] /Users/230405/.gradle/caches/9.3.1/transforms/fe09619e3ebb1d293cf7eb0cf257a687/transformed/biometric-1.1.0/AndroidManifest.xml:20:5-22:41
|
||||||
|
MERGED from [androidx.appcompat:appcompat-resources:1.6.1] /Users/230405/.gradle/caches/9.3.1/transforms/bc5f68d1f1f62023bd394e738f5a8b6b/transformed/jetified-appcompat-resources-1.6.1/AndroidManifest.xml:20:5-44
|
||||||
|
MERGED from [androidx.appcompat:appcompat-resources:1.6.1] /Users/230405/.gradle/caches/9.3.1/transforms/bc5f68d1f1f62023bd394e738f5a8b6b/transformed/jetified-appcompat-resources-1.6.1/AndroidManifest.xml:20:5-44
|
||||||
MERGED from [androidx.appcompat:appcompat:1.6.1] /Users/230405/.gradle/caches/9.3.1/transforms/e8a3d9f4bd5a90aa80f709a37eeec2cc/transformed/appcompat-1.6.1/AndroidManifest.xml:20:5-44
|
MERGED from [androidx.appcompat:appcompat:1.6.1] /Users/230405/.gradle/caches/9.3.1/transforms/e8a3d9f4bd5a90aa80f709a37eeec2cc/transformed/appcompat-1.6.1/AndroidManifest.xml:20:5-44
|
||||||
MERGED from [androidx.appcompat:appcompat:1.6.1] /Users/230405/.gradle/caches/9.3.1/transforms/e8a3d9f4bd5a90aa80f709a37eeec2cc/transformed/appcompat-1.6.1/AndroidManifest.xml:20:5-44
|
MERGED from [androidx.appcompat:appcompat:1.6.1] /Users/230405/.gradle/caches/9.3.1/transforms/e8a3d9f4bd5a90aa80f709a37eeec2cc/transformed/appcompat-1.6.1/AndroidManifest.xml:20:5-44
|
||||||
MERGED from [androidx.viewpager2:viewpager2:1.0.0] /Users/230405/.gradle/caches/9.3.1/transforms/03c871a01100f1f9352d7fdc80f8fa11/transformed/jetified-viewpager2-1.0.0/AndroidManifest.xml:20:5-22:41
|
MERGED from [androidx.viewpager2:viewpager2:1.0.0] /Users/230405/.gradle/caches/9.3.1/transforms/03c871a01100f1f9352d7fdc80f8fa11/transformed/jetified-viewpager2-1.0.0/AndroidManifest.xml:20:5-22:41
|
||||||
@@ -360,10 +391,10 @@ MERGED from [androidx.savedstate:savedstate:1.2.1] /Users/230405/.gradle/caches/
|
|||||||
MERGED from [androidx.savedstate:savedstate:1.2.1] /Users/230405/.gradle/caches/9.3.1/transforms/bbcb35c84de3e92bd140a23cebf3fa2b/transformed/jetified-savedstate-1.2.1/AndroidManifest.xml:20:5-44
|
MERGED from [androidx.savedstate:savedstate:1.2.1] /Users/230405/.gradle/caches/9.3.1/transforms/bbcb35c84de3e92bd140a23cebf3fa2b/transformed/jetified-savedstate-1.2.1/AndroidManifest.xml:20:5-44
|
||||||
MERGED from [androidx.lifecycle:lifecycle-runtime-ktx:2.7.0] /Users/230405/.gradle/caches/9.3.1/transforms/d2e46ecd16fd9fcc28d5c34bf729fc53/transformed/jetified-lifecycle-runtime-ktx-2.7.0/AndroidManifest.xml:20:5-44
|
MERGED from [androidx.lifecycle:lifecycle-runtime-ktx:2.7.0] /Users/230405/.gradle/caches/9.3.1/transforms/d2e46ecd16fd9fcc28d5c34bf729fc53/transformed/jetified-lifecycle-runtime-ktx-2.7.0/AndroidManifest.xml:20:5-44
|
||||||
MERGED from [androidx.lifecycle:lifecycle-runtime-ktx:2.7.0] /Users/230405/.gradle/caches/9.3.1/transforms/d2e46ecd16fd9fcc28d5c34bf729fc53/transformed/jetified-lifecycle-runtime-ktx-2.7.0/AndroidManifest.xml:20:5-44
|
MERGED from [androidx.lifecycle:lifecycle-runtime-ktx:2.7.0] /Users/230405/.gradle/caches/9.3.1/transforms/d2e46ecd16fd9fcc28d5c34bf729fc53/transformed/jetified-lifecycle-runtime-ktx-2.7.0/AndroidManifest.xml:20:5-44
|
||||||
MERGED from [androidx.lifecycle:lifecycle-livedata-core:2.7.0] /Users/230405/.gradle/caches/9.3.1/transforms/2585b4941ba07408e055a581eeeadad0/transformed/lifecycle-livedata-core-2.7.0/AndroidManifest.xml:20:5-44
|
|
||||||
MERGED from [androidx.lifecycle:lifecycle-livedata-core:2.7.0] /Users/230405/.gradle/caches/9.3.1/transforms/2585b4941ba07408e055a581eeeadad0/transformed/lifecycle-livedata-core-2.7.0/AndroidManifest.xml:20:5-44
|
|
||||||
MERGED from [androidx.lifecycle:lifecycle-process:2.7.0] /Users/230405/.gradle/caches/9.3.1/transforms/fc798f85efb5ef77469cfc8b7d3e99d9/transformed/jetified-lifecycle-process-2.7.0/AndroidManifest.xml:21:5-44
|
MERGED from [androidx.lifecycle:lifecycle-process:2.7.0] /Users/230405/.gradle/caches/9.3.1/transforms/fc798f85efb5ef77469cfc8b7d3e99d9/transformed/jetified-lifecycle-process-2.7.0/AndroidManifest.xml:21:5-44
|
||||||
MERGED from [androidx.lifecycle:lifecycle-process:2.7.0] /Users/230405/.gradle/caches/9.3.1/transforms/fc798f85efb5ef77469cfc8b7d3e99d9/transformed/jetified-lifecycle-process-2.7.0/AndroidManifest.xml:21:5-44
|
MERGED from [androidx.lifecycle:lifecycle-process:2.7.0] /Users/230405/.gradle/caches/9.3.1/transforms/fc798f85efb5ef77469cfc8b7d3e99d9/transformed/jetified-lifecycle-process-2.7.0/AndroidManifest.xml:21:5-44
|
||||||
|
MERGED from [androidx.lifecycle:lifecycle-livedata-core:2.7.0] /Users/230405/.gradle/caches/9.3.1/transforms/2585b4941ba07408e055a581eeeadad0/transformed/lifecycle-livedata-core-2.7.0/AndroidManifest.xml:20:5-44
|
||||||
|
MERGED from [androidx.lifecycle:lifecycle-livedata-core:2.7.0] /Users/230405/.gradle/caches/9.3.1/transforms/2585b4941ba07408e055a581eeeadad0/transformed/lifecycle-livedata-core-2.7.0/AndroidManifest.xml:20:5-44
|
||||||
MERGED from [androidx.lifecycle:lifecycle-livedata-core-ktx:2.7.0] /Users/230405/.gradle/caches/9.3.1/transforms/59c8172751955f93adc60cf0bd9f0d4a/transformed/jetified-lifecycle-livedata-core-ktx-2.7.0/AndroidManifest.xml:5:5-44
|
MERGED from [androidx.lifecycle:lifecycle-livedata-core-ktx:2.7.0] /Users/230405/.gradle/caches/9.3.1/transforms/59c8172751955f93adc60cf0bd9f0d4a/transformed/jetified-lifecycle-livedata-core-ktx-2.7.0/AndroidManifest.xml:5:5-44
|
||||||
MERGED from [androidx.lifecycle:lifecycle-livedata-core-ktx:2.7.0] /Users/230405/.gradle/caches/9.3.1/transforms/59c8172751955f93adc60cf0bd9f0d4a/transformed/jetified-lifecycle-livedata-core-ktx-2.7.0/AndroidManifest.xml:5:5-44
|
MERGED from [androidx.lifecycle:lifecycle-livedata-core-ktx:2.7.0] /Users/230405/.gradle/caches/9.3.1/transforms/59c8172751955f93adc60cf0bd9f0d4a/transformed/jetified-lifecycle-livedata-core-ktx-2.7.0/AndroidManifest.xml:5:5-44
|
||||||
MERGED from [androidx.dynamicanimation:dynamicanimation:1.0.0] /Users/230405/.gradle/caches/9.3.1/transforms/9e735e7a09ef4a1798213671aa2e3353/transformed/dynamicanimation-1.0.0/AndroidManifest.xml:20:5-44
|
MERGED from [androidx.dynamicanimation:dynamicanimation:1.0.0] /Users/230405/.gradle/caches/9.3.1/transforms/9e735e7a09ef4a1798213671aa2e3353/transformed/dynamicanimation-1.0.0/AndroidManifest.xml:20:5-44
|
||||||
@@ -498,14 +529,6 @@ ADDED from [androidx.credentials:credentials-play-services-auth:1.5.0] /Users/23
|
|||||||
ADDED from [androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:48:13-48
|
ADDED from [androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:48:13-48
|
||||||
android:name
|
android:name
|
||||||
ADDED from [androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:43:13-97
|
ADDED from [androidx.credentials:credentials-play-services-auth:1.5.0] /Users/230405/.gradle/caches/9.3.1/transforms/a42ab4e4f4e5b795b1801038219d3c31/transformed/jetified-credentials-play-services-auth-1.5.0/AndroidManifest.xml:43:13-97
|
||||||
uses-permission#android.permission.USE_BIOMETRIC
|
|
||||||
ADDED from [androidx.biometric:biometric:1.1.0] /Users/230405/.gradle/caches/9.3.1/transforms/fe09619e3ebb1d293cf7eb0cf257a687/transformed/biometric-1.1.0/AndroidManifest.xml:24:5-72
|
|
||||||
android:name
|
|
||||||
ADDED from [androidx.biometric:biometric:1.1.0] /Users/230405/.gradle/caches/9.3.1/transforms/fe09619e3ebb1d293cf7eb0cf257a687/transformed/biometric-1.1.0/AndroidManifest.xml:24:22-69
|
|
||||||
uses-permission#android.permission.USE_FINGERPRINT
|
|
||||||
ADDED from [androidx.biometric:biometric:1.1.0] /Users/230405/.gradle/caches/9.3.1/transforms/fe09619e3ebb1d293cf7eb0cf257a687/transformed/biometric-1.1.0/AndroidManifest.xml:27:5-74
|
|
||||||
android:name
|
|
||||||
ADDED from [androidx.biometric:biometric:1.1.0] /Users/230405/.gradle/caches/9.3.1/transforms/fe09619e3ebb1d293cf7eb0cf257a687/transformed/biometric-1.1.0/AndroidManifest.xml:27:22-71
|
|
||||||
activity#com.google.android.gms.auth.api.signin.internal.SignInHubActivity
|
activity#com.google.android.gms.auth.api.signin.internal.SignInHubActivity
|
||||||
ADDED from [com.google.android.gms:play-services-auth:21.1.1] /Users/230405/.gradle/caches/9.3.1/transforms/123778403539b24fd6a519395e8f6531/transformed/jetified-play-services-auth-21.1.1/AndroidManifest.xml:23:9-27:75
|
ADDED from [com.google.android.gms:play-services-auth:21.1.1] /Users/230405/.gradle/caches/9.3.1/transforms/123778403539b24fd6a519395e8f6531/transformed/jetified-play-services-auth-21.1.1/AndroidManifest.xml:23:9-27:75
|
||||||
android:excludeFromRecents
|
android:excludeFromRecents
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user