Posts

Showing posts from November, 2021

How to bring sites, ads, options which are not visible in Blogger and connect your first website(Blogger) to your Adsense.

Image
Here you can see that many options are not visible and we also have problems with Blogger. Please make sure that you have added AdSense code inside blogger HTML. If not, you can go to your blogger theme and paste this code inside the HTML head, but remember to add your own AdSense publisher ID which is in your AdSense account information. Add these AdSense code inside blogger HTML: <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca- pub-91646456554645528963 "crossorigin="anonymous"></script> Remember to add your own AdSense publisher ID which is in your AdSense account information. NOTE: Replace this  pub-91646456554645528963  with your publisher ID Now go to https://www.google.com/adsense/start/   After login to your  AdSense Account copy and paste your blogger URL in the text field and then click on the button below.   Now you can see that our blog has been added and options on AdSense are also visible. Now ...

In-App Purchase with null safety in Flutter 2.5.

Image
  toobay   Flutter Tutorials In this guide, we will explain how to Implement Consumables Non-Consumables and Subscriptions using the in_app_purchase plugin in your flutter App. 1- Add these permissions to android/app/src/main/AndroidManifest.xml <uses-permission android :name ="com.android.vending.BILLING" /> <uses-permission android :name ="android.permission.INTERNET" /> 2- Make sure you are using your own product IDs. 3- Add these to your package’s pubspec.yaml file: in_app_purchase : ^1.0.9 provider : ^6.0.1 shared_preferences : ^2.0.8 NOTE :  If you want to use in_app_purchase 2.0.0 version or above follow the below instructions. # Rename in_app_purchase_ios to in_app_purchase_storekit. # Rename InAppPurchaseIosPlatform to InAppPurchaseStoreKitPlatform. # Rename InAppPurchaseIosPlatformAddition to InAppPurchaseStoreKitPlatformAddition. This is our file: main.dart import 'package:flutter/foundation.dart' ; import 'package:flutter/material...

Popular posts from this blog

In-App Purchase with null safety in Flutter 2.5.

How to add In-App Purchase subscription in Flutter.

Flutter Native Ad Templates Implementation