]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/standard/java/com/stoutner/privacybrowser/helpers/AdHelper.java
d60bf091dab17811e80a254a90851acab456c9d7
[PrivacyBrowserAndroid.git] / app / src / standard / java / com / stoutner / privacybrowser / helpers / AdHelper.java
1 /*
2  * Copyright © 2016-2018,2020 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 import android.app.Activity;
22 import android.content.Context;
23 import android.view.View;
24
25 import androidx.fragment.app.FragmentManager;
26
27 @SuppressWarnings("unused")
28 public class AdHelper {
29     public static void initializeAds(View view, Context applicationContext, Activity activity, FragmentManager fragmentManager, String adUnitId) {
30         // Do nothing because this is the standard flavor.
31     }
32
33     public static void loadAd(View view, Context applicationContext, Activity activity, String adUnitId) {
34         // Do nothing because this is the standard flavor.
35     }
36
37     public static void hideAd(View view) {
38         // Do nothing because this is the standard flavor.
39     }
40
41     public static void pauseAd(View view) {
42         // Do nothing because this is the standard flavor.
43     }
44
45     public static void resumeAd(View view) {
46         // Do nothing because this is the standard flavor.
47     }
48 }