Fixed mimetype in Manifest
This commit is contained in:
parent
e12c82cd20
commit
7614c7c14f
3 changed files with 3 additions and 3 deletions
|
@ -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 ->
|
||||
|
|
|
@ -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" />
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue