I have the following in my android_manifest :
<activity
android:name=".RegisterPhone"
android:exported="true"
android:label="@string/titleButtonRewardsPhone"
android:theme="@style/Theme.AppCompat.Light.Dialog">
<intent-filter>
<action android:name="clover.intent.action.MODIFY_ORDER" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
However, the button is the appName. It is not the android:label that I have there. Per the example, it seems the button should be the text in label.
Am I missing something?