skip to Main Content

react-native-vactor-icon is causing error after update react native 0.72

What went wrong: A problem was found with the configuration of task ':app:lintVitalAnalyzeRelease' (type 'AndroidLintAnalysisTask'). Gradle detected a problem with the following location: 'C:React-ProjectsEnglish-MuniandroidappbuildintermediatesReactNativeVectorIcons'. Reason: Task ':app:lintVitalAnalyzeRelease' uses this output of task ':app:copyReactNativeVectorIconFonts' without declaring an explicit or implicit dependency.…

VIEW QUESTION

When using a nested RecyclerView to retrieve data from Firebase, how can I prevent duplicate data from being fetched?

public class OrderHistoryActivity extends AppCompatActivity { private FirebaseAuth firebaseAuth; private DatabaseReference databaseReference; private RecyclerView parentRecyclerView; private ArrayList<MyOrder> parentModelArrayList; private RecyclerView.Adapter ParentAdapter; private RecyclerView.LayoutManager parentLayoutManager; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_order_history); firebaseAuth = FirebaseAuth.getInstance(); FirebaseUser firebaseUser = firebaseAuth.getCurrentUser(); databaseReference…

VIEW QUESTION

set font for the hint TextInputLayout in Kotlin Android Studio

I work with Kotlin and android studio <com.google.android.material.textfield.TextInputLayout android:hint="شماره تلفن همراه" style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense" android:layout_marginStart="5dp" android:layout_marginEnd="5dp" android:layout_marginTop="5dp" app:shapeAppearanceOverlay="@style/button4" app:boxStrokeColor="#4E4A4A" app:boxStrokeWidth="1dp" app:prefixText="+98" android:layout_width="match_parent" android:layout_height="match_parent"> <com.google.android.material.textfield.TextInputEditText android:layout_width="match_parent" android:layout_height="wrap_content" android:inputType="phone" android:id="@+id/phoneNumber" android:ems="10" android:textSize="13sp" android:textColor="@color/black" android:textStyle="normal" /> </com.google.android.material.textfield.TextInputLayout> I want to set a font for the…

VIEW QUESTION

Firebase – How to do this on recyclerview in android using firestore

This is the result of RecyclerView: Firestore database schema: this is the code I am using. This only retrieve data like in a image db.collection("Expenses") .whereEqualTo("Email",email) .whereGreaterThanOrEqualTo("Date",MonthFirstDate) .whereLessThanOrEqualTo("Date",TodayDate) .orderBy("Date") .get() .addOnSuccessListener(new OnSuccessListener<QuerySnapshot>() { @Override public void onSuccess(QuerySnapshot queryDocumentSnapshots) { if…

VIEW QUESTION
Back To Top
Search