Added own crash handler for debugging
[DHBWCampusApp.git] / app / src / main / AndroidManifest.xml
index 54385a9476b9c96af0008528bd2052ad21ab7e5f..d8fce1d6f387453453fbf8389c7b42905bf55685 100644 (file)
                 <category android:name="android.intent.category.LAUNCHER" />
             </intent-filter>
         </activity>
+        <activity
+            android:name=".CampusAppCrashHandler"
+            android:theme="@android:style/Theme.Dialog"
+            android:textAppearance="@android:style/TextAppearance.Large"
+            android:windowSoftInputMode="stateHidden">
+            <intent-filter>
+                <action android:name="de.dhbw.campusapp.CRASH_LOG" />
+                <category android:name="android.intent.category.DEFAULT" />
+            </intent-filter>
+        </activity>
     </application>
 
 </manifest>