Allow customization of service name.
This commit is contained in:
parent
7c78912dc7
commit
7899a0f811
2 changed files with 4 additions and 1 deletions
|
@ -103,7 +103,9 @@
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</activity>
|
</activity>
|
||||||
|
|
||||||
<service android:name="org.linphone.LinphoneService" android:stopWithTask="false"/>
|
<service android:name="org.linphone.LinphoneService"
|
||||||
|
android:label="@string/service_name"
|
||||||
|
android:stopWithTask="false"/>
|
||||||
|
|
||||||
<receiver android:name="org.linphone.NetworkManager">
|
<receiver android:name="org.linphone.NetworkManager">
|
||||||
<intent-filter><action android:name="android.net.conn.CONNECTIVITY_CHANGE"></action></intent-filter>
|
<intent-filter><action android:name="android.net.conn.CONNECTIVITY_CHANGE"></action></intent-filter>
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
<string name="picture_name_format">linphone-mms-%s.jpg</string>
|
<string name="picture_name_format">linphone-mms-%s.jpg</string>
|
||||||
|
|
||||||
<string name="app_name">Linphone</string>
|
<string name="app_name">Linphone</string>
|
||||||
|
<string name="service_name">Linphone Service</string>
|
||||||
<string name="addressbook_label">Linphone</string>
|
<string name="addressbook_label">Linphone</string>
|
||||||
<string name="notification_title">Linphone</string>
|
<string name="notification_title">Linphone</string>
|
||||||
<string name="wait_dialog_text">Starting up</string>
|
<string name="wait_dialog_text">Starting up</string>
|
||||||
|
|
Loading…
Reference in a new issue