Is it possible to show Alert or View when rewarded ad is finished? (above rewarded ad) - react-native

I'm trying to add to my react-native app ad.
I'm using #react-native-firebase/admob package.
And my question is: when the user is finished watching a rewarded ad is it possible to show Alert (android) or customized View above this finished rewarding ad?

Technically it is possible, but you should NOT do this because it is violation of AdMob policy.
AdMob will stop serving ads in your app and Google Play could reject your app.
AdMob Policy
Content obscuring Google-served ads
We do not allow content that:
fully or partially obscures Google-served ads.
Publishers should avoid site layouts in which the content fully or partially obscures Google ads. These layouts make it hard for users to distinguish between the content and ads.
Also check out AdMob Policies for ads that offer rewards

Related

set the notification for Slack's notion app

notion page image
slack apps image
like the image above, I connected Slack and Notion.
I'm getting a notifications for all the changes on the linked Notion page.
but I only want the notification to come when I'm on a mention.
how can I do?

Shopify app that can use and save camera data

I would like to build a Shopify app that can take pictures of the customer using the selfie camera, save them to a customer profile, and allow for guest checkout. I know this is partly possible because this app - https://www.esenca.app is able to achieve the camera functionality component.
Regarding the fine details, how would I create a Shopify app that can do this?
First you create a mobile App using your Flutter or React Native library (or whatever turns your mobile phone crank) with camera access. Ensure your App can take a picture and store it.
Second you would implement the Shopify oAuth pattern into your App, asking for customer permissions, so the merchant could choose to install this App in their store.
Third you would code up an extension in your App that displays this picture in the Customer account section of the App.
Fourth, clean up all the loose ends and profit from your adventure!

Facebook instant game login with JS SDK

I am trying to upload my game made with React to Facebook Instant games. I have facebook login implemented with Facebook JS SDK. But facebook instant game runs inside a sandboxed iframe which blocks any popups and I cannot run FB.login(). In instant games docs it says that FB.login should work and it should open a popup in 'async' mode. But it doesn't. Login popup gets blocked and I get the following error:
Blocked opening ... in a new window because the request was made in a sandboxed frame whose 'allow-popups' permission is not set.
You are looking for the wrong documentation, which leads to Legacy Web games.
You need to refer to the Facebook Instant Game SDK to get the user information inside a FB Instant Game. Most importantly FB Instant games don't allow to use of the Facebook Graph API within the FB Instant Game. Although the Graph API offers more capabilities like getting the user gender, the Facebook Instant Game SDK only exposes a limited number of data for developers. The Facebook Login for the Web with the JavaScript SDK is an OAuth login that cannot be used inside a FB Instant Game.
FYI: Facebook Instant GAme SDK v7.0 doesn't provide all the user information about the user. It only provides the following data
Display Name
var playerName = FBInstant.player.getName()
Profile Picture
var playerImage = new Image();
playerImage.crossOrigin = 'anonymous';
playerImage.src = FBInstant.player.getPhoto();
You can only use the above information in your FB instant games.

Is there anyway to have hangouts outside google+?

Is there any way by which we can have a hangout session within our webapp, say in an iframe ?
I was about to experiment with hangout api, but going by existing apps on hangout, it seems they can only be viewed and used from within Google+.
Is there a work around where I can make the user feel that hangout is a part of my app rather than my app being part of the hangout ?
There's no way to embed a hangout into your web application, but you can use the hangout button to launch a hangout app. This allows you to integrate features and data from your web application into a hangout.
The hangout button is made up of an image and a hangout launching link. It comes in a few sizes. Here's the code for the smallest size (75x19 px)
<a href="https://plus.google.com/hangouts/_?gid=APP_ID" style="text-decoration:none;">
<img src="https://ssl.gstatic.com/s2/oz/images/stars/hangout/1/gplus-hangout-15x79-normal.png"
alt="Start a Hangout"
style="border:0;width:79px;height:15px;"/>
</a>
In this snippet you must substitute APP_ID with your application's ID from the API console. When you are viewing your project you'll find the application ID at the end of the URL.
Currently, there's no way of embedding a Hangout app in your web application. But, there's an opened issue tracker where you can add your comments about the need of this feature and Google might release it in their future API releases.

How to integrate facebook fan page within an iphone app?

I want to integrate facebook fan page in my game with out leaving the game. And I also want to detect If any one like that app, I mean I want to detect "like" button pressed or not.I view this tutorial http://www.raywenderlich.com/1626/how-to-post-to-a-users-wall-upload-photos-and-add-a-like-button-from-your-iphone-app But there is only instruction to add the like button,but o detection if any one tapped the button or not.
Any one help me please.Sample code or tutorial may help a lot.
Thanks in advance.
Tamanna
The Facebook API on iOS is meant to redirect the user on the Facebook app (or website when the app is missing) in order to grant access for the like itself. This needs to be done at least once.
In order to gather information about who is liking what you can set up whatever log or backend functionality to the Facebook app that you have to create to activate the like functionality on your iOS app.