-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidManifest.xml
40 lines (37 loc) · 2.37 KB
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?xml version="1.0" encoding="utf-8"?>
<manifest package="com.finser"
xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="0.8" android:versionCode="31">
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<uses-sdk android:minSdkVersion="4"></uses-sdk>
<supports-screens android:normalScreens="true" android:largeScreens="true" android:anyDensity="true" android:smallScreens="true" android:resizeable="true"></supports-screens>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"></uses-permission>
<application android:label="@string/app_name" android:debuggable="true" android:icon="@drawable/ic_launcher_finser" android:name="FinserApplication">
<activity android:label="@string/app_name" android:name="MainTabActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver android:label="Finser (4x1)" android:name="FinserWidget">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE"></action>
</intent-filter>
<meta-data android:resource="@xml/finser_appwidget_info"
android:name="android.appwidget.provider">
</meta-data>
</receiver>
<receiver android:label="Finser (1x1)" android:name="FinserWidgetSmall">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE"></action>
</intent-filter>
<meta-data android:resource="@xml/finser_appwidget_small"
android:name="android.appwidget.provider">
</meta-data>
</receiver>
<activity android:label="@string/app_name" android:name=".AddPaymentDialog" android:launchMode="singleInstance" android:theme="@android:style/Theme.Translucent.NoTitleBar"></activity>
<activity android:name=".PaymentsActivity" android:label="@string/app_name"></activity>
<activity android:label="@string/app_name" android:name="AccountsActivity"></activity>
<activity android:label="@string/app_name" android:name="AddPaymentActivity"></activity>
<activity android:name="Preferences" android:label="Ustawienia"></activity>
</application>
</manifest>