Move FDN-specific classes into own package.
Trying to clean things up to have better organization while dealing
with making fdn settings SIM-specific.
The only thing which changed materially in the classes themselves...
- Rename package names to include ".settings.fdn";
- Putting in required imports (mostly for R and PhoneGlobals).
Bug: 18114923
Change-Id: I5c4b575641ef52d1ee562ca35552f2822e64e385
diff --git a/src/com/android/phone/PhoneGlobals.java b/src/com/android/phone/PhoneGlobals.java
index 55449d7..62eb272 100644
--- a/src/com/android/phone/PhoneGlobals.java
+++ b/src/com/android/phone/PhoneGlobals.java
@@ -68,7 +68,7 @@
* phone process.
*/
public class PhoneGlobals extends ContextWrapper {
- /* package */ static final String LOG_TAG = "PhoneApp";
+ public static final String LOG_TAG = "PhoneApp";
/**
* Phone app-wide debug level:
@@ -481,7 +481,7 @@
/**
* Returns the Phone associated with this instance
*/
- static Phone getPhone() {
+ public static Phone getPhone() {
return getInstance().phone;
}