-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #93 from tygalive/master
Mark urls as not translatable, Add Package visibility filtering on Android 30+, Add RTL support for Action Items and Application Title and annotate functions for proper kotlin ingegration
- Loading branch information
Showing
21 changed files
with
501 additions
and
360 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,32 @@ | ||
<manifest package="com.vansuita.materialabout" /> | ||
<manifest package="com.vansuita.materialabout" | ||
xmlns:android="http://schemas.android.com/apk/res/android"> | ||
|
||
<!-- | ||
Package visibility filtering on Android 30+ | ||
@link https://g.co/dev/packagevisibility | ||
@link https://developer.android.com/training/package-visibility/declaring#communicate-host-app | ||
--> | ||
<queries> | ||
<intent> | ||
<action android:name="android.intent.action.VIEW" /> | ||
</intent> | ||
<intent> | ||
<action android:name="android.intent.action.INSERT" /> | ||
</intent> | ||
<intent> | ||
<action android:name="android.intent.action.SENDTO" /> | ||
</intent> | ||
<intent> | ||
<action android:name="android.intent.action.SEND" /> | ||
</intent> | ||
|
||
<package android:name="com.facebook.katana" /> | ||
<package android:name="com.instagram.android" /> | ||
<package android:name="com.twitter.android" /> | ||
<package android:name="com.google.android.apps.plus" /> | ||
<package android:name="com.linkedin.android" /> | ||
<package android:name="com.skype.raider" /> | ||
</queries> | ||
|
||
</manifest> | ||
|
Oops, something went wrong.