Change-Id: Id6a0fac91919f0ae68b27eddaa34a8a5f669a2ae Signed-off-by: Ricky Barrette <rickbarrette@gmail.com>
33 lines
1.1 KiB
XML
33 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.TwentyCodes.android.ExceptionReportViewer"
|
|
android:versionCode="1"
|
|
android:versionName="1.0" >
|
|
|
|
<uses-sdk android:minSdkVersion="7" />
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<application
|
|
android:icon="@drawable/ic_launcher"
|
|
android:label="@string/app_name" >
|
|
<activity
|
|
android:name=".Main"
|
|
android:label="@string/app_name" >
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity android:name="com.TwentyCodes.android.exception.ExceptionReportActivity" >
|
|
</activity>
|
|
|
|
<service
|
|
android:name="com.TwentyCodes.android.exception.ReportPostingService"
|
|
android:enabled="true"
|
|
android:process=":ExceptionReportingService" >
|
|
</service>
|
|
</application>
|
|
|
|
</manifest> |