Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed font provider requests meta-data position #154

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions EmojiCompat/app/src/main/AndroidManifest.xml
Expand Up @@ -19,18 +19,18 @@
xmlns:tools="http://schemas.android.com/tools"
package="com.example.android.emojicompat">

<!-- Adding this meta-data will download the font when application is installed from
Google Play Store. This way the font will be downloaded and ready when your app starts
for the first time. -->
<meta-data android:name="fontProviderRequests" android:value="Noto Color Emoji Compat"/>

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/Theme.EmojiCompat"
tools:ignore="GoogleAppIndexingWarning">

<!-- Adding this meta-data will download the font when application is installed from
Google Play Store. This way the font will be downloaded and ready when your app starts
for the first time. -->
<meta-data android:name="fontProviderRequests" android:value="Noto Color Emoji Compat"/>

<activity
android:name=".MainActivity"
Expand Down