HouseAds2

Additional

Language
Java
Version
1.0.0.16 (Jan 2, 2021)
Created
Aug 6, 2019
Updated
Jan 2, 2021 (Retired)
Owner
Fayaz Bin Salam (p32929)
Contributor
Fayaz Bin Salam (p32929)
1
Activity
Badge
Generate
Download
Source code

HouseAds2

A library ( V2 ) for cross promoting own apps within own apps - for Android

Share

Sharing with your friends is just one click away from here

Support

If you like my works and want to support me/my works, feel free to support or donate. My payment details can be found here: https://p32929.github.io/SendMoney2Me/

(V1 here: https://github.com/p32929/MyHouseAdsAndroid)

Screenshot:

Banner Ad

Interstitial ad:

Rating Dialog:

How to use:

Steps:

  • Initialize
  • Show ads

Installation

Add it in your root build.gradle at the end of repositories:

 allprojects {
  repositories {
   ...
   maven { url 'https://jitpack.io' }
  }
 }

Add the dependency

dependencies {
         implementation 'com.github.p32929:HouseAds2:1.0.0.16'
 }

Code Example:

Initialization:

If you just want to show interstitial ads , initialize like this:

HouseAds houseAds = new HouseAds(this,
                "https://raw.githubusercontent.com/p32929/SomeHowTosAndTexts/master/HouseAdsJson/house_ads2.json"
        );

If you want to show both interstitial ads and banner ads, initialize like this:

HouseAds houseAds = new HouseAds(this,
                "https://raw.githubusercontent.com/p32929/SomeHowTosAndTexts/master/HouseAdsJson/house_ads2.json",
                linearLayout
        );

To show interstitial ad on back press:

houseAds.showInterAds();

The banner ad will be added on the json data load.

If you want to change the banner ads every n seconds:

houseAds.autoChangeBannerAds(seconds);

If you want to show a Rating Dialog before sending the user to the Google Play Store, you need to set a feedback email using setFeedbackEmail method like this:

houseAds.setFeedbackEmail("p32929@gmail.com");

The JSON data should be like this:

[
 {
  "appIcon": "https://lh3.googleusercontent.com/vvp6Ev33xPerWBBOtIRyAHl7k5c4wQ72hGwG3EU4JC-BTjfvb5DSJDeMABaRg0fy_KI",
  "appName": "Sleepy - Phone Addiction Controller",
  "appDescription": "The smartest app to reduce phone addiction",
  "url": "https://play.google.com/store/apps/details?id=p32929.lazyphone"
 },
 {
  "appIcon": "https://lh3.googleusercontent.com/EPW9ERgwRYA47SsgLCiA0vF7irRoPIhS0tA3JdIrgQ5-xmaqVBJKt69-jLW1JAtgD6w",
  "appName": "Best CGPA Calculator",
  "appDescription": "Best CGPA Calculator app for Android",
  "url": "https://play.google.com/store/apps/details?id=p32929.cgpa_calculator2"
 },
 {
  "appIcon": "https://lh3.googleusercontent.com/xtHAhxY3kp0O2hDSgLIQlXvreSQsHV-6ApulPeLJ-j4QrjyXD_OQfYdk88hbFYad8q0",
  "appName": "Buy Sell BD",
  "appDescription": "Buy-Sell everything easily in Bangladesh",
  "url": "https://play.google.com/store/apps/details?id=p32929.buysellbd"
 },
 {
  "appIcon": "https://lh3.googleusercontent.com/ILrto9KguXlr-clbhYKUonpnHszgNp_N5Qvc8_u9QaM71oaqNKcYql2sV3sqZ7nqzsc",
  "appName": "Desplash",
  "appDescription": "Beautiful automatic wallpapers from Unsplash",
  "url": "https://play.google.com/store/apps/details?id=p32929.desplash"
 },
 {
  "appIcon": "https://lh3.googleusercontent.com/ni-lk3b2nTMZyC7r1wYBW6cm9eYqGAN-t6fXV-kD0lSyw1lO3kenC1We71fZjSryvFII",
  "appName": "The Great Postman",
  "appDescription": "Best REST API Client for Android",
  "url": "https://play.google.com/store/apps/details?id=p32929.greatpostman"
 },
 {
  "appIcon": "https://lh3.googleusercontent.com/X8mRJd7JajvDXoW7NaluKt2IvC3osH6czkTPoWeSYJ96U2LWLKT4xiFgvNouwf-UvEk",
  "appName": "ExIn",
  "appDescription": "A very simple Income-Expense tracker",
  "url": "https://play.google.com/store/apps/details?id=p32929.exin"
 }
]

Check the app example in the project. Hope, you will enjoy using the library :)

License

MIT License

Copyright (c) 2019 Fayaz Bin Salam

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.