]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/standard/java/com/stoutner/privacybrowser/helpers/AdHelper.kt
50d1db2757b12c3f01c6c9f431e8c1bbea9625e7
[PrivacyBrowserAndroid.git] / app / src / standard / java / com / stoutner / privacybrowser / helpers / AdHelper.kt
1 /*
2  * Copyright © 2016-2018,2020-2021 Soren Stoutner <soren@stoutner.com>.
3  *
4  * This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
5  *
6  * Privacy Browser is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * Privacy Browser is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with Privacy Browser.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 package com.stoutner.privacybrowser.helpers
21
22 import android.app.Activity
23 import android.content.Context
24 import android.view.View
25
26 import androidx.fragment.app.FragmentManager
27
28 // The `@JvmStatic` notation can be removed once all the code has migrated to Kotlin.
29 @Suppress("UNUSED_PARAMETER")
30 object AdHelper {
31     @JvmStatic
32     fun initializeAds(view: View, context: Context, activity: Activity, fragmentManager: FragmentManager, adUnitId: String) {
33         // Do nothing because this is the standard flavor.
34     }
35
36     @JvmStatic
37     fun loadAd(view: View, context: Context, activity: Activity, adUnitId: String) {
38         // Do nothing because this is the standard flavor.
39     }
40
41     @JvmStatic
42     fun hideAd(view: View) {
43         // Do nothing because this is the standard flavor.
44     }
45
46     @JvmStatic
47     fun pauseAd(view: View) {
48         // Do nothing because this is the standard flavor.
49     }
50
51     @JvmStatic
52     fun resumeAd(view: View) {
53         // Do nothing because this is the standard flavor.
54     }
55 }