Posts tagged with android

I have implemented the GA4F SDK in our Android app to fetch Google ads app campaign Deferred Deeplink , and Google Ads support has confirmed that our setup, including the deep links, looks good. However, the functionality still isn’t working.

Issue - deeplink is not recieving in GA4F sdk or Install referrer callbacks.

Deeplinks pass validations in Google Playstore and Google ads deeplink validator

Still having issue

Sdk implementation Reference link -> https://support.google.com/google-ads/answer/12373942?hl=en#zippy=%2Csteps-to-activate-ddl-in-the-gaf-sdk

Is there any configurations missing between Google ads and GA4F ?

i am using google_mobile_ads: ^5.2.0 to display adds on my flutter app. I need to request and display 3 different sizes of banner ads from google.

This ad is supposed to be show in a scrollable column so i must set the height of it, the problem is that when the add is loaded i don't have the information about the loaded ad, it could be any of the three. If i don't set the height it is either hidden or there is an error that the height cannot be infinite.

note: in the snippet in only set the temporary size, because i don't know how to get the correct one.

 Future<void> loadAd() async {     _bannerAd = AdManagerBannerAd(         adUnitId: adUnitId,         request: const AdManagerAdRequest(),         sizes: [           const AdSize(width: 300, height: 100),           const AdSize(width: 300, height: 250),           const AdSize(width: 300, height: 600)         ],         listener: AdManagerBannerAdListener(           onAdLoaded: (ad) {             if (!mounted) {               ad.dispose();               return;             }             debugPrint('$ad loaded.');             setState(() {               _isLoaded = true;             });           },           onAdFailedToLoad: (ad, error) {             debugPrint('AdManagerBannerAd failed to load: $error');             ad.dispose();           },         ))       ..load();   }   @override   void dispose() {          _bannerAd?.dispose();     super.dispose();   }   @override   Widget build(BuildContext context) {     return _isLoaded && _bannerAd != null         ? Align(             alignment: Alignment.bottomCenter,             child: SafeArea(               child: SizedBox(                 width: _bannerAd!.sizes[0].width.toDouble(),                 height: _bannerAd!.sizes[0].height.toDouble(),                 child: AdWidget(ad: _bannerAd!),               ),             ),           )         : const SizedBox             .shrink();    } 

please help.

I've developed a cloud service (Google cloud Run job) with a webapp that responds to messages as if the replies were from me. When triggered, it reads all my emails and writes a draft as an answer. However, I want to integrate it also with WhatsApp.

I read that I can create an endpoint with the business cloud api so that the software can receive my whatsapp messages, but I realised that I can't save messages as draft with the current API. Indeed, I want to save a response generated by my service as a draft in WhatsApp, so when I open WhatsApp, the message is already there under the intended contact.

I've discovered that the "click to chat" functionality (e.g., https://wa.me/myfriendnumber?=hi) partially achieves this.

However, when I open such a link, it launches my browser first, which then prompts me to open the WhatsApp app. I'd like to bypass this manual step, avoiding the "Open in WhatsApp" confirmation popup, so that I can open multiple links programmatically and have the messages saved as drafts in WhatsApp directly.

Is there a way to automate this, or another method to achieve the same result?

I implemented successfully the code to make a request to the Facebook GraphRequest by using the the following code:

GraphRequest request = GraphRequest.newMeRequest(loginResult.getAccessToken(), new GraphRequest.GraphJSONObjectCallback() {   ... } 

In some documentation I found the code below to retrieve values:

Bundle parameters = new Bundle(); parameters.putString("fields","name,email"); request.setParameters(parameters); request.executeAsync(); 

I want to use System.out.println() to print out name and email of the person who logged in successfully with Facebook to my Android app. How can I invoke request to print out those values? Thank you.

UPDATE 1:

I suspect I might be experiencing the same problem reported at Facebook Integration Android: onCompleted(GraphJSONObjectCallback) block not executing: onCompleted(GraphJSONObjectCallback) block not executing

See more context of my code:

private void handleFacebookAccessToken(LoginResult loginResult) {   GraphRequest request = GraphRequest.newMeRequest(loginResult.getAccessToken(), new GraphRequest.GraphJSONObjectCallback() {     @Override     public void onCompleted(@Nullable JSONObject jsonObject, @Nullable GraphResponse graphResponse) {       //Access the response here and retrieve the information you want and print it out       String rawResponse = graphResponse.getRawResponse();       System.out.println("rawResponse: "+rawResponse);     });     Bundle parameters = new Bundle();     parameters.putString("fields","name,email");     request.setParameters(parameters);     request.executeAsync(); } 

I was expecting the following line to print out the response to the request, but I do not see anything printed out:

System.out.println("rawResponse: "+rawResponse); 

I am working on an app that helps in publishing the post on different platforms in a single go. User has to write about their post and add pictures if they want and then select the social media they want to post on like they can select facebook and instagram or facebook,Instagram and X and when the click the button based on the selection post should be publish on there social media account.

What Problem I am facing?

I am able to create a button that helps user to login to facebook and thats working perfectly. But when it comes to publishing a post it doesn't work. Please let me know what I can do to make that code run??

Here is the code snippet for publishing post to facebook.

private void postToFacebook(String token, String msg) {         String url = "https://graph.facebook.com/v17.0/me/feed";         StringRequest stringRequest = new StringRequest(Request.Method.POST, url,                 new Response.Listener<String>() {                     @Override                     public void onResponse(String response) {                         // Handle success                         Log.d("FBResponse", response);                         Toast.makeText(MainActivity.this, "Post Successful!", Toast.LENGTH_SHORT).show();                     }                 }, new Response.ErrorListener() {             @Override             public void onErrorResponse(VolleyError error) {                 // Handle error                 Log.e("FBError", error.toString());                 Toast.makeText(MainActivity.this, "Failed to Post: " + error.getMessage(), Toast.LENGTH_LONG).show();             }         }) {             @Override             protected Map<String, String> getParams() {                 Map<String, String> params = new HashMap<>();                 params.put("message", msg);                 params.put("access_token", token);                 return params;             }         };         RequestQueue queue = Volley.newRequestQueue(this);         queue.add(stringRequest);     } 

This is the error I am getting when I am trying to publish a post.

2024-09-07 07:34:41.2465642-5734  Volley                  com.example.post                     E  [83] NetworkUtility.shouldRetryException: Unexpected response code 403 for https://graph.facebook.com/v17.0/me/feed 2024-09-07 07:34:41.416790-790   StatusBarIconController com.android.systemui                 D  ignoring old pipeline callbacks, because the new mobile icons are enabled 2024-09-07 07:34:41.4845642-5734  Volley                  com.example.post                     E  [83] NetworkUtility.shouldRetryException: Unexpected response code 403 for https://graph.facebook.com/v17.0/me/feed 2024-09-07 07:34:41.4865642-5642  FBError                 com.example.post                     E  com.android.volley.AuthFailureError