secant-android-wallet/ui-lib/src/main/AndroidManifest.xml

20 lines
618 B
XML
Raw Normal View History

2021-10-09 07:36:58 -07:00
<?xml version="1.0" encoding="utf-8"?>
2022-09-19 05:24:19 -07:00
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
2021-10-09 07:36:58 -07:00
<uses-permission android:name="android.permission.CAMERA" />
2021-12-02 12:16:20 -08:00
<application
android:icon="@mipmap/ic_launcher_square"
android:roundIcon="@mipmap/ic_launcher_round"
2021-12-09 12:21:30 -08:00
android:supportsRtl="true">
2021-12-03 05:19:15 -08:00
2021-10-09 07:36:58 -07:00
<activity
android:name=".MainActivity"
2021-12-03 05:19:15 -08:00
android:exported="false"
2021-12-09 12:21:30 -08:00
android:label="@string/app_name"
android:windowSoftInputMode="adjustResize"
android:theme="@style/Theme.App.Starting"/>
2021-10-09 07:36:58 -07:00
</application>
</manifest>