Implement admob open ads in your android app.
To get a Git project into your build:
Step 1. Add the JitPack repository to your build file
Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Step 2. Add the dependency
Add it in your root app.gradle at the end of repositories:
dependencies {
...
implementation 'com.github.1902shubh:AdmobOpenAds:1.0.1'
...
}
Simple use cases will look something like this:
Step 1. Create a class like MyApplication.class
new AppOpenManager(context, "ADMOB_OPEN_ADS_ID");
Step 2. Update menifest
<application
name=".MyApplication"
...
>