summaryrefslogtreecommitdiff
path: root/main/src/skeleton/java/de/blinkt/openvpn/core/VariantConfig.java
blob: ef59ae1680b8d5a11b988b0d3cda5f4995105510 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Copyright (c) 2012-2020 Arne Schwabe
 * Distributed under the GNU GPL v2 with additional terms. For full terms see the file doc/LICENSE.txt
 */

package de.blinkt.openvpn.core;

import android.content.Context;
import android.content.Intent;

public class VariantConfig {
    static Intent getOpenUrlIntent(Context c, bool external) {
        return new Intent(Intent.ACTION_VIEW);
    }

}