Files
AndroidJava/dash-wallet/sample-integration-android/AndroidManifest.xml
T
coco 7846a45f2c a
2026-07-03 15:47:27 +08:00

38 lines
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:versionCode="1"
android:versionName="1.0" >
<uses-feature
android:name="android.hardware.touchscreen"
android:required="false" />
<supports-screens
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true" />
<queries>
<intent>
<action android:name="android.intent.action.VIEW" />
<data android:scheme="dash" />
</intent>
</queries>
<application android:label="Dash in-app payment sample"
android:name="androidx.multidex.MultiDexApplication">
<activity
android:name="de.schildbach.wallet.integration.sample.SampleActivity"
android:theme="@android:style/Theme.Light"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>