-
Notifications
You must be signed in to change notification settings - Fork 1
/
AndroidManifest.xml
30 lines (30 loc) · 1.65 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
<?xml version="1.0" encoding="UTF-8"?>
<manifest android:versionCode="9" android:versionName="1.7"
package="org.blanco.lacuenta" xmlns:android="http://schemas.android.com/apk/res/android">
<application android:allowClearUserData="true"
android:icon="@drawable/icon" android:label="@string/app_name" android:debuggable="false">
<activity android:label="@string/app_name"
android:name=".MainActivity"
android:theme="@style/Theme.LaCuenta">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity android:name=".SettingsActivity"/>
<provider
android:authorities="org.blanco.lacuenta.db.splitscontentprovider" android:name="org.blanco.lacuenta.db.SPLITSContentProvider"/>
<activity android:name=".fragments.GraphFragment" android:theme="@style/Theme.LaCuenta"/>
<activity android:name=".as"/>
<activity android:name=".SplitsChartActivity"/>
<activity android:name=".FBPostActivity"/>
<activity android:name=".ContactDeveloperActivity">
<intent-filter>
<action android:name="org.blanco.lacuenta.CONTACT_DEVELOPER" />
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
</application>
<uses-sdk android:maxSdkVersion="8" android:minSdkVersion="4" android:targetSdkVersion="8"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
</manifest>