I implemented facebook login and now in the manifest I use 2 values for meta-data one for release and one for debag
<!--<meta-data--> <!--android:name="com.facebook.sdk.ApplicationId"--> <!--android:value="@string/facebook_app_id_release" />--> <meta-data android:name="com.facebook.sdk.ApplicationId" android:value="@string/facebook_app_id_debag" /> depending on the situation, I keep one commented out the other open, so how can I do this so that these values are taken from the code?
I would then put the flag and not bother with switching these keys
Thank!