| 12345678910111213141516171819202122 |
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="Xamarin_Insights.Android" android:versionCode="1" android:versionName="1.0">
- <uses-sdk android:minSdkVersion="21" />
- <application android:label="Xamarin Insights.Android" android:icon="@drawable/icon" android:name="mono.android.app.Application" android:debuggable="true">
- <activity android:icon="@drawable/icon" android:label="Xamarin_Insights.Android" android:noHistory="true" android:screenOrientation="portrait" android:theme="@style/Theme.Splash" android:name="xamarin_insights.android.SplashScreen">
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- <activity android:label="View for FirstViewModel" android:name="xamarin_insights.android.views.FirstView" />
- <provider android:name="mono.MonoRuntimeProvider" android:exported="false" android:initOrder="2147483647" android:authorities="Xamarin_Insights.Android.mono.MonoRuntimeProvider.__mono_init__" />
- <receiver android:name="mono.android.Seppuku">
- <intent-filter>
- <action android:name="mono.android.intent.action.SEPPUKU" />
- <category android:name="mono.android.intent.category.SEPPUKU.Xamarin_Insights.Android" />
- </intent-filter>
- </receiver>
- </application>
- <uses-permission android:name="android.permission.INTERNET" />
- <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
- </manifest>
|