From c57598e5bd0e8e794709299736b3d6272fe85268 Mon Sep 17 00:00:00 2001 From: banditVedant Date: Tue, 17 Oct 2023 15:02:56 +0530 Subject: [PATCH] 1. Wallet Activity done 2. Wallet integration in OrderSummary done. --- .idea/misc.xml | 3 ++- app/src/main/AndroidManifest.xml | 15 ++---------- .../ui/NavigationDrawer_Dashboard.java | 23 +++++++------------ .../main/java/com/BugBazaar/ui/Signin.java | 1 - app/src/main/res/layout/order_item.xml | 18 +++++++++------ build.gradle | 4 ++-- 6 files changed, 25 insertions(+), 39 deletions(-) diff --git a/.idea/misc.xml b/.idea/misc.xml index 0a274d3..21f362b 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,10 +1,11 @@ + - + diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index ac0a8c1..110d9ae 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -89,16 +89,9 @@ android:name=".ui.NavigationDrawer_Dashboard" android:exported="true"> - - - - - + - + - - - - + android:textSize="22sp" + android:paddingBottom="10dp" + android:textColor="@color/black"/> + android:textSize="18sp" + android:textStyle="bold" + android:textColor="@color/black"/> + android:textStyle="italic|bold" + android:textColor="@color/main_theme"/> + android:textSize="19sp" + android:paddingBottom="10dp" + android:textColor="@color/black"/> diff --git a/build.gradle b/build.gradle index 1c9d93e..0397b21 100644 --- a/build.gradle +++ b/build.gradle @@ -10,6 +10,6 @@ buildscript { }// Top-level build file where you can add configuration options common to all sub-projects/modules. plugins { - id 'com.android.application' version '8.0.0' apply false - id 'com.android.library' version '8.0.0' apply false + id 'com.android.application' version '8.1.0' apply false + id 'com.android.library' version '8.1.0' apply false }