Android Open Source - WifiCallingControls Wifi Calling Manager






From Project

Back to project page WifiCallingControls.

License

The source code is released under:

MIT License

If you think the Android project WifiCallingControls listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.ajhodges.wificallingcontrols.ipphone;
//from w  ww  . j a va 2  s  .  c om
import android.content.Context;
import android.content.pm.ApplicationInfo;
import android.content.pm.PackageManager;

/**
 * Created by Adam on 4/7/2014.
 */
public abstract class WifiCallingManager {
    final public static int MODE_TOGGLE = -1;
    final public static int MODE_OFF = 0;
    final public static int MODE_ON = 1;

    final public static int PREFER_WIFI = 10;
    final public static int PREFER_CELL = 11;
    final public static int PREFER_NEVER_CELL = 12;

    public static final int TYPE_MOVIAL = 0;
    public static final int TYPE_SAMSUNG = 1;
    public static final int TYPE_KINETO = 2;
    public static int type = -1;

    public static String apkFile = "";
    //get singleton
    public static WifiCallingManager getInstance(Context context){
        //test to see what kind of IMS this phone uses
        if(type == -1){
            //Find location of the WifiCall app
            PackageManager pm = context.getPackageManager();
            for (ApplicationInfo app : pm.getInstalledApplications(0)){
                if(app.packageName.equals("com.movial.wificall")){
                    type = TYPE_MOVIAL;
                    apkFile = app.sourceDir;
                    break;
                } else if (app.packageName.equals("com.samsung.tmowfc.wfccontroller")) {
                    type = TYPE_SAMSUNG;
                    //I don't like this (hardcoding)... but the class we want is in an external library.
                    apkFile = "/system/framework/TmoWfcUtils.jar";
                    break;
                } else if (app.packageName.equals("com.android.kineto")){
                    type = TYPE_KINETO;
                    //break;
                }
            }
        }
        switch(type){
            case TYPE_MOVIAL:
                return MovialCallingManager.getInstance(context);
            case TYPE_SAMSUNG:
                return SamsungCallingManager.getInstance(context);
            default:
                return null;
        }

    }

    //Test if Wifi calling is enabled
    public abstract boolean getIPPhoneEnabled(Context context);

    //Toggle Wifi Calling mode(-1=toggle, 0=off, 1=on)
    public abstract void toggleWifi(Context context, int mode);

    public abstract int getPreferred(Context context);

    //Set "preferred" option
    public abstract void setPreferred(Context context, int preferred);
}




Java Source Code List

com.ajhodges.wificallingcontrols.Constants.java
com.ajhodges.wificallingcontrols.PluginApplication.java
com.ajhodges.wificallingcontrols.bundle.BundleScrubber.java
com.ajhodges.wificallingcontrols.bundle.PluginBundleManager.java
com.ajhodges.wificallingcontrols.ipphone.MovialCallingManager.java
com.ajhodges.wificallingcontrols.ipphone.SamsungCallingManager.java
com.ajhodges.wificallingcontrols.ipphone.WifiCallingManager.java
com.ajhodges.wificallingcontrols.receiver.QueryReceiver.java
com.ajhodges.wificallingcontrols.receiver.ToggleReceiver.java
com.ajhodges.wificallingcontrols.receiver.UpdateReceiver.java
com.ajhodges.wificallingcontrols.ui.AbstractPluginActivity.java
com.ajhodges.wificallingcontrols.ui.EditConditionActivity.java
com.ajhodges.wificallingcontrols.ui.EditSettingActivity.java
com.ajhodges.wificallingcontrols.ui.InfoActivity.java
com.ajhodges.wificallingcontrols.widget.ToggleWidgetProvider.java
com.twofortyfouram.locale.BreadCrumber.java
com.twofortyfouram.locale.Constants.java
com.twofortyfouram.locale.Intent.java
com.twofortyfouram.locale.PackageUtilities.java
com.twofortyfouram.locale.api.BuildConfig.java
com.twofortyfouram.locale.api.BuildConfig.java