@@ -1 +1,2 @@ | |||
node_modules | |||
json |
@@ -1,103 +1,142 @@ | |||
import React, {Fragment} from 'react'; | |||
import { createStackNavigator } from '@react-navigation/stack'; | |||
import { NavigationContainer } from '@react-navigation/native'; | |||
import { fromRight } from 'react-navigation-transitions'; | |||
import Icon from 'react-native-vector-icons/Ionicons'; | |||
import * as colors from './src/assets/css/Colors'; | |||
import { createBottomTabNavigator } from '@react-navigation/bottom-tabs'; | |||
import React, { Fragment } from "react"; | |||
import { createStackNavigator } from "@react-navigation/stack"; | |||
import { NavigationContainer } from "@react-navigation/native"; | |||
import { fromRight } from "react-navigation-transitions"; | |||
import Icon from "react-native-vector-icons/Ionicons"; | |||
import * as colors from "./src/assets/css/Colors"; | |||
import { createBottomTabNavigator } from "@react-navigation/bottom-tabs"; | |||
import { | |||
View, | |||
StyleSheet, | |||
Text, | |||
TextInput, | |||
ScrollView, | |||
Image, | |||
BackHandler, | |||
Keyboard, | |||
TouchableOpacity, | |||
Picker, | |||
} from "react-native"; | |||
/* Screens */ | |||
import Splash from './src/views/Splash'; | |||
import Home from './src/views/Home'; | |||
import Pharmacy from './src/views/Pharmacy'; | |||
import EditProduct from './src/views/EditProduct'; | |||
import Call from './src/views/Call'; | |||
import VideoCall from './src/views/VideoCall'; | |||
import VendorDetails from './src/views/VendorDetails'; | |||
import LocationSearch from './src/views/LocationSearch'; | |||
import SubCategory from './src/views/SubCategory'; | |||
import Product from './src/views/Product'; | |||
import Category from './src/views/Category'; | |||
import DoctorSubCategories from './src/views/DoctorSubCategories'; | |||
import ProductDetails from './src/views/ProductDetails'; | |||
import Promo from './src/views/Promo'; | |||
import MyOrders from './src/views/MyOrders'; | |||
import OrderDetails from './src/views/OrderDetails'; | |||
import Cart from './src/views/Cart'; | |||
import Profile from './src/views/Profile'; | |||
import More from './src/views/More'; | |||
import Prescription from './src/views/Prescription'; | |||
import AddPrescription from './src/views/AddPrescription'; | |||
import ViewPrescription from './src/views/ViewPrescription'; | |||
import Address from './src/views/Address'; | |||
import AddressList from './src/views/AddressList'; | |||
import Payment from './src/views/Payment'; | |||
import Login from './src/views/Login'; | |||
import Register from './src/views/Register'; | |||
import Faq from './src/views/Faq'; | |||
import FaqDetails from './src/views/FaqDetails'; | |||
import PrivacyPolicy from './src/views/PrivacyPolicy'; | |||
import Forgot from './src/views/Forgot'; | |||
import Otp from './src/views/Otp'; | |||
import Rating from './src/views/Rating'; | |||
import Reset from './src/views/Reset'; | |||
import ContactUs from './src/views/ContactUs'; | |||
import Logout from './src/views/Logout'; | |||
import Search from './src/views/Search'; | |||
import Wallet from './src/views/Wallet'; | |||
import DoctorList from './src/views/DoctorList'; | |||
import DoctorDetail from './src/views/DoctorDetail'; | |||
import AppointmentDetail from './src/views/AppointmentDetail'; | |||
import CreateAppointment from './src/views/CreateAppointment'; | |||
import MyBookingDetails from './src/views/MyBookingDetails'; | |||
import Chat from './src/views/Chat'; | |||
import DoctorMap from './src/views/DoctorMap'; | |||
import Splash from "./src/views/Splash"; | |||
import Home from "./src/views/Home"; | |||
import Pharmacy from "./src/views/Pharmacy"; | |||
import EditProduct from "./src/views/EditProduct"; | |||
import Call from "./src/views/Call"; | |||
import VideoCall from "./src/views/VideoCall"; | |||
import VendorDetails from "./src/views/VendorDetails"; | |||
import LocationSearch from "./src/views/LocationSearch"; | |||
import SubCategory from "./src/views/SubCategory"; | |||
import Product from "./src/views/Product"; | |||
import Category from "./src/views/Category"; | |||
import DoctorSubCategories from "./src/views/DoctorSubCategories"; | |||
import ProductDetails from "./src/views/ProductDetails"; | |||
import Promo from "./src/views/Promo"; | |||
import MyOrders from "./src/views/MyOrders"; | |||
import OrderDetails from "./src/views/OrderDetails"; | |||
import Cart from "./src/views/Cart"; | |||
import Profile from "./src/views/Profile"; | |||
import More from "./src/views/More"; | |||
import Prescription from "./src/views/Prescription"; | |||
import AddPrescription from "./src/views/AddPrescription"; | |||
import ViewPrescription from "./src/views/ViewPrescription"; | |||
import Address from "./src/views/Address"; | |||
import AddressList from "./src/views/AddressList"; | |||
import Payment from "./src/views/Payment"; | |||
import Login from "./src/views/Login"; | |||
import Register from "./src/views/Register"; | |||
import Faq from "./src/views/Faq"; | |||
import FaqDetails from "./src/views/FaqDetails"; | |||
import PrivacyPolicy from "./src/views/PrivacyPolicy"; | |||
import Forgot from "./src/views/Forgot"; | |||
import Otp from "./src/views/Otp"; | |||
import Rating from "./src/views/Rating"; | |||
import Reset from "./src/views/Reset"; | |||
import ContactUs from "./src/views/ContactUs"; | |||
import Logout from "./src/views/Logout"; | |||
import Search from "./src/views/Search"; | |||
import Wallet from "./src/views/Wallet"; | |||
import DoctorList from "./src/views/DoctorList"; | |||
import DoctorDetail from "./src/views/DoctorDetail"; | |||
import AppointmentDetail from "./src/views/AppointmentDetail"; | |||
import CreateAppointment from "./src/views/CreateAppointment"; | |||
import MyBookingDetails from "./src/views/MyBookingDetails"; | |||
import Chat from "./src/views/Chat"; | |||
import DoctorMap from "./src/views/DoctorMap"; | |||
import home from "./src/assets/icons/home.png"; | |||
import file from "./src/assets/icons/file.png"; | |||
import list from "./src/assets/icons/list.png"; | |||
import bag from "./src/assets/icons/bag.png"; | |||
import DoctorSymptoms from "./src/views/DoctorSymptoms"; | |||
import PharmacyDetail from "./src/views/PharmacyDetail"; | |||
import PrescriptionUpload from "./src/views/PrescriptionUpload"; | |||
const Stack = createStackNavigator(); | |||
const Tab = createBottomTabNavigator(); | |||
function MyTabs() { | |||
return ( | |||
<Tab.Navigator | |||
initialRouteName="Home" | |||
tabBarOptions={{ | |||
activeTintColor: '#FFFFFF', | |||
inactiveTintColor: '#bfbfbf', | |||
labelStyle: { fontFamily:'GoogleSans-Medium' }, | |||
style:{ | |||
activeTintColor: "#FFFFFF", | |||
inactiveTintColor: "#bfbfbf", | |||
labelStyle: { fontFamily: "GoogleSans-Medium" }, | |||
style: { | |||
backgroundColor: colors.theme_bg_dark, | |||
fontFamily:'GoogleSans-Medium' | |||
} | |||
fontFamily: "GoogleSans-Medium", | |||
}, | |||
}} | |||
> | |||
<Tab.Screen | |||
name="Home" | |||
component={Home} | |||
options={{ | |||
tabBarLabel: 'Home', | |||
tabBarLabel: "Home", | |||
tabBarIcon: ({ color, size }) => ( | |||
<Icon name='ios-home' color={color} size={size} /> | |||
<Icon name="ios-home" | |||
color={color} size={size} /> | |||
// <Image | |||
// style={{ width: 20 | |||
// , | |||
// height: 20,backgroundColor:'white'}} | |||
// source={home} | |||
// /> | |||
), | |||
}} | |||
/> | |||
<Tab.Screen | |||
<Tab.Screen | |||
name="Pharmacy" | |||
component={Pharmacy} | |||
options={{ | |||
tabBarLabel: 'Pharmacy', | |||
tabBarLabel: "Pharmacy", | |||
tabBarIcon: ({ color, size }) => ( | |||
<Icon name='ios-medkit' color={color} size={size} /> | |||
), | |||
<Icon name="ios-medkit" color={color} size={size} /> | |||
// <Image | |||
// style={{ width: 20 | |||
// , | |||
// height: 20,backgroundColor:'white'}} | |||
// source={bag} | |||
// /> | |||
), | |||
}} | |||
/> | |||
<Tab.Screen | |||
name="MyOrders" | |||
component={MyOrders} | |||
options={{ | |||
tabBarLabel: 'MyOrders', | |||
tabBarLabel: "MyOrders", | |||
tabBarIcon: ({ color, size }) => ( | |||
<Icon name='ios-list' color={color} size={size} /> | |||
<Icon name="ios-list" color={color} size={size} /> | |||
// <Image | |||
// style={{ width: 20 | |||
// , | |||
// height: 20,backgroundColor:''}} | |||
// source={list} | |||
// /> | |||
), | |||
}} | |||
/> | |||
@@ -105,9 +144,17 @@ function MyTabs() { | |||
name="Prescription" | |||
component={Prescription} | |||
options={{ | |||
tabBarLabel: 'Prescription', | |||
tabBarLabel: "Prescription", | |||
tabBarIcon: ({ color, size }) => ( | |||
<Icon name='ios-document' color={color} size={size} /> | |||
<Icon name="ios-document" color={color} size={size} /> | |||
// <Image | |||
// style={{ width: 20 | |||
// , | |||
// height: 20,backgroundColor:''}} | |||
// source={file} | |||
// /> | |||
), | |||
}} | |||
/> | |||
@@ -115,9 +162,9 @@ function MyTabs() { | |||
name="More" | |||
component={More} | |||
options={{ | |||
tabBarLabel: 'More', | |||
tabBarLabel: "More", | |||
tabBarIcon: ({ color, size }) => ( | |||
<Icon name='ios-more' color={color} size={size} /> | |||
<Icon name="ios-more" color={color} size={size} /> | |||
), | |||
}} | |||
/> | |||
@@ -125,52 +172,57 @@ function MyTabs() { | |||
); | |||
} | |||
function App() { | |||
return ( | |||
<NavigationContainer> | |||
<Stack.Navigator headerMode="none" initialRouteName="Register" > | |||
<Stack.Screen name="DoctorMap" component={DoctorMap} /> | |||
<Stack.Screen name="AddPrescription" component={AddPrescription} /> | |||
<Stack.Screen name="Address" component={Address} /> | |||
<Stack.Screen name="AddressList" component={AddressList} /> | |||
<Stack.Screen name="LocationSearch" component={LocationSearch} /> | |||
<Stack.Screen name="MyBookingDetails" component={MyBookingDetails} /> | |||
<Stack.Screen name="ContactUs" component={ContactUs} /> | |||
<Stack.Screen name="Faq" component={Faq} /> | |||
<Stack.Screen name="EditProduct" component={EditProduct} /> | |||
<Stack.Screen name="Cart" component={Cart} /> | |||
<Stack.Screen name="Chat" component={Chat} /> | |||
<Stack.Screen name="Call" component={Call} /> | |||
<Stack.Screen name="VideoCall" component={VideoCall} /> | |||
<Stack.Screen name="FaqDetails" component={FaqDetails} /> | |||
<Stack.Screen name="Forgot" component={Forgot} /> | |||
<Stack.Screen name="Rating" component={Rating} /> | |||
<Stack.Screen name="Home" component={MyTabs} /> | |||
<Stack.Screen name="Login" component={Login} /> | |||
<Stack.Screen name="Logout" component={Logout} /> | |||
<Stack.Screen name="OrderDetails" component={OrderDetails} /> | |||
<Stack.Screen name="Otp" component={Otp} /> | |||
<Stack.Screen name="Payment" component={Payment} /> | |||
<Stack.Screen name="PrivacyPolicy" component={PrivacyPolicy} /> | |||
<Stack.Screen name="Product" component={Product} /> | |||
<Stack.Screen name="ProductDetails" component={ProductDetails} /> | |||
<Stack.Screen name="Promo" component={Promo} /> | |||
<Stack.Screen name="Register" component={Register} /> | |||
<Stack.Screen name="Reset" component={Reset} /> | |||
<Stack.Screen name="Splash" component={Splash} /> | |||
<Stack.Screen name="Wallet" component={Wallet} /> | |||
<Stack.Screen name="SubCategory" component={SubCategory} /> | |||
<Stack.Screen name="ViewPrescription" component={ViewPrescription} /> | |||
<Stack.Screen name="Profile" component={Profile} /> | |||
<Stack.Screen name="Category" component={Category} /> | |||
<Stack.Screen name="VendorDetails" component={VendorDetails} /> | |||
<Stack.Screen name="Search" component={Search} /> | |||
<Stack.Screen name="DoctorList" component={DoctorList} /> | |||
<Stack.Screen name="DoctorDetail" component={DoctorDetail}/> | |||
<Stack.Screen name="AppointmentDetail" component={AppointmentDetail} /> | |||
<Stack.Screen name="CreateAppointment" component={CreateAppointment} /> | |||
<Stack.Screen name="DoctorSubCategories" component={DoctorSubCategories} /> | |||
<Stack.Navigator headerMode="none" initialRouteName="Splash"> | |||
<Stack.Screen name="DoctorMap" component={DoctorMap} /> | |||
<Stack.Screen name="AddPrescription" component={AddPrescription} /> | |||
<Stack.Screen name="Address" component={Address} /> | |||
<Stack.Screen name="AddressList" component={AddressList} /> | |||
<Stack.Screen name="LocationSearch" component={LocationSearch} /> | |||
<Stack.Screen name="MyBookingDetails" component={MyBookingDetails} /> | |||
<Stack.Screen name="ContactUs" component={ContactUs} /> | |||
<Stack.Screen name="Faq" component={Faq} /> | |||
<Stack.Screen name="EditProduct" component={EditProduct} /> | |||
<Stack.Screen name="Cart" component={Cart} /> | |||
<Stack.Screen name="Chat" component={Chat} /> | |||
<Stack.Screen name="Call" component={Call} /> | |||
<Stack.Screen name="VideoCall" component={VideoCall} /> | |||
<Stack.Screen name="FaqDetails" component={FaqDetails} /> | |||
<Stack.Screen name="Forgot" component={Forgot} /> | |||
<Stack.Screen name="Rating" component={Rating} /> | |||
<Stack.Screen name="Home" component={MyTabs} /> | |||
<Stack.Screen name="Login" component={Login} /> | |||
<Stack.Screen name="Logout" component={Logout} /> | |||
<Stack.Screen name="OrderDetails" component={OrderDetails} /> | |||
<Stack.Screen name="Otp" component={Otp} /> | |||
<Stack.Screen name="Payment" component={Payment} /> | |||
<Stack.Screen name="PrivacyPolicy" component={PrivacyPolicy} /> | |||
<Stack.Screen name="Product" component={Product} /> | |||
<Stack.Screen name="ProductDetails" component={ProductDetails} /> | |||
<Stack.Screen name="Promo" component={Promo} /> | |||
<Stack.Screen name="Register" component={Register} /> | |||
<Stack.Screen name="Reset" component={Reset} /> | |||
<Stack.Screen name="Splash" component={Splash} /> | |||
<Stack.Screen name="Wallet" component={Wallet} /> | |||
<Stack.Screen name="SubCategory" component={SubCategory} /> | |||
<Stack.Screen name="ViewPrescription" component={ViewPrescription} /> | |||
<Stack.Screen name="Profile" component={Profile} /> | |||
<Stack.Screen name="Category" component={Category} /> | |||
<Stack.Screen name="VendorDetails" component={VendorDetails} /> | |||
<Stack.Screen name="Search" component={Search} /> | |||
<Stack.Screen name="DoctorList" component={DoctorList} /> | |||
<Stack.Screen name="DoctorSymptoms" component={DoctorSymptoms} /> | |||
<Stack.Screen name="PharmacyDetail" component={PharmacyDetail} /> | |||
<Stack.Screen name="DoctorDetail" component={DoctorDetail} /> | |||
<Stack.Screen name="AppointmentDetail" component={AppointmentDetail} /> | |||
<Stack.Screen name="CreateAppointment" component={CreateAppointment} /> | |||
<Stack.Screen name="PrescriptionUpload" component={PrescriptionUpload} /> | |||
<Stack.Screen | |||
name="DoctorSubCategories" | |||
component={DoctorSubCategories} | |||
/> | |||
</Stack.Navigator> | |||
</NavigationContainer> | |||
); | |||
@@ -644,8 +644,8 @@ public final class R { | |||
public static final int notification_template_icon_low_bg = 0x7f0700b3; | |||
public static final int notification_tile_bg = 0x7f0700b4; | |||
public static final int notify_panel_notification_icon_bg = 0x7f0700b5; | |||
public static final int tooltip_frame_dark = 0x7f0700f0; | |||
public static final int tooltip_frame_light = 0x7f0700f1; | |||
public static final int tooltip_frame_dark = 0x7f0700f8; | |||
public static final int tooltip_frame_light = 0x7f0700f9; | |||
} | |||
public static final class id { | |||
private id() {} | |||
@@ -653,8 +653,8 @@ public final class R { | |||
public static final int notification_tile_bg = 0x7f0700b4; | |||
public static final int notify_panel_notification_icon_bg = 0x7f0700b5; | |||
public static final int redbox_top_border_background = 0x7f0700b6; | |||
public static final int tooltip_frame_dark = 0x7f0700f0; | |||
public static final int tooltip_frame_light = 0x7f0700f1; | |||
public static final int tooltip_frame_dark = 0x7f0700f8; | |||
public static final int tooltip_frame_light = 0x7f0700f9; | |||
} | |||
public static final class id { | |||
private id() {} | |||
@@ -694,8 +694,8 @@ public final class R { | |||
public static final int notification_tile_bg = 0x7f0700b4; | |||
public static final int notify_panel_notification_icon_bg = 0x7f0700b5; | |||
public static final int redbox_top_border_background = 0x7f0700b6; | |||
public static final int tooltip_frame_dark = 0x7f0700f0; | |||
public static final int tooltip_frame_light = 0x7f0700f1; | |||
public static final int tooltip_frame_dark = 0x7f0700f8; | |||
public static final int tooltip_frame_light = 0x7f0700f9; | |||
} | |||
public static final class id { | |||
private id() {} | |||
@@ -669,8 +669,8 @@ public final class R { | |||
public static final int notification_tile_bg = 0x7f0700b4; | |||
public static final int notify_panel_notification_icon_bg = 0x7f0700b5; | |||
public static final int redbox_top_border_background = 0x7f0700b6; | |||
public static final int tooltip_frame_dark = 0x7f0700f0; | |||
public static final int tooltip_frame_light = 0x7f0700f1; | |||
public static final int tooltip_frame_dark = 0x7f0700f8; | |||
public static final int tooltip_frame_light = 0x7f0700f9; | |||
} | |||
public static final class id { | |||
private id() {} | |||
@@ -717,8 +717,8 @@ public final class R { | |||
public static final int notification_tile_bg = 0x7f0700b4; | |||
public static final int notify_panel_notification_icon_bg = 0x7f0700b5; | |||
public static final int redbox_top_border_background = 0x7f0700b6; | |||
public static final int tooltip_frame_dark = 0x7f0700f0; | |||
public static final int tooltip_frame_light = 0x7f0700f1; | |||
public static final int tooltip_frame_dark = 0x7f0700f8; | |||
public static final int tooltip_frame_light = 0x7f0700f9; | |||
} | |||
public static final class id { | |||
private id() {} | |||
@@ -629,8 +629,8 @@ public final class R { | |||
public static final int notification_template_icon_low_bg = 0x7f0700b3; | |||
public static final int notification_tile_bg = 0x7f0700b4; | |||
public static final int notify_panel_notification_icon_bg = 0x7f0700b5; | |||
public static final int tooltip_frame_dark = 0x7f0700f0; | |||
public static final int tooltip_frame_light = 0x7f0700f1; | |||
public static final int tooltip_frame_dark = 0x7f0700f8; | |||
public static final int tooltip_frame_light = 0x7f0700f9; | |||
} | |||
public static final class id { | |||
private id() {} | |||
@@ -653,8 +653,8 @@ public final class R { | |||
public static final int notification_tile_bg = 0x7f0700b4; | |||
public static final int notify_panel_notification_icon_bg = 0x7f0700b5; | |||
public static final int redbox_top_border_background = 0x7f0700b6; | |||
public static final int tooltip_frame_dark = 0x7f0700f0; | |||
public static final int tooltip_frame_light = 0x7f0700f1; | |||
public static final int tooltip_frame_dark = 0x7f0700f8; | |||
public static final int tooltip_frame_light = 0x7f0700f9; | |||
} | |||
public static final class id { | |||
private id() {} | |||
@@ -1030,8 +1030,8 @@ public final class R { | |||
public static final int notification_tile_bg = 0x7f0700b4; | |||
public static final int notify_panel_notification_icon_bg = 0x7f0700b5; | |||
public static final int redbox_top_border_background = 0x7f0700b6; | |||
public static final int tooltip_frame_dark = 0x7f0700f0; | |||
public static final int tooltip_frame_light = 0x7f0700f1; | |||
public static final int tooltip_frame_dark = 0x7f0700f8; | |||
public static final int tooltip_frame_light = 0x7f0700f9; | |||
} | |||
public static final class id { | |||
private id() {} | |||
@@ -6900,56 +6900,64 @@ public final class R { | |||
public static final int rzp_poweredby=0x7f0700bd; | |||
public static final int rzp_secured_by_bg=0x7f0700be; | |||
public static final int rzp_white_border_black_bg=0x7f0700bf; | |||
public static final int src_assets_img_acidity=0x7f0700c0; | |||
public static final int src_assets_img_anxiety=0x7f0700c1; | |||
public static final int src_assets_img_back_pain=0x7f0700c2; | |||
public static final int src_assets_img_banner1=0x7f0700c3; | |||
public static final int src_assets_img_banner2=0x7f0700c4; | |||
public static final int src_assets_img_banner3=0x7f0700c5; | |||
public static final int src_assets_img_blood_pressure=0x7f0700c6; | |||
public static final int src_assets_img_cardiologist=0x7f0700c7; | |||
public static final int src_assets_img_constipation=0x7f0700c8; | |||
public static final int src_assets_img_cough=0x7f0700c9; | |||
public static final int src_assets_img_covid=0x7f0700ca; | |||
public static final int src_assets_img_dentist=0x7f0700cb; | |||
public static final int src_assets_img_depression=0x7f0700cc; | |||
public static final int src_assets_img_diabetes=0x7f0700cd; | |||
public static final int src_assets_img_doc=0x7f0700ce; | |||
public static final int src_assets_img_doctor=0x7f0700cf; | |||
public static final int src_assets_img_doctor_image=0x7f0700d0; | |||
public static final int src_assets_img_doctor_one=0x7f0700d1; | |||
public static final int src_assets_img_doctorthree=0x7f0700d2; | |||
public static final int src_assets_img_fever=0x7f0700d3; | |||
public static final int src_assets_img_forgot=0x7f0700d4; | |||
public static final int src_assets_img_hairfall=0x7f0700d5; | |||
public static final int src_assets_img_headache=0x7f0700d6; | |||
public static final int src_assets_img_heart=0x7f0700d7; | |||
public static final int src_assets_img_hospital_pin=0x7f0700d8; | |||
public static final int src_assets_img_infections=0x7f0700d9; | |||
public static final int src_assets_img_list=0x7f0700da; | |||
public static final int src_assets_img_loading=0x7f0700db; | |||
public static final int src_assets_img_location=0x7f0700dc; | |||
public static final int src_assets_img_location_icon=0x7f0700dd; | |||
public static final int src_assets_img_location_pin=0x7f0700de; | |||
public static final int src_assets_img_logo=0x7f0700df; | |||
public static final int src_assets_img_logo_with_name=0x7f0700e0; | |||
public static final int src_assets_img_order=0x7f0700e1; | |||
public static final int src_assets_img_orthopedics=0x7f0700e2; | |||
public static final int src_assets_img_otp=0x7f0700e3; | |||
public static final int src_assets_img_reset_password=0x7f0700e4; | |||
public static final int src_assets_img_safety=0x7f0700e5; | |||
public static final int src_assets_img_splash=0x7f0700e6; | |||
public static final int src_assets_img_stomach_ache=0x7f0700e7; | |||
public static final int src_assets_img_surgery=0x7f0700e8; | |||
public static final int src_assets_img_tablet=0x7f0700e9; | |||
public static final int src_assets_img_tablet_house=0x7f0700ea; | |||
public static final int src_assets_img_throat_pain=0x7f0700eb; | |||
public static final int src_assets_img_trust=0x7f0700ec; | |||
public static final int src_assets_img_wallet=0x7f0700ed; | |||
public static final int src_assets_img_weight_loss=0x7f0700ee; | |||
public static final int test_custom_background=0x7f0700ef; | |||
public static final int tooltip_frame_dark=0x7f0700f0; | |||
public static final int tooltip_frame_light=0x7f0700f1; | |||
public static final int src_assets_icons_bag=0x7f0700c0; | |||
public static final int src_assets_icons_call=0x7f0700c1; | |||
public static final int src_assets_icons_email=0x7f0700c2; | |||
public static final int src_assets_icons_file=0x7f0700c3; | |||
public static final int src_assets_icons_home=0x7f0700c4; | |||
public static final int src_assets_icons_list=0x7f0700c5; | |||
public static final int src_assets_icons_pass=0x7f0700c6; | |||
public static final int src_assets_icons_person=0x7f0700c7; | |||
public static final int src_assets_img_acidity=0x7f0700c8; | |||
public static final int src_assets_img_anxiety=0x7f0700c9; | |||
public static final int src_assets_img_back_pain=0x7f0700ca; | |||
public static final int src_assets_img_banner1=0x7f0700cb; | |||
public static final int src_assets_img_banner2=0x7f0700cc; | |||
public static final int src_assets_img_banner3=0x7f0700cd; | |||
public static final int src_assets_img_blood_pressure=0x7f0700ce; | |||
public static final int src_assets_img_cardiologist=0x7f0700cf; | |||
public static final int src_assets_img_constipation=0x7f0700d0; | |||
public static final int src_assets_img_cough=0x7f0700d1; | |||
public static final int src_assets_img_covid=0x7f0700d2; | |||
public static final int src_assets_img_dentist=0x7f0700d3; | |||
public static final int src_assets_img_depression=0x7f0700d4; | |||
public static final int src_assets_img_diabetes=0x7f0700d5; | |||
public static final int src_assets_img_doc=0x7f0700d6; | |||
public static final int src_assets_img_doctor=0x7f0700d7; | |||
public static final int src_assets_img_doctor_image=0x7f0700d8; | |||
public static final int src_assets_img_doctor_one=0x7f0700d9; | |||
public static final int src_assets_img_doctorthree=0x7f0700da; | |||
public static final int src_assets_img_fever=0x7f0700db; | |||
public static final int src_assets_img_forgot=0x7f0700dc; | |||
public static final int src_assets_img_hairfall=0x7f0700dd; | |||
public static final int src_assets_img_headache=0x7f0700de; | |||
public static final int src_assets_img_heart=0x7f0700df; | |||
public static final int src_assets_img_hospital_pin=0x7f0700e0; | |||
public static final int src_assets_img_infections=0x7f0700e1; | |||
public static final int src_assets_img_list=0x7f0700e2; | |||
public static final int src_assets_img_loading=0x7f0700e3; | |||
public static final int src_assets_img_location=0x7f0700e4; | |||
public static final int src_assets_img_location_icon=0x7f0700e5; | |||
public static final int src_assets_img_location_pin=0x7f0700e6; | |||
public static final int src_assets_img_logo=0x7f0700e7; | |||
public static final int src_assets_img_logo_with_name=0x7f0700e8; | |||
public static final int src_assets_img_order=0x7f0700e9; | |||
public static final int src_assets_img_orthopedics=0x7f0700ea; | |||
public static final int src_assets_img_otp=0x7f0700eb; | |||
public static final int src_assets_img_reset_password=0x7f0700ec; | |||
public static final int src_assets_img_safety=0x7f0700ed; | |||
public static final int src_assets_img_splash=0x7f0700ee; | |||
public static final int src_assets_img_stomach_ache=0x7f0700ef; | |||
public static final int src_assets_img_surgery=0x7f0700f0; | |||
public static final int src_assets_img_tablet=0x7f0700f1; | |||
public static final int src_assets_img_tablet_house=0x7f0700f2; | |||
public static final int src_assets_img_throat_pain=0x7f0700f3; | |||
public static final int src_assets_img_trust=0x7f0700f4; | |||
public static final int src_assets_img_wallet=0x7f0700f5; | |||
public static final int src_assets_img_weight_loss=0x7f0700f6; | |||
public static final int test_custom_background=0x7f0700f7; | |||
public static final int tooltip_frame_dark=0x7f0700f8; | |||
public static final int tooltip_frame_light=0x7f0700f9; | |||
} | |||
public static final class id { | |||
public static final int ALT=0x7f080000; | |||
@@ -7523,6 +7531,7 @@ public final class R { | |||
public static final int src_assets_json_no_prescription=0x7f0e0037; | |||
public static final int src_assets_json_no_wallet=0x7f0e0038; | |||
public static final int src_assets_json_noservice_lottie=0x7f0e0039; | |||
public static final int src_assets_json_pharmacy=0x7f0e003a; | |||
} | |||
public static final class string { | |||
public static final int abc_action_bar_home_description=0x7f0f0000; | |||
@@ -653,8 +653,8 @@ public final class R { | |||
public static final int notification_tile_bg = 0x7f0700b4; | |||
public static final int notify_panel_notification_icon_bg = 0x7f0700b5; | |||
public static final int redbox_top_border_background = 0x7f0700b6; | |||
public static final int tooltip_frame_dark = 0x7f0700f0; | |||
public static final int tooltip_frame_light = 0x7f0700f1; | |||
public static final int tooltip_frame_dark = 0x7f0700f8; | |||
public static final int tooltip_frame_light = 0x7f0700f9; | |||
} | |||
public static final class id { | |||
private id() {} | |||
@@ -1351,9 +1351,9 @@ public final class R { | |||
public static final int notification_template_icon_low_bg = 0x7f0700b3; | |||
public static final int notification_tile_bg = 0x7f0700b4; | |||
public static final int notify_panel_notification_icon_bg = 0x7f0700b5; | |||
public static final int test_custom_background = 0x7f0700ef; | |||
public static final int tooltip_frame_dark = 0x7f0700f0; | |||
public static final int tooltip_frame_light = 0x7f0700f1; | |||
public static final int test_custom_background = 0x7f0700f7; | |||
public static final int tooltip_frame_dark = 0x7f0700f8; | |||
public static final int tooltip_frame_light = 0x7f0700f9; | |||
} | |||
public static final class id { | |||
private id() {} | |||
@@ -696,8 +696,8 @@ public final class R { | |||
public static final int notification_tile_bg = 0x7f0700b4; | |||
public static final int notify_panel_notification_icon_bg = 0x7f0700b5; | |||
public static final int redbox_top_border_background = 0x7f0700b6; | |||
public static final int tooltip_frame_dark = 0x7f0700f0; | |||
public static final int tooltip_frame_light = 0x7f0700f1; | |||
public static final int tooltip_frame_dark = 0x7f0700f8; | |||
public static final int tooltip_frame_light = 0x7f0700f9; | |||
} | |||
public static final class id { | |||
private id() {} | |||
@@ -700,8 +700,8 @@ public final class R { | |||
public static final int notification_tile_bg = 0x7f0700b4; | |||
public static final int notify_panel_notification_icon_bg = 0x7f0700b5; | |||
public static final int redbox_top_border_background = 0x7f0700b6; | |||
public static final int tooltip_frame_dark = 0x7f0700f0; | |||
public static final int tooltip_frame_light = 0x7f0700f1; | |||
public static final int tooltip_frame_dark = 0x7f0700f8; | |||
public static final int tooltip_frame_light = 0x7f0700f9; | |||
} | |||
public static final class id { | |||
private id() {} | |||
@@ -653,8 +653,8 @@ public final class R { | |||
public static final int notification_tile_bg = 0x7f0700b4; | |||
public static final int notify_panel_notification_icon_bg = 0x7f0700b5; | |||
public static final int redbox_top_border_background = 0x7f0700b6; | |||
public static final int tooltip_frame_dark = 0x7f0700f0; | |||
public static final int tooltip_frame_light = 0x7f0700f1; | |||
public static final int tooltip_frame_dark = 0x7f0700f8; | |||
public static final int tooltip_frame_light = 0x7f0700f9; | |||
} | |||
public static final class id { | |||
private id() {} | |||
@@ -672,8 +672,8 @@ public final class R { | |||
public static final int notification_tile_bg = 0x7f0700b4; | |||
public static final int notify_panel_notification_icon_bg = 0x7f0700b5; | |||
public static final int redbox_top_border_background = 0x7f0700b6; | |||
public static final int tooltip_frame_dark = 0x7f0700f0; | |||
public static final int tooltip_frame_light = 0x7f0700f1; | |||
public static final int tooltip_frame_dark = 0x7f0700f8; | |||
public static final int tooltip_frame_light = 0x7f0700f9; | |||
} | |||
public static final class id { | |||
private id() {} | |||
@@ -653,8 +653,8 @@ public final class R { | |||
public static final int notification_tile_bg = 0x7f0700b4; | |||
public static final int notify_panel_notification_icon_bg = 0x7f0700b5; | |||
public static final int redbox_top_border_background = 0x7f0700b6; | |||
public static final int tooltip_frame_dark = 0x7f0700f0; | |||
public static final int tooltip_frame_light = 0x7f0700f1; | |||
public static final int tooltip_frame_dark = 0x7f0700f8; | |||
public static final int tooltip_frame_light = 0x7f0700f9; | |||
} | |||
public static final class id { | |||
private id() {} | |||
@@ -702,8 +702,8 @@ public final class R { | |||
public static final int notification_tile_bg = 0x7f0700b4; | |||
public static final int notify_panel_notification_icon_bg = 0x7f0700b5; | |||
public static final int redbox_top_border_background = 0x7f0700b6; | |||
public static final int tooltip_frame_dark = 0x7f0700f0; | |||
public static final int tooltip_frame_light = 0x7f0700f1; | |||
public static final int tooltip_frame_dark = 0x7f0700f8; | |||
public static final int tooltip_frame_light = 0x7f0700f9; | |||
} | |||
public static final class id { | |||
private id() {} | |||
@@ -598,8 +598,8 @@ public final class R { | |||
public static final int rzp_poweredby = 0x7f0700bd; | |||
public static final int rzp_secured_by_bg = 0x7f0700be; | |||
public static final int rzp_white_border_black_bg = 0x7f0700bf; | |||
public static final int tooltip_frame_dark = 0x7f0700f0; | |||
public static final int tooltip_frame_light = 0x7f0700f1; | |||
public static final int tooltip_frame_dark = 0x7f0700f8; | |||
public static final int tooltip_frame_light = 0x7f0700f9; | |||
} | |||
public static final class id { | |||
private id() {} | |||
@@ -664,8 +664,8 @@ public final class R { | |||
public static final int rzp_poweredby = 0x7f0700bd; | |||
public static final int rzp_secured_by_bg = 0x7f0700be; | |||
public static final int rzp_white_border_black_bg = 0x7f0700bf; | |||
public static final int tooltip_frame_dark = 0x7f0700f0; | |||
public static final int tooltip_frame_light = 0x7f0700f1; | |||
public static final int tooltip_frame_dark = 0x7f0700f8; | |||
public static final int tooltip_frame_light = 0x7f0700f9; | |||
} | |||
public static final class id { | |||
private id() {} | |||
@@ -653,8 +653,8 @@ public final class R { | |||
public static final int notification_tile_bg = 0x7f0700b4; | |||
public static final int notify_panel_notification_icon_bg = 0x7f0700b5; | |||
public static final int redbox_top_border_background = 0x7f0700b6; | |||
public static final int tooltip_frame_dark = 0x7f0700f0; | |||
public static final int tooltip_frame_light = 0x7f0700f1; | |||
public static final int tooltip_frame_dark = 0x7f0700f8; | |||
public static final int tooltip_frame_light = 0x7f0700f9; | |||
} | |||
public static final class id { | |||
private id() {} | |||
@@ -653,8 +653,8 @@ public final class R { | |||
public static final int notification_tile_bg = 0x7f0700b4; | |||
public static final int notify_panel_notification_icon_bg = 0x7f0700b5; | |||
public static final int redbox_top_border_background = 0x7f0700b6; | |||
public static final int tooltip_frame_dark = 0x7f0700f0; | |||
public static final int tooltip_frame_light = 0x7f0700f1; | |||
public static final int tooltip_frame_dark = 0x7f0700f8; | |||
public static final int tooltip_frame_light = 0x7f0700f9; | |||
} | |||
public static final class id { | |||
private id() {} | |||
@@ -653,8 +653,8 @@ public final class R { | |||
public static final int notification_tile_bg = 0x7f0700b4; | |||
public static final int notify_panel_notification_icon_bg = 0x7f0700b5; | |||
public static final int redbox_top_border_background = 0x7f0700b6; | |||
public static final int tooltip_frame_dark = 0x7f0700f0; | |||
public static final int tooltip_frame_light = 0x7f0700f1; | |||
public static final int tooltip_frame_dark = 0x7f0700f8; | |||
public static final int tooltip_frame_light = 0x7f0700f9; | |||
} | |||
public static final class id { | |||
private id() {} | |||
@@ -653,8 +653,8 @@ public final class R { | |||
public static final int notification_tile_bg = 0x7f0700b4; | |||
public static final int notify_panel_notification_icon_bg = 0x7f0700b5; | |||
public static final int redbox_top_border_background = 0x7f0700b6; | |||
public static final int tooltip_frame_dark = 0x7f0700f0; | |||
public static final int tooltip_frame_light = 0x7f0700f1; | |||
public static final int tooltip_frame_dark = 0x7f0700f8; | |||
public static final int tooltip_frame_light = 0x7f0700f9; | |||
} | |||
public static final class id { | |||
private id() {} | |||
@@ -653,8 +653,8 @@ public final class R { | |||
public static final int notification_tile_bg = 0x7f0700b4; | |||
public static final int notify_panel_notification_icon_bg = 0x7f0700b5; | |||
public static final int redbox_top_border_background = 0x7f0700b6; | |||
public static final int tooltip_frame_dark = 0x7f0700f0; | |||
public static final int tooltip_frame_light = 0x7f0700f1; | |||
public static final int tooltip_frame_dark = 0x7f0700f8; | |||
public static final int tooltip_frame_light = 0x7f0700f9; | |||
} | |||
public static final class id { | |||
private id() {} | |||
@@ -653,8 +653,8 @@ public final class R { | |||
public static final int notification_tile_bg = 0x7f0700b4; | |||
public static final int notify_panel_notification_icon_bg = 0x7f0700b5; | |||
public static final int redbox_top_border_background = 0x7f0700b6; | |||
public static final int tooltip_frame_dark = 0x7f0700f0; | |||
public static final int tooltip_frame_light = 0x7f0700f1; | |||
public static final int tooltip_frame_dark = 0x7f0700f8; | |||
public static final int tooltip_frame_light = 0x7f0700f9; | |||
} | |||
public static final class id { | |||
private id() {} | |||
@@ -1398,9 +1398,9 @@ public final class R { | |||
public static final int notification_tile_bg = 0x7f0700b4; | |||
public static final int notify_panel_notification_icon_bg = 0x7f0700b5; | |||
public static final int redbox_top_border_background = 0x7f0700b6; | |||
public static final int test_custom_background = 0x7f0700ef; | |||
public static final int tooltip_frame_dark = 0x7f0700f0; | |||
public static final int tooltip_frame_light = 0x7f0700f1; | |||
public static final int test_custom_background = 0x7f0700f7; | |||
public static final int tooltip_frame_dark = 0x7f0700f8; | |||
public static final int tooltip_frame_light = 0x7f0700f9; | |||
} | |||
public static final class id { | |||
private id() {} | |||
@@ -653,8 +653,8 @@ public final class R { | |||
public static final int notification_tile_bg = 0x7f0700b4; | |||
public static final int notify_panel_notification_icon_bg = 0x7f0700b5; | |||
public static final int redbox_top_border_background = 0x7f0700b6; | |||
public static final int tooltip_frame_dark = 0x7f0700f0; | |||
public static final int tooltip_frame_light = 0x7f0700f1; | |||
public static final int tooltip_frame_dark = 0x7f0700f8; | |||
public static final int tooltip_frame_light = 0x7f0700f9; | |||
} | |||
public static final class id { | |||
private id() {} | |||
@@ -656,8 +656,8 @@ public final class R { | |||
public static final int notification_tile_bg = 0x7f0700b4; | |||
public static final int notify_panel_notification_icon_bg = 0x7f0700b5; | |||
public static final int redbox_top_border_background = 0x7f0700b6; | |||
public static final int tooltip_frame_dark = 0x7f0700f0; | |||
public static final int tooltip_frame_light = 0x7f0700f1; | |||
public static final int tooltip_frame_dark = 0x7f0700f8; | |||
public static final int tooltip_frame_light = 0x7f0700f9; | |||
} | |||
public static final class id { | |||
private id() {} | |||
@@ -653,8 +653,8 @@ public final class R { | |||
public static final int notification_tile_bg = 0x7f0700b4; | |||
public static final int notify_panel_notification_icon_bg = 0x7f0700b5; | |||
public static final int redbox_top_border_background = 0x7f0700b6; | |||
public static final int tooltip_frame_dark = 0x7f0700f0; | |||
public static final int tooltip_frame_light = 0x7f0700f1; | |||
public static final int tooltip_frame_dark = 0x7f0700f8; | |||
public static final int tooltip_frame_light = 0x7f0700f9; | |||
} | |||
public static final class id { | |||
private id() {} | |||
@@ -653,8 +653,8 @@ public final class R { | |||
public static final int notification_tile_bg = 0x7f0700b4; | |||
public static final int notify_panel_notification_icon_bg = 0x7f0700b5; | |||
public static final int redbox_top_border_background = 0x7f0700b6; | |||
public static final int tooltip_frame_dark = 0x7f0700f0; | |||
public static final int tooltip_frame_light = 0x7f0700f1; | |||
public static final int tooltip_frame_dark = 0x7f0700f8; | |||
public static final int tooltip_frame_light = 0x7f0700f9; | |||
} | |||
public static final class id { | |||
private id() {} | |||
@@ -0,0 +1,30 @@ | |||
[ | |||
{ | |||
"store_name": "Rai chemist", | |||
"img_url": "https://pharmaceutical-journal.com/wp-content/uploads/2021/01/face-mask-pharmacy-pa-20-scaled.jpg", | |||
"manual_address": "132/4e Street hill,,tx", | |||
"overall_ratings": "3", | |||
"no_of_ratings": 332 | |||
}, | |||
{ | |||
"store_name": "Sundaram chemist", | |||
"img_url": "https://static.spacecrafted.com/bb5a7345838940feb369462f45faa954/i/e8d65855ec7f4f3e90edbf24a7c8214a/1/4SoifmQp45JMgBnHp7ed2/24774872_10154900765992274_3950228934519069757_n.jpg", | |||
"manual_address": "132/4e Street hill,,tx", | |||
"overall_ratings": "5", | |||
"no_of_ratings": 3 | |||
}, | |||
{ | |||
"store_name": "Rai chemist", | |||
"img_url": "https://pharmaceutical-journal.com/wp-content/uploads/2021/01/face-mask-pharmacy-pa-20-scaled.jpg", | |||
"manual_address": "132/4e Street hill,,tx", | |||
"overall_ratings": "3", | |||
"no_of_ratings": 3 | |||
}, | |||
{ | |||
"store_name": "Rai chemist", | |||
"img_url": "https://pharmaceutical-journal.com/wp-content/uploads/2021/01/face-mask-pharmacy-pa-20-scaled.jpg", | |||
"manual_address": "132/4e Street hill,,tx", | |||
"overall_ratings": "3", | |||
"no_of_ratings": 3 | |||
} | |||
] |
@@ -2862,6 +2862,25 @@ | |||
"endOffsets": "1389,1709,1811,4808,5196,5255,5317,5689,5750,5825,5901,5978,6056,6141,6223,6299,6375,6452,6530,6636,6742,6821,6901,6958,7016,10559,10634,10699,10765,10825,10886,10958,11031,11098,11166,11225,11284,11343,11402,11461,11515,11569,11622,11676,11730,11784,11838,12740,12819,12892,12966,13037,13109,13181,13254,13311,13369,13442,13516,13590,13665,13737,13810,13880,13951,14011,14072,14178,14247,14317,14391,14467,14531,14608,14684,14761,14826,14895,14972,15047,15116,15184,15261,15327,15388,15485,15550,15619,15718,15789,15848,15906,15963,16022,16086,16157,16229,16301,16373,16445,16512,16580,16648,16707,16770,16834,16924,17015,17075,17141,17208,17274,17344,17408,17461,17528,17589,17656,17769,17827,17890,17955,18020,18095,18168,18240,18289,18350,18411,18472,18534,18598,18662,18726,18791,18854,18914,18975,19041,19100,19160,19222,19293,19353,19421,23287,23374,23627,23714,23802,23884,23967,24057,24148,35579,35637,35682,35748,35812,35869,35926,35980,38454,38502,38551,38602,38818,39267,39316,39595,40596,40874,40936,41124,41181,42718,42788,42866,42920,42990,43075,43123,43169,43230,43293,43359,43423,43494,43557,43622,43686,43747,43808,43860,43933,44007,44076,44151,44225,44299,44440,44510,62352,63437,63527,63615,63711,63801,65623,65712,65959,66240,66492,67191,67584,69416,69638,69860,70136,70363,70593,70823,71053,71283,71510,71929,72155,72580,72810,73238,73457,73740,73948,74079,74306,74732,74957,75384,75605,76030,76150,76426,76727,77051,77342,77656,77793,77924,78029,78271,78438,78642,78850,79121,79233,79345,79450,79567,81721,81867,82007,82093,82441,82529,82775,83193,83442,83524,83622,84239,84339,84591,85015,85270,85364,89351,89588,91640,91882,91984,92237,94421,140594,142110,153333,154861,156618,157244,157664,158725,159990,160246,160482,161029,161523,162128,162326,162906,163470,163845,163963,164501,164658,164854,165127,165383,165553,165694,165758,166123,166490,167166,167430,167768,168121,168215,168401,168707,168969,169094,169221,169460,169671,169790,169983,170160,170615,170796,170918,171177,171290,171477,171579,171686,171815,172090,172598,173094,173971,174265,174835,174984,175716,175888,175972,176308,176400,176678,194693,200245,200651,201281,201895,201986,202099,202328,202488,202640,202811,202977,203146,203313,203476,203719,203889,204062,204233,204507,204706,204911,205241,212557,212653,212749,212847,212947,213049,213151,213253,213355,213457,213557,213653,213765,213894,214017,214148,214279,214377,214491,214585,214725,214859,214955,215067,215167,215283,215379,215491,215591,215731,215867,216031,216161,216319,216469,216610,216754,216889,217001,217151,217279,217407,217543,217675,217805,217935,218047,218187,225783,225927,226065,226157,226247,226323,226427,226517,226619,226727,226835,226935,227015,227107,227205,227315,227393,227499,227591,227695,227805,227927,228090,228247,239738,239838,239928,240038,240128,240369,240463,240569,240661,251248,251360,251474,251590,251706,251800,251914,252026,252128,252248,252370,252452,252556,252676,252802,252900,252994,253082,253194,253310,253432,253544,253719,253835,253921,254013,254125,254249,254316,254442,254510,254638,254782,254910,254979,255074,255189,255302,255401,255510,255621,255732,255833,255938,256038,256168,256259,256382,256476,256588,256674,256778,256874,256962,257080,257184,257288,257414,257502,257610,257710,257800,257910,257994,258096,258180,258234,258298,258404,258490,258600,258684,258804,306420,306538,306653,306785,307500,308192,308709,317320,318853,319241,323976,344238,352857,369027,375879,395238,395500,395856,407904,414686,415820,419335,419558,420603,424551,432392,438146,444690,461125,462658,464067,464651" | |||
} | |||
}, | |||
{ | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\9bc87fc96e3c0f761f8fae877f4f5f3f\\jetified-react-native-0.62.2\\res\\values\\values.xml", | |||
"from": { | |||
"startLines": "2,3,4,5,6,7,8,9,10,11,12,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,73,77,80,83,86,89,93,97,100,103,106,109,110,111,119,126,133,136,139,142,148", | |||
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", | |||
"startOffsets": "100,163,226,277,325,374,422,471,520,563,617,798,871,946,1069,1165,1254,1362,1479,1599,1719,1829,2001,2104,2211,2314,2425,2594,2762,2879,2983,3096,3204,3317,3408,3519,3688,3786,3913,4038,4133,4240,4320,4396,4469,4556,4627,4698,4776,4856,4942,5026,5098,5180,5261,5345,5422,5509,5594,5673,5748,5821,5898,5976,6049,6127,6375,6623,6826,7017,7212,7395,7597,7803,8004,8193,8392,8579,8605,8640,9112,9530,9908,10085,10264,10447,10812", | |||
"endLines": "2,3,4,5,6,7,8,9,10,11,12,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,72,76,79,82,85,88,92,96,99,102,105,108,109,110,118,125,132,135,138,141,147,157", | |||
"endColumns": "62,62,50,47,48,47,48,48,42,53,47,72,74,122,95,88,107,116,119,119,109,171,102,106,102,110,168,167,116,103,112,107,112,90,110,168,97,126,124,94,106,79,75,72,86,70,70,77,79,85,83,71,81,80,83,76,86,84,78,74,72,76,77,72,77,10,10,12,12,12,12,10,10,12,12,12,12,25,34,10,10,10,10,10,12,12,10", | |||
"endOffsets": "158,221,272,320,369,417,466,515,558,612,660,866,941,1064,1160,1249,1357,1474,1594,1714,1824,1996,2099,2206,2309,2420,2589,2757,2874,2978,3091,3199,3312,3403,3514,3683,3781,3908,4033,4128,4235,4315,4391,4464,4551,4622,4693,4771,4851,4937,5021,5093,5175,5256,5340,5417,5504,5589,5668,5743,5816,5893,5971,6044,6122,6370,6618,6821,7012,7207,7390,7592,7798,7999,8188,8387,8574,8600,8635,9107,9525,9903,10080,10259,10442,10807,11248" | |||
}, | |||
"to": { | |||
"startLines": "122,123,555,588,589,590,591,592,612,639,640,697,701,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,738,773,776,777,778,780,781,782,831,836,837,838,839,841,842,843,844,845,846,847,850,851,852,853,859,863,2706,2709,2720,2723,2734,2738,3072,3075,3078,3081,3324,3354,3355,3363,3392,3399,3402,3502,3505,4453", | |||
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", | |||
"startOffsets": "7270,7333,36198,38159,38207,38256,38304,38353,39321,40649,40703,44515,44926,45208,45331,45427,45516,45624,45741,45861,45981,46091,46263,46366,46473,46576,46687,46856,47024,47141,47245,47358,47466,47579,47670,47781,47950,48048,48175,48300,48395,48929,53000,53383,53456,53543,53662,53733,53811,61569,61985,62069,62141,62223,62357,62441,62518,62605,62690,62769,62844,63058,63135,63213,63286,63806,64054,183845,184048,184557,184752,185346,185548,208260,208461,208650,208849,226070,228252,228287,228759,230319,230697,230874,239115,239298,300840", | |||
"endLines": "122,123,555,588,589,590,591,592,612,639,640,697,701,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,738,773,776,777,778,780,781,782,831,836,837,838,839,841,842,843,844,845,846,847,850,851,852,853,862,866,2708,2711,2722,2725,2737,2741,3074,3077,3080,3083,3324,3354,3362,3369,3398,3401,3404,3504,3510,4462", | |||
"endColumns": "62,62,50,47,48,47,48,48,42,53,47,72,74,122,95,88,107,116,119,119,109,171,102,106,102,110,168,167,116,103,112,107,112,90,110,168,97,126,124,94,106,79,75,72,86,70,70,77,79,85,83,71,81,80,83,76,86,84,78,74,72,76,77,72,77,10,10,12,12,12,12,10,10,12,12,12,12,25,34,10,10,10,10,10,12,12,10", | |||
"endOffsets": "7328,7391,36244,38202,38251,38299,38348,38397,39359,40698,40746,44583,44996,45326,45422,45511,45619,45736,45856,45976,46086,46258,46361,46468,46571,46682,46851,47019,47136,47240,47353,47461,47574,47665,47776,47945,48043,48170,48295,48390,48497,49004,53071,53451,53538,53609,53728,53806,53886,61650,62064,62136,62218,62299,62436,62513,62600,62685,62764,62839,62912,63130,63208,63281,63359,64049,64297,184043,184234,184747,184930,185543,185749,208456,208645,208844,209031,226091,228282,228754,229172,230692,230869,231048,239293,239658,301276" | |||
} | |||
}, | |||
{ | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\089d66bca93634442a5ff75bd2e7255b\\cardview-1.0.0\\res\\values\\values.xml", | |||
"from": { | |||
@@ -3137,25 +3156,6 @@ | |||
"endOffsets": "3241,23433,23481,23537,24223,24299,24371,38884,422129" | |||
} | |||
}, | |||
{ | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\08ad45841fe76d6637a7f6f52fe715fb\\jetified-react-native-0.62.2\\res\\values\\values.xml", | |||
"from": { | |||
"startLines": "2,3,4,5,6,7,8,9,10,11,12,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,73,77,80,83,86,89,93,97,100,103,106,109,110,111,119,126,133,136,139,142,148", | |||
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", | |||
"startOffsets": "100,163,226,277,325,374,422,471,520,563,617,798,871,946,1069,1165,1254,1362,1479,1599,1719,1829,2001,2104,2211,2314,2425,2594,2762,2879,2983,3096,3204,3317,3408,3519,3688,3786,3913,4038,4133,4240,4320,4396,4469,4556,4627,4698,4776,4856,4942,5026,5098,5180,5261,5345,5422,5509,5594,5673,5748,5821,5898,5976,6049,6127,6375,6623,6826,7017,7212,7395,7597,7803,8004,8193,8392,8579,8605,8640,9112,9530,9908,10085,10264,10447,10812", | |||
"endLines": "2,3,4,5,6,7,8,9,10,11,12,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,72,76,79,82,85,88,92,96,99,102,105,108,109,110,118,125,132,135,138,141,147,157", | |||
"endColumns": "62,62,50,47,48,47,48,48,42,53,47,72,74,122,95,88,107,116,119,119,109,171,102,106,102,110,168,167,116,103,112,107,112,90,110,168,97,126,124,94,106,79,75,72,86,70,70,77,79,85,83,71,81,80,83,76,86,84,78,74,72,76,77,72,77,10,10,12,12,12,12,10,10,12,12,12,12,25,34,10,10,10,10,10,12,12,10", | |||
"endOffsets": "158,221,272,320,369,417,466,515,558,612,660,866,941,1064,1160,1249,1357,1474,1594,1714,1824,1996,2099,2206,2309,2420,2589,2757,2874,2978,3091,3199,3312,3403,3514,3683,3781,3908,4033,4128,4235,4315,4391,4464,4551,4622,4693,4771,4851,4937,5021,5093,5175,5256,5340,5417,5504,5589,5668,5743,5816,5893,5971,6044,6122,6370,6618,6821,7012,7207,7390,7592,7798,7999,8188,8387,8574,8600,8635,9107,9525,9903,10080,10259,10442,10807,11248" | |||
}, | |||
"to": { | |||
"startLines": "122,123,555,588,589,590,591,592,612,639,640,697,701,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,738,773,776,777,778,780,781,782,831,836,837,838,839,841,842,843,844,845,846,847,850,851,852,853,859,863,2706,2709,2720,2723,2734,2738,3072,3075,3078,3081,3324,3354,3355,3363,3392,3399,3402,3502,3505,4453", | |||
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", | |||
"startOffsets": "7270,7333,36198,38159,38207,38256,38304,38353,39321,40649,40703,44515,44926,45208,45331,45427,45516,45624,45741,45861,45981,46091,46263,46366,46473,46576,46687,46856,47024,47141,47245,47358,47466,47579,47670,47781,47950,48048,48175,48300,48395,48929,53000,53383,53456,53543,53662,53733,53811,61569,61985,62069,62141,62223,62357,62441,62518,62605,62690,62769,62844,63058,63135,63213,63286,63806,64054,183845,184048,184557,184752,185346,185548,208260,208461,208650,208849,226070,228252,228287,228759,230319,230697,230874,239115,239298,300840", | |||
"endLines": "122,123,555,588,589,590,591,592,612,639,640,697,701,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,738,773,776,777,778,780,781,782,831,836,837,838,839,841,842,843,844,845,846,847,850,851,852,853,862,866,2708,2711,2722,2725,2737,2741,3074,3077,3080,3083,3324,3354,3362,3369,3398,3401,3404,3504,3510,4462", | |||
"endColumns": "62,62,50,47,48,47,48,48,42,53,47,72,74,122,95,88,107,116,119,119,109,171,102,106,102,110,168,167,116,103,112,107,112,90,110,168,97,126,124,94,106,79,75,72,86,70,70,77,79,85,83,71,81,80,83,76,86,84,78,74,72,76,77,72,77,10,10,12,12,12,12,10,10,12,12,12,12,25,34,10,10,10,10,10,12,12,10", | |||
"endOffsets": "7328,7391,36244,38202,38251,38299,38348,38397,39359,40698,40746,44583,44996,45326,45422,45511,45619,45736,45856,45976,46086,46258,46361,46468,46571,46682,46851,47019,47136,47240,47353,47461,47574,47665,47776,47945,48043,48170,48295,48390,48497,49004,53071,53451,53538,53609,53728,53806,53886,61650,62064,62136,62218,62299,62436,62513,62600,62685,62764,62839,62912,63130,63208,63281,63359,64049,64297,184043,184234,184747,184930,185543,185749,208456,208645,208844,209031,226091,228282,228754,229172,230692,230869,231048,239293,239658,301276" | |||
} | |||
}, | |||
{ | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\55afd27e63b4200e63b4dc6d6f500fac\\lottie-3.4.0\\res\\values\\values.xml", | |||
"from": { | |||
@@ -257,6 +257,25 @@ | |||
"endOffsets": "1389,1709,1811,4808,5196,5255,5317,5689,5750,5825,5901,5978,6056,6141,6223,6299,6375,6452,6530,6636,6742,6821,6901,6958,7016,10559,10634,10699,10765,10825,10886,10958,11031,11098,11166,11225,11284,11343,11402,11461,11515,11569,11622,11676,11730,11784,11838,12740,12819,12892,12966,13037,13109,13181,13254,13311,13369,13442,13516,13590,13665,13737,13810,13880,13951,14011,14072,14178,14247,14317,14391,14467,14531,14608,14684,14761,14826,14895,14972,15047,15116,15184,15261,15327,15388,15485,15550,15619,15718,15789,15848,15906,15963,16022,16086,16157,16229,16301,16373,16445,16512,16580,16648,16707,16770,16834,16924,17015,17075,17141,17208,17274,17344,17408,17461,17528,17589,17656,17769,17827,17890,17955,18020,18095,18168,18240,18289,18350,18411,18472,18534,18598,18662,18726,18791,18854,18914,18975,19041,19100,19160,19222,19293,19353,19421,23287,23374,23627,23714,23802,23884,23967,24057,24148,35579,35637,35682,35748,35812,35869,35926,35980,38454,38502,38551,38602,38818,39267,39316,39595,40596,40874,40936,41124,41181,42718,42788,42866,42920,42990,43075,43123,43169,43230,43293,43359,43423,43494,43557,43622,43686,43747,43808,43860,43933,44007,44076,44151,44225,44299,44440,44510,62352,63437,63527,63615,63711,63801,65623,65712,65959,66240,66492,67191,67584,69416,69638,69860,70136,70363,70593,70823,71053,71283,71510,71929,72155,72580,72810,73238,73457,73740,73948,74079,74306,74732,74957,75384,75605,76030,76150,76426,76727,77051,77342,77656,77793,77924,78029,78271,78438,78642,78850,79121,79233,79345,79450,79567,81721,81867,82007,82093,82441,82529,82775,83193,83442,83524,83622,84239,84339,84591,85015,85270,85364,89351,89588,91640,91882,91984,92237,94421,140594,142110,153333,154861,156618,157244,157664,158725,159990,160246,160482,161029,161523,162128,162326,162906,163470,163845,163963,164501,164658,164854,165127,165383,165553,165694,165758,166123,166490,167166,167430,167768,168121,168215,168401,168707,168969,169094,169221,169460,169671,169790,169983,170160,170615,170796,170918,171177,171290,171477,171579,171686,171815,172090,172598,173094,173971,174265,174835,174984,175716,175888,175972,176308,176400,176678,194693,200245,200651,201281,201895,201986,202099,202328,202488,202640,202811,202977,203146,203313,203476,203719,203889,204062,204233,204507,204706,204911,205241,212557,212653,212749,212847,212947,213049,213151,213253,213355,213457,213557,213653,213765,213894,214017,214148,214279,214377,214491,214585,214725,214859,214955,215067,215167,215283,215379,215491,215591,215731,215867,216031,216161,216319,216469,216610,216754,216889,217001,217151,217279,217407,217543,217675,217805,217935,218047,218187,225783,225927,226065,226157,226247,226323,226427,226517,226619,226727,226835,226935,227015,227107,227205,227315,227393,227499,227591,227695,227805,227927,228090,228247,239738,239838,239928,240038,240128,240369,240463,240569,240661,251248,251360,251474,251590,251706,251800,251914,252026,252128,252248,252370,252452,252556,252676,252802,252900,252994,253082,253194,253310,253432,253544,253719,253835,253921,254013,254125,254249,254316,254442,254510,254638,254782,254910,254979,255074,255189,255302,255401,255510,255621,255732,255833,255938,256038,256168,256259,256382,256476,256588,256674,256778,256874,256962,257080,257184,257288,257414,257502,257610,257710,257800,257910,257994,258096,258180,258234,258298,258404,258490,258600,258684,258804,306420,306538,306653,306785,307500,308192,308709,317320,318853,319241,323976,344238,352857,369027,375879,395238,395500,395856,407904,414686,415820,419335,419558,420603,424551,432392,438146,444690,461125,462658,464067,464651" | |||
} | |||
}, | |||
{ | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\9bc87fc96e3c0f761f8fae877f4f5f3f\\jetified-react-native-0.62.2\\res\\values\\values.xml", | |||
"from": { | |||
"startLines": "2,3,4,5,6,7,8,9,10,11,12,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,73,77,80,83,86,89,93,97,100,103,106,109,110,111,119,126,133,136,139,142,148", | |||
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", | |||
"startOffsets": "100,163,226,277,325,374,422,471,520,563,617,798,871,946,1069,1165,1254,1362,1479,1599,1719,1829,2001,2104,2211,2314,2425,2594,2762,2879,2983,3096,3204,3317,3408,3519,3688,3786,3913,4038,4133,4240,4320,4396,4469,4556,4627,4698,4776,4856,4942,5026,5098,5180,5261,5345,5422,5509,5594,5673,5748,5821,5898,5976,6049,6127,6375,6623,6826,7017,7212,7395,7597,7803,8004,8193,8392,8579,8605,8640,9112,9530,9908,10085,10264,10447,10812", | |||
"endLines": "2,3,4,5,6,7,8,9,10,11,12,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,72,76,79,82,85,88,92,96,99,102,105,108,109,110,118,125,132,135,138,141,147,157", | |||
"endColumns": "62,62,50,47,48,47,48,48,42,53,47,72,74,122,95,88,107,116,119,119,109,171,102,106,102,110,168,167,116,103,112,107,112,90,110,168,97,126,124,94,106,79,75,72,86,70,70,77,79,85,83,71,81,80,83,76,86,84,78,74,72,76,77,72,77,10,10,12,12,12,12,10,10,12,12,12,12,25,34,10,10,10,10,10,12,12,10", | |||
"endOffsets": "158,221,272,320,369,417,466,515,558,612,660,866,941,1064,1160,1249,1357,1474,1594,1714,1824,1996,2099,2206,2309,2420,2589,2757,2874,2978,3091,3199,3312,3403,3514,3683,3781,3908,4033,4128,4235,4315,4391,4464,4551,4622,4693,4771,4851,4937,5021,5093,5175,5256,5340,5417,5504,5589,5668,5743,5816,5893,5971,6044,6122,6370,6618,6821,7012,7207,7390,7592,7798,7999,8188,8387,8574,8600,8635,9107,9525,9903,10080,10259,10442,10807,11248" | |||
}, | |||
"to": { | |||
"startLines": "122,123,555,588,589,590,591,592,612,639,640,697,701,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,738,773,776,777,778,780,781,782,831,836,837,838,839,841,842,843,844,845,846,847,850,851,852,853,859,863,2706,2709,2720,2723,2734,2738,3072,3075,3078,3081,3324,3354,3355,3363,3392,3399,3402,3502,3505,4453", | |||
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", | |||
"startOffsets": "7270,7333,36198,38159,38207,38256,38304,38353,39321,40649,40703,44515,44926,45208,45331,45427,45516,45624,45741,45861,45981,46091,46263,46366,46473,46576,46687,46856,47024,47141,47245,47358,47466,47579,47670,47781,47950,48048,48175,48300,48395,48929,53000,53383,53456,53543,53662,53733,53811,61569,61985,62069,62141,62223,62357,62441,62518,62605,62690,62769,62844,63058,63135,63213,63286,63806,64054,183845,184048,184557,184752,185346,185548,208260,208461,208650,208849,226070,228252,228287,228759,230319,230697,230874,239115,239298,300840", | |||
"endLines": "122,123,555,588,589,590,591,592,612,639,640,697,701,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,738,773,776,777,778,780,781,782,831,836,837,838,839,841,842,843,844,845,846,847,850,851,852,853,862,866,2708,2711,2722,2725,2737,2741,3074,3077,3080,3083,3324,3354,3362,3369,3398,3401,3404,3504,3510,4462", | |||
"endColumns": "62,62,50,47,48,47,48,48,42,53,47,72,74,122,95,88,107,116,119,119,109,171,102,106,102,110,168,167,116,103,112,107,112,90,110,168,97,126,124,94,106,79,75,72,86,70,70,77,79,85,83,71,81,80,83,76,86,84,78,74,72,76,77,72,77,10,10,12,12,12,12,10,10,12,12,12,12,25,34,10,10,10,10,10,12,12,10", | |||
"endOffsets": "7328,7391,36244,38202,38251,38299,38348,38397,39359,40698,40746,44583,44996,45326,45422,45511,45619,45736,45856,45976,46086,46258,46361,46468,46571,46682,46851,47019,47136,47240,47353,47461,47574,47665,47776,47945,48043,48170,48295,48390,48497,49004,53071,53451,53538,53609,53728,53806,53886,61650,62064,62136,62218,62299,62436,62513,62600,62685,62764,62839,62912,63130,63208,63281,63359,64049,64297,184043,184234,184747,184930,185543,185749,208456,208645,208844,209031,226091,228282,228754,229172,230692,230869,231048,239293,239658,301276" | |||
} | |||
}, | |||
{ | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\089d66bca93634442a5ff75bd2e7255b\\cardview-1.0.0\\res\\values\\values.xml", | |||
"from": { | |||
@@ -532,25 +551,6 @@ | |||
"endOffsets": "3241,23433,23481,23537,24223,24299,24371,38884,422129" | |||
} | |||
}, | |||
{ | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\08ad45841fe76d6637a7f6f52fe715fb\\jetified-react-native-0.62.2\\res\\values\\values.xml", | |||
"from": { | |||
"startLines": "2,3,4,5,6,7,8,9,10,11,12,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,73,77,80,83,86,89,93,97,100,103,106,109,110,111,119,126,133,136,139,142,148", | |||
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", | |||
"startOffsets": "100,163,226,277,325,374,422,471,520,563,617,798,871,946,1069,1165,1254,1362,1479,1599,1719,1829,2001,2104,2211,2314,2425,2594,2762,2879,2983,3096,3204,3317,3408,3519,3688,3786,3913,4038,4133,4240,4320,4396,4469,4556,4627,4698,4776,4856,4942,5026,5098,5180,5261,5345,5422,5509,5594,5673,5748,5821,5898,5976,6049,6127,6375,6623,6826,7017,7212,7395,7597,7803,8004,8193,8392,8579,8605,8640,9112,9530,9908,10085,10264,10447,10812", | |||
"endLines": "2,3,4,5,6,7,8,9,10,11,12,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,72,76,79,82,85,88,92,96,99,102,105,108,109,110,118,125,132,135,138,141,147,157", | |||
"endColumns": "62,62,50,47,48,47,48,48,42,53,47,72,74,122,95,88,107,116,119,119,109,171,102,106,102,110,168,167,116,103,112,107,112,90,110,168,97,126,124,94,106,79,75,72,86,70,70,77,79,85,83,71,81,80,83,76,86,84,78,74,72,76,77,72,77,10,10,12,12,12,12,10,10,12,12,12,12,25,34,10,10,10,10,10,12,12,10", | |||
"endOffsets": "158,221,272,320,369,417,466,515,558,612,660,866,941,1064,1160,1249,1357,1474,1594,1714,1824,1996,2099,2206,2309,2420,2589,2757,2874,2978,3091,3199,3312,3403,3514,3683,3781,3908,4033,4128,4235,4315,4391,4464,4551,4622,4693,4771,4851,4937,5021,5093,5175,5256,5340,5417,5504,5589,5668,5743,5816,5893,5971,6044,6122,6370,6618,6821,7012,7207,7390,7592,7798,7999,8188,8387,8574,8600,8635,9107,9525,9903,10080,10259,10442,10807,11248" | |||
}, | |||
"to": { | |||
"startLines": "122,123,555,588,589,590,591,592,612,639,640,697,701,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,738,773,776,777,778,780,781,782,831,836,837,838,839,841,842,843,844,845,846,847,850,851,852,853,859,863,2706,2709,2720,2723,2734,2738,3072,3075,3078,3081,3324,3354,3355,3363,3392,3399,3402,3502,3505,4453", | |||
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", | |||
"startOffsets": "7270,7333,36198,38159,38207,38256,38304,38353,39321,40649,40703,44515,44926,45208,45331,45427,45516,45624,45741,45861,45981,46091,46263,46366,46473,46576,46687,46856,47024,47141,47245,47358,47466,47579,47670,47781,47950,48048,48175,48300,48395,48929,53000,53383,53456,53543,53662,53733,53811,61569,61985,62069,62141,62223,62357,62441,62518,62605,62690,62769,62844,63058,63135,63213,63286,63806,64054,183845,184048,184557,184752,185346,185548,208260,208461,208650,208849,226070,228252,228287,228759,230319,230697,230874,239115,239298,300840", | |||
"endLines": "122,123,555,588,589,590,591,592,612,639,640,697,701,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,738,773,776,777,778,780,781,782,831,836,837,838,839,841,842,843,844,845,846,847,850,851,852,853,862,866,2708,2711,2722,2725,2737,2741,3074,3077,3080,3083,3324,3354,3362,3369,3398,3401,3404,3504,3510,4462", | |||
"endColumns": "62,62,50,47,48,47,48,48,42,53,47,72,74,122,95,88,107,116,119,119,109,171,102,106,102,110,168,167,116,103,112,107,112,90,110,168,97,126,124,94,106,79,75,72,86,70,70,77,79,85,83,71,81,80,83,76,86,84,78,74,72,76,77,72,77,10,10,12,12,12,12,10,10,12,12,12,12,25,34,10,10,10,10,10,12,12,10", | |||
"endOffsets": "7328,7391,36244,38202,38251,38299,38348,38397,39359,40698,40746,44583,44996,45326,45422,45511,45619,45736,45856,45976,46086,46258,46361,46468,46571,46682,46851,47019,47136,47240,47353,47461,47574,47665,47776,47945,48043,48170,48295,48390,48497,49004,53071,53451,53538,53609,53728,53806,53886,61650,62064,62136,62218,62299,62436,62513,62600,62685,62764,62839,62912,63130,63208,63281,63359,64049,64297,184043,184234,184747,184930,185543,185749,208456,208645,208844,209031,226091,228282,228754,229172,230692,230869,231048,239293,239658,301276" | |||
} | |||
}, | |||
{ | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\55afd27e63b4200e63b4dc6d6f500fac\\lottie-3.4.0\\res\\values\\values.xml", | |||
"from": { | |||
@@ -25,7 +25,7 @@ | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\anim_catalyst_slide_down.xml.flat", | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\08ad45841fe76d6637a7f6f52fe715fb\\jetified-react-native-0.62.2\\res\\anim\\catalyst_slide_down.xml" | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\9bc87fc96e3c0f761f8fae877f4f5f3f\\jetified-react-native-0.62.2\\res\\anim\\catalyst_slide_down.xml" | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat", | |||
@@ -47,6 +47,10 @@ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\layout_design_layout_snackbar_include.xml.flat", | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f650ff4f121bc418\\material-1.1.0\\res\\layout\\design_layout_snackbar_include.xml" | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-mdpi_src_assets_icons_call.png.flat", | |||
"source": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\generated\\res\\react\\release\\drawable-mdpi\\src_assets_icons_call.png" | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\mipmap-mdpi_ic_launcher.png.flat", | |||
"source": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\src\\main\\res\\mipmap-mdpi\\ic_launcher.png" | |||
@@ -97,7 +101,7 @@ | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\anim_catalyst_push_up_out.xml.flat", | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\08ad45841fe76d6637a7f6f52fe715fb\\jetified-react-native-0.62.2\\res\\anim\\catalyst_push_up_out.xml" | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\9bc87fc96e3c0f761f8fae877f4f5f3f\\jetified-react-native-0.62.2\\res\\anim\\catalyst_push_up_out.xml" | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\layout_abc_action_menu_item_layout.xml.flat", | |||
@@ -607,6 +611,10 @@ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable_abc_list_divider_material.xml.flat", | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable\\abc_list_divider_material.xml" | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-mdpi_src_assets_icons_person.png.flat", | |||
"source": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\generated\\res\\react\\release\\drawable-mdpi\\src_assets_icons_person.png" | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat", | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable-xhdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png" | |||
@@ -781,7 +789,7 @@ | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable_redbox_top_border_background.xml.flat", | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\08ad45841fe76d6637a7f6f52fe715fb\\jetified-react-native-0.62.2\\res\\drawable\\redbox_top_border_background.xml" | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\9bc87fc96e3c0f761f8fae877f4f5f3f\\jetified-react-native-0.62.2\\res\\drawable\\redbox_top_border_background.xml" | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\mipmap-xxhdpi_ic_launcher_round.png.flat", | |||
@@ -789,7 +797,7 @@ | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\anim_catalyst_fade_in.xml.flat", | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\08ad45841fe76d6637a7f6f52fe715fb\\jetified-react-native-0.62.2\\res\\anim\\catalyst_fade_in.xml" | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\9bc87fc96e3c0f761f8fae877f4f5f3f\\jetified-react-native-0.62.2\\res\\anim\\catalyst_fade_in.xml" | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\color_mtrl_tabs_legacy_text_color_selector.xml.flat", | |||
@@ -809,7 +817,7 @@ | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\layout_redbox_view.xml.flat", | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\08ad45841fe76d6637a7f6f52fe715fb\\jetified-react-native-0.62.2\\res\\layout\\redbox_view.xml" | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\9bc87fc96e3c0f761f8fae877f4f5f3f\\jetified-react-native-0.62.2\\res\\layout\\redbox_view.xml" | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable_design_snackbar_background.xml.flat", | |||
@@ -865,7 +873,7 @@ | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\xml_rn_dev_preferences.xml.flat", | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\08ad45841fe76d6637a7f6f52fe715fb\\jetified-react-native-0.62.2\\res\\xml\\rn_dev_preferences.xml" | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\9bc87fc96e3c0f761f8fae877f4f5f3f\\jetified-react-native-0.62.2\\res\\xml\\rn_dev_preferences.xml" | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\animator_mtrl_extended_fab_state_list_animator.xml.flat", | |||
@@ -907,6 +915,10 @@ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\color_mtrl_tabs_ripple_color.xml.flat", | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f650ff4f121bc418\\material-1.1.0\\res\\color\\mtrl_tabs_ripple_color.xml" | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-mdpi_src_assets_icons_file.png.flat", | |||
"source": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\generated\\res\\react\\release\\drawable-mdpi\\src_assets_icons_file.png" | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-v21_design_password_eye.xml.flat", | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f650ff4f121bc418\\material-1.1.0\\res\\drawable-v21\\design_password_eye.xml" | |||
@@ -1181,7 +1193,7 @@ | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\layout_fps_view.xml.flat", | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\08ad45841fe76d6637a7f6f52fe715fb\\jetified-react-native-0.62.2\\res\\layout\\fps_view.xml" | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\9bc87fc96e3c0f761f8fae877f4f5f3f\\jetified-react-native-0.62.2\\res\\layout\\fps_view.xml" | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\color_abc_secondary_text_material_dark.xml.flat", | |||
@@ -1191,6 +1203,10 @@ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-xhdpi-v4_rzp_logo.png.flat", | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\b8876970d4ba7a2f859749f220fb8a33\\checkout-1.5.12\\res\\drawable-xhdpi-v4\\rzp_logo.png" | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\raw_src_assets_json_pharmacy.json.flat", | |||
"source": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\generated\\res\\react\\release\\raw\\src_assets_json_pharmacy.json" | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable_abc_ic_go_search_api_material.xml.flat", | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable\\abc_ic_go_search_api_material.xml" | |||
@@ -1335,14 +1351,14 @@ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat", | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable-xxxhdpi-v4\\abc_ic_star_half_black_16dp.png" | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-mdpi_src_assets_img_banner1.jpeg.flat", | |||
"source": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\generated\\res\\react\\release\\drawable-mdpi\\src_assets_img_banner1.jpeg" | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-mdpi_src_assets_img_orthopedics.png.flat", | |||
"source": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\generated\\res\\react\\release\\drawable-mdpi\\src_assets_img_orthopedics.png" | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-mdpi_src_assets_img_banner1.jpeg.flat", | |||
"source": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\generated\\res\\react\\release\\drawable-mdpi\\src_assets_img_banner1.jpeg" | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\color_abc_tint_seek_thumb.xml.flat", | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\color\\abc_tint_seek_thumb.xml" | |||
@@ -1755,6 +1771,10 @@ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat", | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable-hdpi-v4\\abc_list_longpressed_holo.9.png" | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-mdpi_src_assets_icons_pass.png.flat", | |||
"source": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\generated\\res\\react\\release\\drawable-mdpi\\src_assets_icons_pass.png" | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat", | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable-xxhdpi-v4\\abc_ic_star_black_16dp.png" | |||
@@ -1877,7 +1897,7 @@ | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\anim_catalyst_slide_up.xml.flat", | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\08ad45841fe76d6637a7f6f52fe715fb\\jetified-react-native-0.62.2\\res\\anim\\catalyst_slide_up.xml" | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\9bc87fc96e3c0f761f8fae877f4f5f3f\\jetified-react-native-0.62.2\\res\\anim\\catalyst_slide_up.xml" | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat", | |||
@@ -2029,7 +2049,7 @@ | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\anim_catalyst_fade_out.xml.flat", | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\08ad45841fe76d6637a7f6f52fe715fb\\jetified-react-native-0.62.2\\res\\anim\\catalyst_fade_out.xml" | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\9bc87fc96e3c0f761f8fae877f4f5f3f\\jetified-react-native-0.62.2\\res\\anim\\catalyst_fade_out.xml" | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\layout_abc_activity_chooser_view_list_item.xml.flat", | |||
@@ -2081,7 +2101,7 @@ | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\layout_dev_loading_view.xml.flat", | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\08ad45841fe76d6637a7f6f52fe715fb\\jetified-react-native-0.62.2\\res\\layout\\dev_loading_view.xml" | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\9bc87fc96e3c0f761f8fae877f4f5f3f\\jetified-react-native-0.62.2\\res\\layout\\dev_loading_view.xml" | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\layout_select_dialog_multichoice_material.xml.flat", | |||
@@ -2131,6 +2151,10 @@ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\anim_abc_tooltip_exit.xml.flat", | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\anim\\abc_tooltip_exit.xml" | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-mdpi_src_assets_icons_home.png.flat", | |||
"source": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\generated\\res\\react\\release\\drawable-mdpi\\src_assets_icons_home.png" | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\color_mtrl_tabs_colored_ripple_color.xml.flat", | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f650ff4f121bc418\\material-1.1.0\\res\\color\\mtrl_tabs_colored_ripple_color.xml" | |||
@@ -2163,6 +2187,10 @@ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat", | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable-xhdpi-v4\\abc_btn_check_to_on_mtrl_015.png" | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-mdpi_src_assets_icons_bag.png.flat", | |||
"source": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\generated\\res\\react\\release\\drawable-mdpi\\src_assets_icons_bag.png" | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat", | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable-mdpi-v4\\abc_popup_background_mtrl_mult.9.png" | |||
@@ -2471,6 +2499,10 @@ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat", | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable-xxxhdpi-v4\\abc_text_select_handle_left_mtrl_dark.png" | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-mdpi_src_assets_icons_list.png.flat", | |||
"source": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\generated\\res\\react\\release\\drawable-mdpi\\src_assets_icons_list.png" | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat", | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable-mdpi-v4\\abc_switch_track_mtrl_alpha.9.png" | |||
@@ -2529,7 +2561,7 @@ | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\layout_redbox_item_title.xml.flat", | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\08ad45841fe76d6637a7f6f52fe715fb\\jetified-react-native-0.62.2\\res\\layout\\redbox_item_title.xml" | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\9bc87fc96e3c0f761f8fae877f4f5f3f\\jetified-react-native-0.62.2\\res\\layout\\redbox_item_title.xml" | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat", | |||
@@ -2661,7 +2693,7 @@ | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\anim_catalyst_push_up_in.xml.flat", | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\08ad45841fe76d6637a7f6f52fe715fb\\jetified-react-native-0.62.2\\res\\anim\\catalyst_push_up_in.xml" | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\9bc87fc96e3c0f761f8fae877f4f5f3f\\jetified-react-native-0.62.2\\res\\anim\\catalyst_push_up_in.xml" | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-mdpi_src_assets_img_doctorthree.jpg.flat", | |||
@@ -2769,7 +2801,7 @@ | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\layout_redbox_item_frame.xml.flat", | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\08ad45841fe76d6637a7f6f52fe715fb\\jetified-react-native-0.62.2\\res\\layout\\redbox_item_frame.xml" | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\9bc87fc96e3c0f761f8fae877f4f5f3f\\jetified-react-native-0.62.2\\res\\layout\\redbox_item_frame.xml" | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat", | |||
@@ -3087,6 +3119,10 @@ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-hdpi-v4_googleg_standard_color_18.png.flat", | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\b8fd63df67571416f69f99835f5b5882\\play-services-base-17.2.1\\res\\drawable-hdpi-v4\\googleg_standard_color_18.png" | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-mdpi_src_assets_icons_email.png.flat", | |||
"source": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\generated\\res\\react\\release\\drawable-mdpi\\src_assets_icons_email.png" | |||
}, | |||
{ | |||
"merged": "D:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat", | |||
"source": "C:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable-xxhdpi-v4\\abc_switch_track_mtrl_alpha.9.png" | |||
@@ -1,4 +1,4 @@ | |||
#Fri Dec 03 18:32:07 IST 2021 | |||
#Sat Dec 25 16:30:00 IST 2021 | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable\\abc_list_selector_background_transition_holo_light.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable_abc_list_selector_background_transition_holo_light.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f650ff4f121bc418\\material-1.1.0\\res\\animator\\mtrl_fab_transformation_sheet_collapse_spec.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\animator_mtrl_fab_transformation_sheet_collapse_spec.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\b8876970d4ba7a2f859749f220fb8a33\\checkout-1.5.12\\res\\drawable-xxxhdpi-v4\\rzp_logo.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-xxxhdpi-v4_rzp_logo.png.flat | |||
@@ -11,6 +11,7 @@ D\:\\downlooad\\desihealth_customer\ (1)\\android\\app\\build\\generated\\res\\r | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f650ff4f121bc418\\material-1.1.0\\res\\color\\mtrl_choice_chip_background_color.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\color_mtrl_choice_chip_background_color.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable-v21\\abc_list_divider_material.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-v21_abc_list_divider_material.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\color-v23\\abc_btn_colored_borderless_text_material.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\color-v23_abc_btn_colored_borderless_text_material.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\9bc87fc96e3c0f761f8fae877f4f5f3f\\jetified-react-native-0.62.2\\res\\anim\\catalyst_push_up_out.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\anim_catalyst_push_up_out.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f650ff4f121bc418\\material-1.1.0\\res\\anim\\design_bottom_sheet_slide_in.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\anim_design_bottom_sheet_slide_in.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f650ff4f121bc418\\material-1.1.0\\res\\anim\\mtrl_bottom_sheet_slide_out.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\anim_mtrl_bottom_sheet_slide_out.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\d8e01ba65da57166ae52106351d3fd17\\core-1.2.0\\res\\drawable-v21\\notification_action_background.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-v21_notification_action_background.xml.flat | |||
@@ -99,6 +100,7 @@ C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f00 | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f650ff4f121bc418\\material-1.1.0\\res\\color\\mtrl_btn_text_color_selector.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\color_mtrl_btn_text_color_selector.xml.flat | |||
D\:\\downlooad\\desihealth_customer\ (1)\\android\\app\\build\\generated\\res\\react\\release\\drawable-mdpi\\src_assets_img_trust.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-mdpi_src_assets_img_trust.png.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\interpolator\\btn_checkbox_checked_mtrl_animation_interpolator_0.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\interpolator_btn_checkbox_checked_mtrl_animation_interpolator_0.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\9bc87fc96e3c0f761f8fae877f4f5f3f\\jetified-react-native-0.62.2\\res\\layout\\redbox_item_frame.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\layout_redbox_item_frame.xml.flat | |||
D\:\\downlooad\\desihealth_customer\ (1)\\node_modules\\quickblox-react-native-sdk\\android\\build\\intermediates\\packaged_res\\release\\mipmap-xxhdpi-v4\\ic_notification.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\mipmap-xxhdpi-v4_ic_notification.png.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\b8fd63df67571416f69f99835f5b5882\\play-services-base-17.2.1\\res\\drawable\\common_google_signin_btn_text_dark_focused.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable_common_google_signin_btn_text_dark_focused.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\d8e01ba65da57166ae52106351d3fd17\\core-1.2.0\\res\\drawable\\notification_tile_bg.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable_notification_tile_bg.xml.flat | |||
@@ -117,6 +119,7 @@ C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f00 | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\43b8883aec87937676c25668593ea22a\\jetified-android-maps-utils-0.5\\res\\layout\\amu_webview.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\layout_amu_webview.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f650ff4f121bc418\\material-1.1.0\\res\\color\\mtrl_chip_background_color.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\color_mtrl_chip_background_color.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f650ff4f121bc418\\material-1.1.0\\res\\drawable\\ic_edit_black_24dp.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable_ic_edit_black_24dp.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\9bc87fc96e3c0f761f8fae877f4f5f3f\\jetified-react-native-0.62.2\\res\\anim\\catalyst_fade_out.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\anim_catalyst_fade_out.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\ebed2fd239dbd53a85a2d9773fb34cd9\\media-1.0.0\\res\\layout\\notification_template_big_media_custom.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\layout_notification_template_big_media_custom.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\b8876970d4ba7a2f859749f220fb8a33\\checkout-1.5.12\\res\\drawable\\rzp_secured_by_bg.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable_rzp_secured_by_bg.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable-v21\\abc_btn_colored_material.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-v21_abc_btn_colored_material.xml.flat | |||
@@ -138,6 +141,7 @@ C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f65 | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\layout\\abc_list_menu_item_icon.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\layout_abc_list_menu_item_icon.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f650ff4f121bc418\\material-1.1.0\\res\\color\\mtrl_btn_bg_color_selector.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\color_mtrl_btn_bg_color_selector.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable\\abc_dialog_material_background.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable_abc_dialog_material_background.xml.flat | |||
D\:\\downlooad\\desihealth_customer\ (1)\\android\\app\\build\\generated\\res\\react\\release\\drawable-mdpi\\src_assets_icons_home.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-mdpi_src_assets_icons_home.png.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\b8fd63df67571416f69f99835f5b5882\\play-services-base-17.2.1\\res\\drawable-hdpi-v4\\common_google_signin_btn_icon_light_normal_background.9.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-hdpi-v4_common_google_signin_btn_icon_light_normal_background.9.png.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f650ff4f121bc418\\material-1.1.0\\res\\layout\\design_navigation_item_subheader.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\layout_design_navigation_item_subheader.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable-hdpi-v4\\abc_ic_star_black_16dp.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat | |||
@@ -181,6 +185,8 @@ D\:\\downlooad\\desihealth_customer\ (1)\\android\\app\\src\\main\\res\\mipmap-x | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable\\btn_radio_on_to_off_mtrl_animation.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable_btn_radio_on_to_off_mtrl_animation.xml.flat | |||
D\:\\downlooad\\desihealth_customer\ (1)\\android\\app\\build\\generated\\res\\react\\release\\drawable-mdpi\\src_assets_img_banner3.jpeg=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-mdpi_src_assets_img_banner3.jpeg.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable-xxhdpi-v4\\abc_list_selector_disabled_holo_dark.9.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\9bc87fc96e3c0f761f8fae877f4f5f3f\\jetified-react-native-0.62.2\\res\\layout\\dev_loading_view.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\layout_dev_loading_view.xml.flat | |||
D\:\\downlooad\\desihealth_customer\ (1)\\android\\app\\build\\generated\\res\\react\\release\\drawable-mdpi\\src_assets_icons_person.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-mdpi_src_assets_icons_person.png.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable-xxhdpi-v4\\abc_ic_star_half_black_16dp.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable\\abc_btn_borderless_material.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable_abc_btn_borderless_material.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f650ff4f121bc418\\material-1.1.0\\res\\layout\\mtrl_alert_select_dialog_multichoice.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\layout_mtrl_alert_select_dialog_multichoice.xml.flat | |||
@@ -232,6 +238,7 @@ C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f65 | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f650ff4f121bc418\\material-1.1.0\\res\\drawable-v23\\mtrl_popupmenu_background_dark.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-v23_mtrl_popupmenu_background_dark.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f650ff4f121bc418\\material-1.1.0\\res\\layout\\design_layout_snackbar.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\layout_design_layout_snackbar.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f650ff4f121bc418\\material-1.1.0\\res\\color\\mtrl_filled_icon_tint.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\color_mtrl_filled_icon_tint.xml.flat | |||
D\:\\downlooad\\desihealth_customer\ (1)\\android\\app\\build\\generated\\res\\react\\release\\drawable-mdpi\\src_assets_icons_bag.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-mdpi_src_assets_icons_bag.png.flat | |||
D\:\\downlooad\\desihealth_customer\ (1)\\android\\app\\build\\generated\\res\\react\\release\\raw\\node_modules_reactnativestarrating_node_modules_reactnativevectoricons_glyphmaps_materialicons.json=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\raw_node_modules_reactnativestarrating_node_modules_reactnativevectoricons_glyphmaps_materialicons.json.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\43b8883aec87937676c25668593ea22a\\jetified-android-maps-utils-0.5\\res\\raw\\amu_cdata.kml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\raw_amu_cdata.kml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable-ldrtl-xxxhdpi-v17\\abc_spinner_mtrl_am_alpha.9.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat | |||
@@ -276,6 +283,7 @@ C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\b8fd63df67571416f69 | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f650ff4f121bc418\\material-1.1.0\\res\\drawable\\ic_menu_arrow_up_black_24dp.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable_ic_menu_arrow_up_black_24dp.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\color\\abc_background_cache_hint_selector_material_dark.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\color_abc_background_cache_hint_selector_material_dark.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\layout\\select_dialog_multichoice_material.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\layout_select_dialog_multichoice_material.xml.flat | |||
D\:\\downlooad\\desihealth_customer\ (1)\\android\\app\\build\\generated\\res\\react\\release\\raw\\src_assets_json_pharmacy.json=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\raw_src_assets_json_pharmacy.json.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\b8fd63df67571416f69f99835f5b5882\\play-services-base-17.2.1\\res\\drawable\\common_google_signin_btn_text_dark.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable_common_google_signin_btn_text_dark.xml.flat | |||
D\:\\downlooad\\desihealth_customer\ (1)\\android\\app\\build\\generated\\res\\react\\release\\raw\\node_modules_reactnativestarrating_node_modules_reactnativevectoricons_glyphmaps_zocial.json=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\raw_node_modules_reactnativestarrating_node_modules_reactnativevectoricons_glyphmaps_zocial.json.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable-hdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat | |||
@@ -291,6 +299,7 @@ C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f00 | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\b8fd63df67571416f69f99835f5b5882\\play-services-base-17.2.1\\res\\drawable\\common_google_signin_btn_icon_light.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable_common_google_signin_btn_icon_light.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f650ff4f121bc418\\material-1.1.0\\res\\layout\\test_toolbar_elevation.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\layout_test_toolbar_elevation.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\b8876970d4ba7a2f859749f220fb8a33\\checkout-1.5.12\\res\\raw\\rzp_config.json=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\raw_rzp_config.json.flat | |||
D\:\\downlooad\\desihealth_customer\ (1)\\android\\app\\build\\generated\\res\\react\\release\\drawable-mdpi\\src_assets_icons_pass.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-mdpi_src_assets_icons_pass.png.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable-xxxhdpi-v4\\abc_ic_star_black_16dp.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable\\abc_ratingbar_small_material.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable_abc_ratingbar_small_material.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\b8fd63df67571416f69f99835f5b5882\\play-services-base-17.2.1\\res\\drawable\\common_google_signin_btn_icon_light_normal.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable_common_google_signin_btn_icon_light_normal.xml.flat | |||
@@ -369,6 +378,8 @@ C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f65 | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f650ff4f121bc418\\material-1.1.0\\res\\drawable\\design_password_eye.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable_design_password_eye.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\color\\abc_search_url_text.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\color_abc_search_url_text.xml.flat | |||
D\:\\downlooad\\desihealth_customer\ (1)\\android\\app\\build\\generated\\res\\react\\release\\drawable-mdpi\\src_assets_img_doctor_one.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-mdpi_src_assets_img_doctor_one.png.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\9bc87fc96e3c0f761f8fae877f4f5f3f\\jetified-react-native-0.62.2\\res\\xml\\rn_dev_preferences.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\xml_rn_dev_preferences.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\9bc87fc96e3c0f761f8fae877f4f5f3f\\jetified-react-native-0.62.2\\res\\layout\\redbox_item_title.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\layout_redbox_item_title.xml.flat | |||
D\:\\downlooad\\desihealth_customer\ (1)\\android\\app\\build\\generated\\res\\react\\release\\drawable-mdpi\\src_assets_img_weight_loss.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-mdpi_src_assets_img_weight_loss.png.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f650ff4f121bc418\\material-1.1.0\\res\\color\\mtrl_fab_ripple_color.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\color_mtrl_fab_ripple_color.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f650ff4f121bc418\\material-1.1.0\\res\\layout\\mtrl_picker_header_fullscreen.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\layout_mtrl_picker_header_fullscreen.xml.flat | |||
@@ -427,6 +438,7 @@ D\:\\downlooad\\desihealth_customer\ (1)\\android\\app\\build\\generated\\res\\r | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f650ff4f121bc418\\material-1.1.0\\res\\drawable-v21\\avd_hide_password.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-v21_avd_hide_password.xml.flat | |||
D\:\\downlooad\\desihealth_customer\ (1)\\android\\app\\build\\generated\\res\\react\\release\\drawable-mdpi\\src_assets_img_orthopedics.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-mdpi_src_assets_img_orthopedics.png.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f650ff4f121bc418\\material-1.1.0\\res\\color\\mtrl_chip_surface_color.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\color_mtrl_chip_surface_color.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\9bc87fc96e3c0f761f8fae877f4f5f3f\\jetified-react-native-0.62.2\\res\\anim\\catalyst_slide_up.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\anim_catalyst_slide_up.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\d8e01ba65da57166ae52106351d3fd17\\core-1.2.0\\res\\drawable-hdpi-v4\\notification_bg_low_pressed.9.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat | |||
D\:\\downlooad\\desihealth_customer\ (1)\\node_modules\\react-native-image-picker\\android\\build\\intermediates\\packaged_res\\release\\layout\\list_item.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\layout_list_item.xml.flat | |||
D\:\\downlooad\\desihealth_customer\ (1)\\android\\app\\build\\generated\\res\\react\\release\\raw\\app.json=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\raw_app.json.flat | |||
@@ -560,18 +572,20 @@ C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f00 | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable-ldrtl-mdpi-v17\\abc_ic_menu_cut_mtrl_alpha.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\43b8883aec87937676c25668593ea22a\\jetified-android-maps-utils-0.5\\res\\raw\\amu_poly_style_boolean_alpha.kml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\raw_amu_poly_style_boolean_alpha.kml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable-xxxhdpi-v4\\abc_btn_check_to_on_mtrl_015.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat | |||
D\:\\downlooad\\desihealth_customer\ (1)\\android\\app\\build\\generated\\res\\react\\release\\drawable-mdpi\\src_assets_icons_list.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-mdpi_src_assets_icons_list.png.flat | |||
D\:\\downlooad\\desihealth_customer\ (1)\\android\\app\\build\\generated\\res\\react\\release\\drawable-xhdpi\\node_modules_reactnativecheckbox_img_ic_check_box_outline_blank.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-xhdpi_node_modules_reactnativecheckbox_img_ic_check_box_outline_blank.png.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f650ff4f121bc418\\material-1.1.0\\res\\animator\\mtrl_chip_state_list_anim.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\animator_mtrl_chip_state_list_anim.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable-mdpi-v4\\abc_text_select_handle_right_mtrl_light.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\9bc87fc96e3c0f761f8fae877f4f5f3f\\jetified-react-native-0.62.2\\res\\drawable\\redbox_top_border_background.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable_redbox_top_border_background.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable-xhdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f650ff4f121bc418\\material-1.1.0\\res\\drawable-xxxhdpi-v4\\design_ic_visibility.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-xxxhdpi-v4_design_ic_visibility.png.flat | |||
D\:\\downlooad\\desihealth_customer\ (1)\\android\\app\\build\\generated\\res\\react\\release\\drawable-mdpi\\src_assets_img_wallet.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-mdpi_src_assets_img_wallet.png.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\b601bbe384f77134af44600c5521d2cd\\fragment-1.2.1\\res\\anim\\fragment_fast_out_extra_slow_in.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\anim_fragment_fast_out_extra_slow_in.xml.flat | |||
D\:\\downlooad\\desihealth_customer\ (1)\\android\\app\\build\\generated\\res\\react\\release\\drawable-mdpi\\src_assets_img_wallet.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-mdpi_src_assets_img_wallet.png.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f650ff4f121bc418\\material-1.1.0\\res\\drawable-xxxhdpi-v4\\design_ic_visibility.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-xxxhdpi-v4_design_ic_visibility.png.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f650ff4f121bc418\\material-1.1.0\\res\\layout\\design_text_input_start_icon.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\layout_design_text_input_start_icon.xml.flat | |||
D\:\\downlooad\\desihealth_customer\ (1)\\android\\app\\build\\generated\\res\\react\\release\\raw\\node_modules_reactnativevectoricons_glyphmaps_simplelineicons.json=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\raw_node_modules_reactnativevectoricons_glyphmaps_simplelineicons.json.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable\\abc_btn_radio_material.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable_abc_btn_radio_material.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable-mdpi-v4\\abc_ic_menu_share_mtrl_alpha.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat | |||
D\:\\downlooad\\desihealth_customer\ (1)\\android\\app\\build\\generated\\res\\react\\release\\raw\\node_modules_reactnativevectoricons_glyphmaps_simplelineicons.json=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\raw_node_modules_reactnativevectoricons_glyphmaps_simplelineicons.json.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f650ff4f121bc418\\material-1.1.0\\res\\color\\material_on_surface_disabled.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\color_material_on_surface_disabled.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable-mdpi-v4\\abc_ic_menu_share_mtrl_alpha.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f650ff4f121bc418\\material-1.1.0\\res\\drawable\\ic_keyboard_arrow_right_black_24dp.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable_ic_keyboard_arrow_right_black_24dp.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\43b8883aec87937676c25668593ea22a\\jetified-android-maps-utils-0.5\\res\\raw\\amu_inline_style.kml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\raw_amu_inline_style.kml.flat | |||
D\:\\downlooad\\desihealth_customer\ (1)\\android\\app\\build\\generated\\res\\react\\release\\raw\\node_modules_reactnativestarrating_node_modules_reactnativevectoricons_glyphmaps_foundation.json=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\raw_node_modules_reactnativestarrating_node_modules_reactnativevectoricons_glyphmaps_foundation.json.flat | |||
@@ -692,6 +706,7 @@ C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f00 | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\b601bbe384f77134af44600c5521d2cd\\fragment-1.2.1\\res\\anim\\fragment_fade_exit.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\anim_fragment_fade_exit.xml.flat | |||
D\:\\downlooad\\desihealth_customer\ (1)\\android\\app\\src\\main\\res\\mipmap-xxhdpi\\ic_launcher_round.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\mipmap-xxhdpi_ic_launcher_round.png.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f650ff4f121bc418\\material-1.1.0\\res\\color\\mtrl_bottom_nav_ripple_color.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\color_mtrl_bottom_nav_ripple_color.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\9bc87fc96e3c0f761f8fae877f4f5f3f\\jetified-react-native-0.62.2\\res\\layout\\fps_view.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\layout_fps_view.xml.flat | |||
D\:\\downlooad\\desihealth_customer\ (1)\\android\\app\\src\\main\\res\\xml\\network_security_config.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\xml_network_security_config.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\b8876970d4ba7a2f859749f220fb8a33\\checkout-1.5.12\\res\\drawable\\rzp_poweredby.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable_rzp_poweredby.png.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable-hdpi-v4\\abc_btn_radio_to_on_mtrl_000.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat | |||
@@ -703,6 +718,7 @@ C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f00 | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable-hdpi-v4\\abc_ic_star_half_black_36dp.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat | |||
D\:\\downlooad\\desihealth_customer\ (1)\\android\\app\\build\\generated\\res\\react\\release\\raw\\node_modules_reactnative_package.json=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\raw_node_modules_reactnative_package.json.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable-mdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\9bc87fc96e3c0f761f8fae877f4f5f3f\\jetified-react-native-0.62.2\\res\\anim\\catalyst_slide_down.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\anim_catalyst_slide_down.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f650ff4f121bc418\\material-1.1.0\\res\\anim\\design_bottom_sheet_slide_out.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\anim_design_bottom_sheet_slide_out.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\layout\\select_dialog_singlechoice_material.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\layout_select_dialog_singlechoice_material.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f650ff4f121bc418\\material-1.1.0\\res\\layout\\design_navigation_item_header.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\layout_design_navigation_item_header.xml.flat | |||
@@ -741,6 +757,7 @@ C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f00 | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable-hdpi-v4\\abc_switch_track_mtrl_alpha.9.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat | |||
D\:\\downlooad\\desihealth_customer\ (1)\\node_modules\\react-native-twilio-programmable-voice\\android\\build\\intermediates\\packaged_res\\release\\drawable\\ic_call_white_24dp.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable_ic_call_white_24dp.xml.flat | |||
D\:\\downlooad\\desihealth_customer\ (1)\\android\\app\\build\\generated\\res\\react\\release\\drawable-mdpi\\node_modules_reactnativeuistepper_assets_increment.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-mdpi_node_modules_reactnativeuistepper_assets_increment.png.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\9bc87fc96e3c0f761f8fae877f4f5f3f\\jetified-react-native-0.62.2\\res\\layout\\redbox_view.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\layout_redbox_view.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f650ff4f121bc418\\material-1.1.0\\res\\layout\\mtrl_alert_select_dialog_item.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\layout_mtrl_alert_select_dialog_item.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\43b8883aec87937676c25668593ea22a\\jetified-android-maps-utils-0.5\\res\\layout\\amu_info_window.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\layout_amu_info_window.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\43b8883aec87937676c25668593ea22a\\jetified-android-maps-utils-0.5\\res\\drawable-xhdpi-v4\\amu_bubble_shadow.9.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-xhdpi-v4_amu_bubble_shadow.9.png.flat | |||
@@ -771,6 +788,7 @@ C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f00 | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\b8fd63df67571416f69f99835f5b5882\\play-services-base-17.2.1\\res\\drawable-mdpi-v4\\common_google_signin_btn_text_light_normal_background.9.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-mdpi-v4_common_google_signin_btn_text_light_normal_background.9.png.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable-hdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\interpolator\\fast_out_slow_in.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\interpolator_fast_out_slow_in.xml.flat | |||
D\:\\downlooad\\desihealth_customer\ (1)\\android\\app\\build\\generated\\res\\react\\release\\drawable-mdpi\\src_assets_icons_file.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-mdpi_src_assets_icons_file.png.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\anim\\abc_fade_in.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\anim_abc_fade_in.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable-ldrtl-xxhdpi-v17\\abc_ic_menu_cut_mtrl_alpha.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable-ldrtl-xxxhdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat | |||
@@ -818,6 +836,7 @@ C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f65 | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable-xhdpi-v4\\abc_ic_menu_copy_mtrl_am_alpha.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\color\\abc_tint_seek_thumb.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\color_abc_tint_seek_thumb.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\b8876970d4ba7a2f859749f220fb8a33\\checkout-1.5.12\\res\\drawable\\rzp_loader_circle.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable_rzp_loader_circle.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\9bc87fc96e3c0f761f8fae877f4f5f3f\\jetified-react-native-0.62.2\\res\\anim\\catalyst_push_up_in.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\anim_catalyst_push_up_in.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable\\btn_radio_on_mtrl.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable_btn_radio_on_mtrl.xml.flat | |||
D\:\\downlooad\\desihealth_customer\ (1)\\android\\app\\build\\generated\\res\\react\\release\\drawable-mdpi\\src_assets_img_doctor_image.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-mdpi_src_assets_img_doctor_image.png.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\43b8883aec87937676c25668593ea22a\\jetified-android-maps-utils-0.5\\res\\raw\\amu_unknwown_folder.kml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\raw_amu_unknwown_folder.kml.flat | |||
@@ -832,6 +851,7 @@ D\:\\downlooad\\desihealth_customer\ (1)\\android\\app\\build\\generated\\res\\r | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\layout\\abc_action_bar_up_container.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\layout_abc_action_bar_up_container.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f650ff4f121bc418\\material-1.1.0\\res\\drawable\\mtrl_ic_error.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable_mtrl_ic_error.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\color\\abc_primary_text_material_dark.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\color_abc_primary_text_material_dark.xml.flat | |||
D\:\\downlooad\\desihealth_customer\ (1)\\android\\app\\build\\generated\\res\\react\\release\\drawable-mdpi\\src_assets_icons_email.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-mdpi_src_assets_icons_email.png.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable-xxhdpi-v4\\abc_ic_menu_cut_mtrl_alpha.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\b8876970d4ba7a2f859749f220fb8a33\\checkout-1.5.12\\res\\drawable-hdpi-v4\\rzp_logo.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-hdpi-v4_rzp_logo.png.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\b601bbe384f77134af44600c5521d2cd\\fragment-1.2.1\\res\\anim\\fragment_close_enter.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\anim_fragment_close_enter.xml.flat | |||
@@ -841,6 +861,7 @@ C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f00 | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable\\btn_radio_off_to_on_mtrl_animation.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable_btn_radio_off_to_on_mtrl_animation.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\ebed2fd239dbd53a85a2d9773fb34cd9\\media-1.0.0\\res\\layout\\notification_template_big_media.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\layout_notification_template_big_media.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\b8fd63df67571416f69f99835f5b5882\\play-services-base-17.2.1\\res\\drawable-xxhdpi-v4\\common_google_signin_btn_text_dark_normal_background.9.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-xxhdpi-v4_common_google_signin_btn_text_dark_normal_background.9.png.flat | |||
D\:\\downlooad\\desihealth_customer\ (1)\\android\\app\\build\\generated\\res\\react\\release\\drawable-mdpi\\src_assets_icons_call.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-mdpi_src_assets_icons_call.png.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable-ldrtl-mdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable-xxhdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f650ff4f121bc418\\material-1.1.0\\res\\drawable\\ic_mtrl_chip_checked_black.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable_ic_mtrl_chip_checked_black.xml.flat | |||
@@ -860,6 +881,7 @@ C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\932881836d703f43f65 | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\color\\abc_hint_foreground_material_light.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\color_abc_hint_foreground_material_light.xml.flat | |||
D\:\\downlooad\\desihealth_customer\ (1)\\android\\app\\build\\generated\\res\\react\\release\\drawable-xxhdpi\\node_modules_reactnativeuistepper_assets_decrement.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-xxhdpi_node_modules_reactnativeuistepper_assets_decrement.png.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\43b8883aec87937676c25668593ea22a\\jetified-android-maps-utils-0.5\\res\\raw\\amu_ballon_gx_prefix.kml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\raw_amu_ballon_gx_prefix.kml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\9bc87fc96e3c0f761f8fae877f4f5f3f\\jetified-react-native-0.62.2\\res\\anim\\catalyst_fade_in.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\anim_catalyst_fade_in.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\color-v23\\abc_tint_btn_checkable.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\color-v23_abc_tint_btn_checkable.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\ebed2fd239dbd53a85a2d9773fb34cd9\\media-1.0.0\\res\\layout\\notification_template_big_media_narrow_custom.xml=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\layout_notification_template_big_media_narrow_custom.xml.flat | |||
C\:\\Users\\being\\.gradle\\caches\\transforms-2\\files-2.1\\366e2c7734702425f0035875d0acbf67\\appcompat-1.1.0\\res\\drawable-xxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\res\\merged\\release\\drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat | |||
@@ -1,4 +1,4 @@ | |||
#Thu Dec 16 10:37:33 IST 2021 | |||
#Sat Dec 25 16:45:47 IST 2021 | |||
base.0=D\:\\downlooad\\desihealth_customer (1)\\android\\app\\build\\intermediates\\dex\\release\\mergeDexRelease\\out\\classes.dex | |||
path.1=classes2.dex | |||
renamed.1=classes2.dex | |||