Renaming Telecomm to Telecom.

- Changing package from android.telecomm to android.telecom
- Changing package from com.android.telecomm to
com.android.server.telecomm.
- Renaming TelecommManager to TelecomManager.

Bug: 17364651
Change-Id: Ib7b20ba6348948afb391450b4eef8919261f3272
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 30155d4..2c1cd7b 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -16,7 +16,7 @@
 
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
         xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
-        package="com.android.telecomm"
+        package="com.android.server.telecom"
         coreApp="true"
         android:sharedUserId="android.uid.phone">
 
@@ -40,7 +40,7 @@
     <!-- Protects the ability to register any PhoneAccount with a capability flags of either
          PhoneAccount#CAPABILITY_CALL_PROVIDER or PhoneAccount#CAPABILITY_SIM_SUBSCRIPTION. -->
     <permission
-            android:name="com.android.telecomm.permission.REGISTER_PROVIDER_OR_SUBSCRIPTION"
+            android:name="com.android.server.telecom.permission.REGISTER_PROVIDER_OR_SUBSCRIPTION"
             android:label="Register CALL_PROVIDER or SIM_SUBSCRIPTION PhoneAccount"
             android:protectionLevel="signature"/>
 
@@ -48,7 +48,7 @@
          can check for incompatible APIs. -->
     <uses-sdk android:minSdkVersion="19" />
 
-    <application android:name="TelecommApp"
+    <application android:name="TelecomApp"
             android:persistent="true"
             android:label="@string/telecommAppLabel"
             android:icon="@mipmap/ic_launcher_phone"
@@ -173,16 +173,16 @@
                 android:targetActivity="CallActivity"
                 android:exported="true">
             <intent-filter>
-                <action android:name="android.telecomm.action.INCOMING_CALL" />
+                <action android:name="android.telecom.action.INCOMING_CALL" />
                 <category android:name="android.intent.category.DEFAULT" />
             </intent-filter>
         </activity-alias>
 
-        <receiver android:name="TelecommBroadcastReceiver" android:exported="false">
+        <receiver android:name="TelecomBroadcastReceiver" android:exported="false">
             <intent-filter>
-                <action android:name="com.android.telecomm.ACTION_CALL_BACK_FROM_NOTIFICATION" />
-                <action android:name="com.android.telecomm.ACTION_CALL_BACK_FROM_NOTIFICATION" />
-                <action android:name="com.android.telecomm.ACTION_SEND_SMS_FROM_NOTIFICATION" />
+                <action android:name="com.android.server.telecom.ACTION_CALL_BACK_FROM_NOTIFICATION" />
+                <action android:name="com.android.server.telecom.ACTION_CALL_BACK_FROM_NOTIFICATION" />
+                <action android:name="com.android.server.telecom.ACTION_SEND_SMS_FROM_NOTIFICATION" />
             </intent-filter>
         </receiver>