-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
31 lines (26 loc) · 1.19 KB
/
AndroidManifest.xml
File metadata and controls
31 lines (26 loc) · 1.19 KB
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
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.sebbia.ormbenchmark"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="19" />
<application
android:name="com.sebbia.ormbenchmark.BenchmarkApp"
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity android:name="com.sebbia.ormbenchmark.BenchmarkActivity" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<!-- SugarOrm config -->
<meta-data android:name="VERSION" android:value="1" />
<meta-data android:name="DATABASE" android:value="sugarorm.db" />
<meta-data android:name="DOMAIN_PACKAGE_NAME" android:value="com.sebbia.ormbenchmark.sugarorm" />
<meta-data android:name="QUERY_LOG" android:value="false" />
</application>
</manifest>