Fixed mimetype in Manifest

This commit is contained in:
Sylvain Berfini 2018-12-07 10:17:39 +01:00
parent e12c82cd20
commit 7614c7c14f
3 changed files with 3 additions and 3 deletions

View file

@ -52,6 +52,7 @@ android {
versionName "4.1"
applicationId getPackageName()
multiDexEnabled true
manifestPlaceholders = [sync_mimetype:"vnd.android.cursor.item/vnd." + getPackageName() + ".provider.sip_address"]
}
applicationVariants.all { variant ->

View file

@ -92,11 +92,10 @@
<data android:scheme="imto" />
</intent-filter>
<intent-filter>
<data android:mimeType="@string/sync_mimetype" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="${sync_mimetype}" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />

View file

@ -189,7 +189,7 @@ public class LinphoneContact implements Serializable, Comparable<LinphoneContact
}
private void addChangesToCommit(ContentProviderOperation operation) {
Log.e("Added operation " + operation);
Log.d("[Contact] Added operation " + operation);
mChangesToCommit.add(operation);
}