service: refactor to DRingService

* Remove SipService
* DRingService is now just an async Java wrapper around dring
* Model is now built in LocalService

This presents the DRing interface through Android AIDL.
It allows lighter and more reactive UI code by reducing
the amount to async operations.
All the data modeling is also done in the same memory space,
improving coherence and reducing IPC overhead.

Tuleap: #102
Change-Id: I842f89ec109683722799837b301a3ffee2a9db75
diff --git a/ring-android/app/src/main/AndroidManifest.xml b/ring-android/app/src/main/AndroidManifest.xml
index 1741a9c..fa0667c 100644
--- a/ring-android/app/src/main/AndroidManifest.xml
+++ b/ring-android/app/src/main/AndroidManifest.xml
@@ -169,10 +169,10 @@
             </intent-filter>
         </service>
         <service
-            android:name=".service.SipService"
+            android:name=".service.DRingService"
             android:exported="false" >
             <intent-filter>
-                <action android:name=".service.SipService" />
+                <action android:name=".service.DRingService" />
             </intent-filter>
         </service>
     </application>