Hello friend, where you able to build the app? I have been trying but Android studio show an error:
Java:
No such property: variantConfiguration for class: com.android.build.gradle.internal.variant.ApplicationVariantData
I was able to fix this error by rolling back the gradle version. My Android Studio was constantly telling me to update gradle, once I did, "crashlytics" was not supported with the new gradle version so it was breaking some things and causing a lot of errors. So I removed the last version of gradle and kept the previous version, so the app was Built perfectly with no errors.
Now my question is, can I test the mobile App while setting up the server locally on my localhost? I have a wifi AP so I'm able to give connection to my phone from my computer where I previously set the server in localhost but on the guide provided with the source code, it is not clear to me about how to fill these options:
Java:
public static String baseUrl = "http://hungrygrocerydelivery.cscodetech.com/";
public static final String APPEND_URL = "/api/";
should i put:
public static String baseUrl = "http://localhost/";
public static final String APPEND_URL = "http://localhost//api/";
or what should I do?
Thank you very much in advance