Skip to content

Easy ads for your iOS/iPadOS app without the bad bits

Notifications You must be signed in to change notification settings

bionelabs/Billboard

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

67 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Header Photo@2x

Billboard

Billboard is a module that enables the incorporation of advertisement highlights for applications created by independent developers. Its unique feature lies in its execution of ads without the use of tracking measures or unwanted cookies. This way, your user can still get annoyed by advertisements without the nasty bits, and therefore you get a free "Remove Ads" selling point for your premium tier.

These ads do NOT generate revenue or track anything

In Short:

  • 🚫 No tracking/cookies
  • 📲 Customizable Ad overlay in SwiftUI
  • 🔧 Flexible configuration
  • 🎨 Use the default list of high-quality Ads or use your own source
  • 🌈 Various Ad types
  • 🎁 Ideal to get an ad-free premium tier.

How to display an Ad

Billboard provides an easy way to present an ad overlay on any SwiftUI View. Here's a simple example:

@State private var showRandomAdvert = false

ContentView()
    .showBillboard(when: $showRandomAdvert) {
        // Replace this view with your Paywall
        Text("Your Paywall goes here")
    }

Alternatively, you can customize the BillboardView and position it in any way that suits your app. This view takes a BillboardAd, a BillboardConfiguration (Optionally), and a view that represents your paywall:

@State private var advertisement: BillboardAd? = nil
@StateObject var viewModel = BillboardViewModel()


ContentView()
    .task {
        let newAdvert = try? await viewModel.fetchRandomAd()
        advertisement = newAdvert
    }   
    .fullScreenCover(item: $advertisement) { advert in
        BillboardView(advert: advert, paywall: { Text("Paywall") })
    }

TIP: When you're running a debug version of your app you can tap on the timer to show a dismiss button right away.

Examples@2x

Configuration

Billboard lets you define some configurations to fit your needs better.

public struct BillboardConfiguration {
    
    /// The URL pointing to the JSON in the `BillboardAdResponse` format.
    public let adsJSONURL: URL?
    
    /// Enable or disable haptics
    public let allowHaptics: Bool
    
    /// The duration of the advertisement
    public let duration: TimeInterval
    
    public init(adsJSONURL: URL? = URL(string:"https://billboard-source.vercel.app/ads.json"),
                allowHaptics: Bool = true,
                advertDuration: TimeInterval = 15.0) {
        self.adsJSONURL = adsJSONURL
        self.allowHaptics = allowHaptics
        self.duration = advertDuration
    }
}

This also allows you to use your own source of ads that follow the BillboardAdResponse format.

@State private var showRandomAdvert = false

let config = BillboardConfiguration(
    adsJSONURL: URL(string: "YOUR-OWN-SOURCE"),
    allowHaptics: false,
    advertDuration: 30.0
)

ContentView()
    .showBillboard(when: $showRandomAdvert, configuration: config) {
        // Replace this view with your Paywall
        Text("Your Paywall goes here")
    }

BillboardAdResponse

Here's an example of how your source list could look like.

{
  "ads" : [
    {
      "appStoreID" : "1574243765",
      "name" : "NowPlaying",
      "title": "Learn everything about any song",
      "description" : "A music companion app that lets you discover the stories behind and song, album or artist.",
      "media": "https://pub-378e0dd96b5343108a04317ebddebb4e.r2.dev/nowplaying.png",
      "backgroundColor" : "344442",
      "textColor" : "EFDED7",
      "tintColor" : "EFDED7",
      "fullscreen": false,
      "transparent": true
    }
  ]
}

Ad Example@2x

Ad Guidelines & Requirements

Submit your app to be featured as an Ad for everyone using the Billboard package to display Advertisements. Each ad will be reviewed before inclusion.

You can submit your app here

Ad Requirements

  • Apple ID of App: The Apple ID is a 9- or 10-digit number found in your App Store URL or in App Store Connect.
  • Name of App: The name of the app you're promoting
  • Title: The advertisement headline (maximum 25 characters).
  • Description: The advertisement description (maximum 140 characters).
  • Media: The image used in your advertisement.

Media Guidelines

  • Image should be a minimum of 800x800 in resolution.
  • The image should not contain any text outside of the visual content.
  • Avoid using your App Icon as the image (as it's already displayed by default).
  • Provide an image with no background or has a single color (avoid gradients).
  • Photos are allowed as well but will be displayed differently.

Ad Types

The media of an ad will be displayed covering the whole view when BillboardAd.fullscreen is set to true. This works great if the media is a photo instead of a visual. Please consider that the photo's subject must be in the center, which will ensure it's always visible.

AdTypes@2x

FAQ

Which Ads are presented when I use the default config

You'll find a list of all currently used ads in the example app.

Special thanks to

tundsdev for CachedImage implementation

Authors

This library is created by Hidde van der Ploeg. Feel free to reach out on Twitter or Mastodon.

License

Billboard is available under the MIT license.

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.

About

Easy ads for your iOS/iPadOS app without the bad bits

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Swift 100.0%