Back to project page SevenWonders.
The source code is released under:
Apache License
If you think the Android project SevenWonders listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package skylight1.sevenwonders.social.facebook; /*from w w w .ja v a2 s. c o m*/ public class FacebookConfig { private static String sAppId; private static Integer sDialogIconResId; public static void initFacebook(String appId, Integer dialogIconResId) { sAppId = appId; sDialogIconResId = dialogIconResId; } public static String getAppId() { return sAppId; } public static int getDialogIconResId() { return sDialogIconResId; } }