Dealfly - Android

Contents

1. Hide or remove some features on the app

2. Google Maps is not installed or disabled

1. Hide or remove some features on the app

Dear customer  ,


First thank you for purchasing our solution ,


Regarding some customers request , here are some option you can hide or disable from the source code :


1. Disable Business manager  : from the app_config file you can set ENABLE_WEB_DASHBOARD to false

2. Hide or remove phone number : from the src/main/res/layout/activity_about.xml add this line of code android:visibility="gone" on line : 215

3. Hide featured stores : from the [package_name]/fragments/HomeFragment.java line 195 replace the  mStoreCustomView.show(); with  mStoreCustomView.hide();

4. remove a language from android project : you can find all the language files inside strings folder 

2. Google Maps is not installed or disabled

Hello , 


In order to fix the issue related to google maps redirection , please add this line  in the Androidmanifest.xml

<queries>    
    <package android:name="com.google.android.apps.maps" />
</queries>

As the example above :

8789158335.png