-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 7c8e7a0
Showing
50 changed files
with
1,133 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
*.iml | ||
.gradle | ||
/local.properties | ||
/.idea/caches | ||
/.idea/libraries | ||
/.idea/modules.xml | ||
/.idea/workspace.xml | ||
/.idea/navEditor.xml | ||
/.idea/assetWizardSettings.xml | ||
.DS_Store | ||
/build | ||
/captures | ||
.externalNativeBuild | ||
.cxx | ||
local.properties |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
plugins { | ||
id 'com.android.library' | ||
} | ||
|
||
android { | ||
namespace 'com.atikulsoftware.metaadslibrary' | ||
compileSdk 32 | ||
|
||
defaultConfig { | ||
minSdk 21 | ||
targetSdk 32 | ||
|
||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" | ||
consumerProguardFiles "consumer-rules.pro" | ||
} | ||
|
||
buildTypes { | ||
release { | ||
minifyEnabled false | ||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' | ||
} | ||
} | ||
compileOptions { | ||
sourceCompatibility JavaVersion.VERSION_1_8 | ||
targetCompatibility JavaVersion.VERSION_1_8 | ||
} | ||
} | ||
|
||
dependencies { | ||
|
||
implementation 'androidx.appcompat:appcompat:1.5.1' | ||
implementation 'com.google.android.material:material:1.7.0' | ||
testImplementation 'junit:junit:4.13.2' | ||
androidTestImplementation 'androidx.test.ext:junit:1.1.4' | ||
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.0' | ||
|
||
//Facebook Ads | ||
implementation 'com.facebook.android:audience-network-sdk:+' | ||
} |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Add project specific ProGuard rules here. | ||
# You can control the set of applied configuration files using the | ||
# proguardFiles setting in build.gradle. | ||
# | ||
# For more details, see | ||
# http://developer.android.com/guide/developing/tools/proguard.html | ||
|
||
# If your project uses WebView with JS, uncomment the following | ||
# and specify the fully qualified class name to the JavaScript interface | ||
# class: | ||
#-keepclassmembers class fqcn.of.javascript.interface.for.webview { | ||
# public *; | ||
#} | ||
|
||
# Uncomment this to preserve the line number information for | ||
# debugging stack traces. | ||
#-keepattributes SourceFile,LineNumberTable | ||
|
||
# If you keep the line number information, uncomment this to | ||
# hide the original source file name. | ||
#-renamesourcefileattribute SourceFile |
26 changes: 26 additions & 0 deletions
26
...brary/src/androidTest/java/com/atikulsoftware/metaadslibrary/ExampleInstrumentedTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package com.atikulsoftware.metaadslibrary; | ||
|
||
import android.content.Context; | ||
|
||
import androidx.test.platform.app.InstrumentationRegistry; | ||
import androidx.test.ext.junit.runners.AndroidJUnit4; | ||
|
||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
|
||
import static org.junit.Assert.*; | ||
|
||
/** | ||
* Instrumented test, which will execute on an Android device. | ||
* | ||
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a> | ||
*/ | ||
@RunWith(AndroidJUnit4.class) | ||
public class ExampleInstrumentedTest { | ||
@Test | ||
public void useAppContext() { | ||
// Context of the app under test. | ||
Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext(); | ||
assertEquals("com.atikulsoftware.metaadslibrary.test", appContext.getPackageName()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"> | ||
|
||
<uses-permission android:name="android.permission.INTERNET" /> | ||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | ||
|
||
</manifest> |
12 changes: 12 additions & 0 deletions
12
MetaAdsLibrary/src/main/java/com/atikulsoftware/metaadslibrary/MetaAds/AdsUnit.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.atikulsoftware.metaadslibrary.MetaAds; | ||
|
||
import com.facebook.ads.InterstitialAd; | ||
|
||
public class AdsUnit { | ||
|
||
public static boolean isAds = true; | ||
public static InterstitialAd interstitialAd; | ||
public static String BANNER = ""; | ||
public static String INTERSTITIAL = ""; | ||
|
||
} |
140 changes: 140 additions & 0 deletions
140
MetaAdsLibrary/src/main/java/com/atikulsoftware/metaadslibrary/MetaAds/FacebookAds.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,140 @@ | ||
package com.atikulsoftware.metaadslibrary.MetaAds; | ||
|
||
import android.content.Context; | ||
import android.widget.LinearLayout; | ||
import android.widget.Toast; | ||
|
||
import com.facebook.ads.Ad; | ||
import com.facebook.ads.AdError; | ||
import com.facebook.ads.AdListener; | ||
import com.facebook.ads.AdSize; | ||
import com.facebook.ads.AdView; | ||
import com.facebook.ads.AudienceNetworkAds; | ||
import com.facebook.ads.InterstitialAd; | ||
import com.facebook.ads.InterstitialAdListener; | ||
|
||
/* | ||
Copyright @ Atikul Software | ||
Name : Md. Atikul Islam | ||
GitHub : https://github.com/AtikulSoftware | ||
Website : https://www.bdtopcoder.xyz/ | ||
YouTube : https://www.youtube.com/AwesomeDesigner | ||
*/ | ||
|
||
public class FacebookAds { | ||
|
||
public static onDismiss onDismiss; | ||
|
||
public FacebookAds(com.atikulsoftware.metaadslibrary.MetaAds.onDismiss onDismiss) { | ||
FacebookAds.onDismiss = onDismiss; | ||
} | ||
|
||
public FacebookAds() { | ||
|
||
} | ||
|
||
public static void setBanner(LinearLayout BannerLayout, Context context) { | ||
|
||
if (AdsUnit.isAds) { | ||
AdView adView = new AdView(context, AdsUnit.BANNER, AdSize.BANNER_HEIGHT_50); | ||
BannerLayout.addView(adView); | ||
|
||
AdListener adListener = new AdListener() { | ||
@Override | ||
public void onError(Ad ad, AdError adError) { | ||
// Ad error callback | ||
} | ||
|
||
@Override | ||
public void onAdLoaded(Ad ad) { | ||
// Ad loaded callback | ||
} | ||
|
||
@Override | ||
public void onAdClicked(Ad ad) { | ||
// Ad clicked callback | ||
} | ||
|
||
@Override | ||
public void onLoggingImpression(Ad ad) { | ||
// Ad impression logged callback | ||
} | ||
}; | ||
|
||
// Request an ad | ||
adView.loadAd(adView.buildLoadAdConfig().withAdListener(adListener).build()); | ||
|
||
// load ad | ||
adView.loadAd(); | ||
|
||
} // Ads Checked End Here =========== | ||
} //SetBanner End Here ================ | ||
|
||
public static void loadInterstitial(Context context) { | ||
if (AdsUnit.isAds) { | ||
// Initialize the Audience Network SDK | ||
AudienceNetworkAds.initialize(context); | ||
AdsUnit.interstitialAd = new InterstitialAd(context, AdsUnit.INTERSTITIAL); | ||
|
||
InterstitialAdListener interstitialAdListener = new InterstitialAdListener() { | ||
@Override | ||
public void onInterstitialDisplayed(Ad ad) { | ||
// Interstitial ad displayed callback | ||
|
||
} | ||
|
||
@Override | ||
public void onInterstitialDismissed(Ad ad) { | ||
// Interstitial dismissed callback | ||
AdsUnit.interstitialAd = null; | ||
FacebookAds.loadInterstitial(context); | ||
onDismiss.OnDismiss(); | ||
} | ||
|
||
@Override | ||
public void onError(Ad ad, AdError adError) { | ||
// Ad error callback | ||
// onDismiss.OnDismiss(); | ||
|
||
} | ||
|
||
@Override | ||
public void onAdLoaded(Ad ad) { | ||
// Interstitial ad is loaded and ready to be displayed | ||
|
||
} | ||
|
||
@Override | ||
public void onAdClicked(Ad ad) { | ||
// Ad clicked callback | ||
} | ||
|
||
@Override | ||
public void onLoggingImpression(Ad ad) { | ||
// Ad impression logged callback | ||
} | ||
}; | ||
|
||
// For auto play video ads, it's recommended to load the ad | ||
// at least 30 seconds before it is shown | ||
AdsUnit.interstitialAd.loadAd(AdsUnit.interstitialAd.buildLoadAdConfig() | ||
.withAdListener(interstitialAdListener) | ||
.build()); | ||
|
||
} // Ads Checked End Here ====== | ||
|
||
} // loadInterstitial End Here ===== | ||
|
||
public void showInterstitial() { | ||
if (AdsUnit.interstitialAd.isAdLoaded()) { | ||
// Show the ad | ||
AdsUnit.interstitialAd.show(); | ||
} else { | ||
onDismiss.OnDismiss(); | ||
} | ||
} // showInterstitial End Here ========== | ||
|
||
|
||
} // FacebookAds End Here ================= |
5 changes: 5 additions & 0 deletions
5
MetaAdsLibrary/src/main/java/com/atikulsoftware/metaadslibrary/MetaAds/onDismiss.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package com.atikulsoftware.metaadslibrary.MetaAds; | ||
|
||
public interface onDismiss { | ||
void OnDismiss(); | ||
} |
17 changes: 17 additions & 0 deletions
17
MetaAdsLibrary/src/test/java/com/atikulsoftware/metaadslibrary/ExampleUnitTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package com.atikulsoftware.metaadslibrary; | ||
|
||
import org.junit.Test; | ||
|
||
import static org.junit.Assert.*; | ||
|
||
/** | ||
* Example local unit test, which will execute on the development machine (host). | ||
* | ||
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a> | ||
*/ | ||
public class ExampleUnitTest { | ||
@Test | ||
public void addition_isCorrect() { | ||
assertEquals(4, 2 + 2); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
plugins { | ||
id 'com.android.application' | ||
} | ||
|
||
android { | ||
namespace 'com.atikulsoftware.facebookmetaads' | ||
compileSdk 32 | ||
|
||
defaultConfig { | ||
applicationId "com.atikulsoftware.facebookmetaads" | ||
minSdk 21 | ||
targetSdk 32 | ||
versionCode 1 | ||
versionName "1.0" | ||
|
||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" | ||
} | ||
|
||
buildTypes { | ||
release { | ||
minifyEnabled false | ||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' | ||
} | ||
} | ||
compileOptions { | ||
sourceCompatibility JavaVersion.VERSION_1_8 | ||
targetCompatibility JavaVersion.VERSION_1_8 | ||
} | ||
} | ||
|
||
dependencies { | ||
|
||
implementation 'androidx.appcompat:appcompat:1.5.1' | ||
implementation 'com.google.android.material:material:1.7.0' | ||
implementation 'androidx.constraintlayout:constraintlayout:2.1.4' | ||
implementation project(path: ':MetaAdsLibrary') | ||
testImplementation 'junit:junit:4.13.2' | ||
androidTestImplementation 'androidx.test.ext:junit:1.1.4' | ||
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.0' | ||
} |
Oops, something went wrong.