我尝试点击FacebookSDK登录按钮并收到错误
我的applicaitonId
为空。
我该如何正确地启动它?
Session currentSession = sessionTracker.getSession();
if (currentSession == null || currentSession.getState().isClosed()) {
sessionTracker.setSession(null);
Session session = new Session.Builder(context).setApplicationId(applicationId).build();
Session.setActiveSession(session);
currentSession = session;
}
答案 0 :(得分:2)
在manifest.xml中包含以下代码行
<meta-data android:name="com.facebook.sdk.ApplicationId" android:value="@string/app_id"/>
和
<string name="app_id">Your Facebook App Id</string>
res / values / strings.xml中的