Affichage des articles dont le libellé est Facebook. Afficher tous les articles
Affichage des articles dont le libellé est Facebook. Afficher tous les articles

jeudi 1 janvier 2015

No push notifications from Facebook topic






Hello guys,
I have got a weird problem. Everytime I post photo or I am tagged in the photo my LG G2 doesn't send me a notification and it also doesn't pop up on the notification bar. It also doesn't display on the facebook icon as an unread notification.
Also the same thing happens when someone add something new into the group.
Does someone face a same problem? Any advice how to solve it?
Thanks






samedi 27 décembre 2014

[Q] Android with facebook SDK not working topic






Hello,

I'm currently developing an application that uses the facebook SDK. On the emulator everything goes fine but the problem is in the real device.

I've setup the Hashkeys, i previously received the error "Invalid hash key not found in the application" and successfully fixed it. But now i'm having another problem.

Whenever i click a button (which is intended to call the Facebook sdk) the facebook activity pops in and suddenly the facebook activity closes. Supposedly, it should appears the Facebook share window. Here's the code that i'm using on that button:


Code:


APP_ID = getString(R.string.facebook_app_id);
                fb = new Facebook(APP_ID);
                    fb.authorize(QuestionsActivity.this, new Facebook.DialogListener() {
                        @Override
                        public void onComplete(Bundle values) {
                            Bundle params = new Bundle();
                            params.putString("name","I need your help!");
                            params.putString("caption","Could you give me a help please?");
                            params.putString("description", labelQuestion.getText().toString() + " A)" + answerA.getText() + " B)" + answerB.getText() + " C)" + answerC.getText());
                            params.putString("picture", "link");
                            params.putString("link,"link");
                            fb.dialog(QuestionsActivity.this,"feed",params,new Facebook.DialogListener() {
                                @Override
                                public void onComplete(Bundle values) {
                                    ShowScoreIncrement(10);
                                    Log.d("DEBUGA","A");
                                }

                                @Override
                                public void onFacebookError(FacebookError e) {
                                    Log.d("DEBUGA","B");
                                }

                                @Override
                                public void onError(DialogError e) {
                                    Log.d("DEBUGA","C");
                                }

                                @Override
                                public void onCancel() {
                                    Log.d("DEBUGA","D");
                                }
                            });
                        }

                        @Override
                        public void onFacebookError(FacebookError e) {
                            Log.d("FB","Error" + e.getMessage());
                        }

                        @Override
                        public void onError(DialogError e) {
                            Log.d("FB", "Complete" + e.getMessage());
                        }

                        @Override
                        public void onCancel() {
                            Log.d("FB","Cancel");
                        }
                    });


As for logging info:


Code:


12-27 21:36:49.737    6220-6220/com.angelo.assassinscreedquiz I/Adreno-EGL﹕ <qeglDrvAPI_eglInitialize:410>: EGL 1.4 QUALCOMM build: AU_LINUX_ANDROID_LNX.LA.3.5.1_RB1.04.04.02.048.006_msm8610_LNX.LA.3.5.1_RB1__release_AU ()
    OpenGL ES Shader Compiler Version: E031.24.00.07
    Build Date: 02/12/14 Wed
    Local Branch:
    Remote Branch: quic/LNX.LA.3.5.1_RB1.1
    Local Patches: NONE
    Reconstruct Branch: AU_LINUX_ANDROID_LNX.LA.3.5.1_RB1.04.04.02.048.006 +  NOTHING
12-27 21:36:49.997    6220-6220/com.angelo.assassinscreedquiz D/OpenGLRenderer﹕ Enabling debug mode 0
12-27 21:36:50.027    6220-6220/com.angelo.assassinscreedquiz D/tcd﹕ process windowFocusChanged msg
12-27 21:36:50.237    6220-6220/com.angelo.assassinscreedquiz I/ActivityManager﹕ Timeline: Activity_idle id: android.os.BinderProxy@41ad4b00 time:40737600
12-27 21:36:51.207    6220-6220/com.angelo.assassinscreedquiz I/ActivityManager﹕ Timeline: Activity_launch_request id:com.angelo.assassinscreedquiz time:40738579
12-27 21:36:51.217    6220-6232/com.angelo.assassinscreedquiz D/tcd﹕ Focus to false
12-27 21:36:51.227    6220-6220/com.angelo.assassinscreedquiz D/tcd﹕ process windowFocusChanged msg
12-27 21:36:51.277    6220-6220/com.angelo.assassinscreedquiz D/RANDOM﹕ 6
12-27 21:36:51.277    6220-6220/com.angelo.assassinscreedquiz D/RANDOM﹕ 18
12-27 21:36:51.277    6220-6220/com.angelo.assassinscreedquiz D/RANDOM﹕ 19
12-27 21:36:51.277    6220-6220/com.angelo.assassinscreedquiz D/RANDOM﹕ 8
12-27 21:36:51.277    6220-6220/com.angelo.assassinscreedquiz D/RANDOM﹕ 14
12-27 21:36:51.277    6220-6220/com.angelo.assassinscreedquiz D/RANDOM﹕ 0
12-27 21:36:51.277    6220-6220/com.angelo.assassinscreedquiz D/RANDOM﹕ 16
12-27 21:36:51.277    6220-6220/com.angelo.assassinscreedquiz D/RANDOM﹕ 3
12-27 21:36:51.277    6220-6220/com.angelo.assassinscreedquiz D/RANDOM﹕ 1
12-27 21:36:51.277    6220-6220/com.angelo.assassinscreedquiz D/RANDOM﹕ 4
12-27 21:36:51.357    6220-6220/com.angelo.assassinscreedquiz D/dalvikvm﹕ GC_FOR_ALLOC freed 171K, 6% free 4522K/4764K, paused 16ms, total 16ms
12-27 21:36:51.357    6220-6220/com.angelo.assassinscreedquiz I/dalvikvm-heap﹕ Grow heap (frag case) to 5.587MB for 635812-byte allocation
12-27 21:36:51.457    6220-6230/com.angelo.assassinscreedquiz D/tcd﹕ Focus to true
12-27 21:36:51.457    6220-6244/com.angelo.assassinscreedquiz D/QUESTION﹕ 6
12-27 21:36:51.457    6220-6244/com.angelo.assassinscreedquiz D/data_question﹕ Question3
12-27 21:36:51.577    6220-6220/com.angelo.assassinscreedquiz D/tcd﹕ process windowFocusChanged msg
12-27 21:36:51.577    6220-6220/com.angelo.assassinscreedquiz D/tcd﹕ imm = android.view.inputmethod.InputMethodManager@41b11a60 falseflg=#1820002
12-27 21:36:51.597    6220-6230/com.angelo.assassinscreedquiz D/tcd﹕ Focus to true
12-27 21:36:51.757    6220-6220/com.angelo.assassinscreedquiz D/tcd﹕ process windowFocusChanged msg
12-27 21:36:51.777    6220-6231/com.angelo.assassinscreedquiz D/tcd﹕ Focus to false
12-27 21:36:51.867    6220-6220/com.angelo.assassinscreedquiz I/ActivityManager﹕ Timeline: Activity_idle id: android.os.BinderProxy@41b25560 time:40739238
12-27 21:36:54.117    6220-6220/com.angelo.assassinscreedquiz D/dalvikvm﹕ GC_FOR_ALLOC freed 178K, 5% free 5477K/5724K, paused 11ms, total 11ms
12-27 21:36:54.117    6220-6220/com.angelo.assassinscreedquiz I/ActivityManager﹕ Timeline: Activity_launch_request id:com.facebook.katana time:40741484
12-27 21:36:54.127    6220-6232/com.angelo.assassinscreedquiz D/tcd﹕ Focus to false
12-27 21:36:54.127    6220-6220/com.angelo.assassinscreedquiz D/QUESTIONSACTIVITY﹕ It was paused
12-27 21:36:54.137    6220-6220/com.angelo.assassinscreedquiz D/tcd﹕ process windowFocusChanged msg
12-27 21:36:56.387    6220-6232/com.angelo.assassinscreedquiz D/tcd﹕ Focus to true
12-27 21:36:56.387    6220-6220/com.angelo.assassinscreedquiz D/tcd﹕ process windowFocusChanged msg
12-27 21:36:56.617    6220-6220/com.angelo.assassinscreedquiz I/ActivityManager﹕ Timeline: Activity_idle id: android.os.BinderProxy@41b25560 time:40743989
12-27 21:37:09.457    6220-6220/com.angelo.assassinscreedquiz D/QUESTIONSACTIVITY﹕ It was paused
12-27 21:37:09.597    6220-6220/com.angelo.assassinscreedquiz W/IInputConnectionWrapper﹕ getExtractedText on inactive InputConnection
12-27 21:37:09.597    6220-6220/com.angelo.assassinscreedquiz W/IInputConnectionWrapper﹕ getTextBeforeCursor on inactive InputConnection
12-27 21:37:09.597    6220-6220/com.angelo.assassinscreedquiz W/IInputConnectionWrapper﹕ getSelectedText on inactive InputConnection
12-27 21:37:09.597    6220-6220/com.angelo.assassinscreedquiz W/IInputConnectionWrapper﹕ getTextAfterCursor on inactive InputConnection
12-27 21:37:14.977    6220-6232/com.angelo.assassinscreedquiz D/tcd﹕ Focus to false
12-27 21:37:14.977    6220-6220/com.angelo.assassinscreedquiz D/tcd﹕ process windowFocusChanged msg


Anyone has an idea about what might be happening? Thank you before hand!






vendredi 26 décembre 2014

[Q][Request] How i can disable the facebook messanger like button? topic






Hi, i never use the messanger like button, but i hit it accidentally every single time! And it is very annoying explaing every time to my friend that that thumbs up doesen't mean anything.

I found some discussions on facebook forum but no solutions. (I can't post the link because i haven't made 10 posts)

So can anyone help me? Maybe someone who knows how to develop apps can create a xposed module or something like that. I think it will be very useful for me and for others. Thanks!






jeudi 25 décembre 2014

Facebook messenger topic






Issue where the full message doesn't show and you can't scroll left like regular messenger to read the full message because it just goes to the "like" thumbs up icon. Any fix or work around for this?






Samsung's Facebook Albums limitation topic






Got my Note 4 a few weeks ago. Lots of things I like, some I don't...
One of the annoying one seems to be the upload of albums to Facebook. For some reason it seems to be limited to 30 pictures. Didn't have this problem on my Nexus 5 and 7 as far as I remember (And obviously from a PC you can upload much more than that)
Anybody has a workaround, that would be super helpful (Such a pity to be limited like this given the quality of the camera)
Thanks a lot for your help






[Q] Htc Gallery - Facebook saved Pics in Camera Shots topic






When you save pics from Facebook app , it gets saved to a folder Facebook .
But in HTC Gallery those pics are displayed in Camera Shots.
In other gallery app like Quickpic it shows it gets saved in Facebook folder.
So this is annoying because those unwanted facebook pics get synced with Google Photos(where i have enabled only the pics in Camera folder to get synced)
So is there any way that these pics are not displayed in Camera shots? Any fix?
I am on Sense 6 rom, viper Rom.






dimanche 21 décembre 2014

[Q] Facebook is loading very slow. topic






Hi there, I got a problem with the Facebook app. It's loading very slowly on any ROM (all JB, KK roms), it takes moe than 1min to load my news feed(even in Wifi or 3g). Is there a fix for this issue?






vendredi 12 décembre 2014

[Q] How to remove home facebook share button? - GB 2.3.4 topic






I have already removed all facebook related applications that I could find via Titanium Backup, but the share button in the home screen still exists. Does anyone know which apk is responsible for that button or if is there anyway to remove that button from the home screen?
The following is an image showing the share button (which is what I want to remove) on the top of the screen, it appears whenever a user holds an icon for drag&drop action:

Screenshot








Attached Thumbnails


Click image for larger version<br/><br/>Name:	ray21.png<br/>Views:	N/A<br/>Size:	110.4 KB<br/>ID:	3061694
 

















Skype and Facebook apps not working on Lollipop custom roms topic






Hello, after i updated to Lollipop, the Facebook app force close without any message while Skype does the same thing when the call start (force close with no message of crash of the app)....how to solve this except going back to Kitkat?
thank you

Sent from my Nexus 7 using XDA Free mobile app






mercredi 10 décembre 2014

[Q] Facebook Contact Sync topic






I know this is a redundant question, but please, if someone know how to, share it please...

I already used UberSync. Yeah, it synced my FB friends but I can't merge it to my existing contacts.

Any other apps there? Or any knows how to?






 

© 2013 Mobile Probleme. All rights resevered. Designed by Templateism

Back To Top