@@ -144,15 +144,15 @@ restartActivity(Class<? extends Activity>);
144
144
```
145
145
> This method sets the activity that must be launched by the error activity when the user presses the button to restart the app.
146
146
> If you don't set it (or set it to null), the library will use the first activity on your manifest that has an intent-filter with action
147
- > ` com.developer.kinda .RESTART ` , and if there is none, the default launchable activity on your app.
147
+ > ` com.developer.crashx .RESTART ` , and if there is none, the default launchable activity on your app.
148
148
> If no launchable activity can be found and you didn't specify any, the "restart app" button will become a "close app" button,
149
149
> even if ` showRestartButton ` is set to ` true ` .
150
150
>
151
151
> As noted, you can also use the following intent-filter to specify the restart activity:
152
152
> ``` xml
153
153
> <intent-filter >
154
154
> <!-- ... -->
155
- > <action android : name =" com.developer.kinda .RESTART" />
155
+ > <action android : name =" com.developer.crashx .RESTART" />
156
156
> </intent-filter >
157
157
> ```
158
158
@@ -162,13 +162,13 @@ errorActivity(Class<? extends Activity>);
162
162
> This method allows you to set a custom error activity to be launched , instead of the default one .
163
163
> Use it if you need further customization that is not just strings , colors or themes (see below ).
164
164
> If you don ' t set it (or set it to null), the library will use the first activity on your manifest that has an intent-filter with action
165
- > `com.developer.kinda .ERROR`, and if there is none, a default error activity from the library.
165
+ > `com.developer.crashx .ERROR`, and if there is none, a default error activity from the library.
166
166
> If you use this, the activity **must** be declared in your `AndroidManifest.xml`, with `process` set to `:error_activity`.
167
167
>
168
168
> Example:
169
169
> ```xml
170
170
> <activity
171
- > android:name="com.developer.kinda .sample.CustomErrorActivity"
171
+ > android:name="com.developer.crashx .sample.CustomErrorActivity"
172
172
> android:label="@string/error_title"
173
173
> android:process=":error_activity" />
174
174
> ```
@@ -177,7 +177,7 @@ errorActivity(Class<? extends Activity>);
177
177
> ```xml
178
178
> <intent-filter>
179
179
> <!-- ... -->
180
- > <action android:name="com.developer.kinda .ERROR" />
180
+ > <action android:name="com.developer.crashx .ERROR" />
181
181
> </intent-filter>
182
182
> ```
183
183
@@ -200,7 +200,7 @@ If you want to specify a specific theme only for the error activity, you can do
200
200
201
201
```xml
202
202
<activity
203
- android:name="com.developer.kinda .activity.DefaultErrorActivity"
203
+ android:name="com.developer.crashx .activity.DefaultErrorActivity"
204
204
android:theme="@style/YourThemeHere"
205
205
android:process=":error_activity" />
206
206
```
0 commit comments