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