├── sample ├── .gitignore ├── proguard-rules.pro ├── src │ └── main │ │ ├── res │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── styles.xml │ │ │ └── strings.xml │ │ ├── values-v14 │ │ │ └── styles.xml │ │ ├── values-v21 │ │ │ └── styles.xml │ │ └── layout │ │ │ ├── activity_main.xml │ │ │ └── activity_custom_error.xml │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── henorek │ │ └── sample │ │ └── crashczyk │ │ ├── activity │ │ ├── MainActivity.java │ │ └── CustomErrorActivity.java │ │ └── SampleCrashingApplication.java └── build.gradle ├── library ├── .gitignore ├── src │ └── main │ │ ├── res │ │ ├── drawable-hdpi │ │ │ └── crashczyk_error_image.png │ │ ├── drawable-mdpi │ │ │ └── crashczyk_error_image.png │ │ ├── drawable-xhdpi │ │ │ └── crashczyk_error_image.png │ │ ├── drawable-xxhdpi │ │ │ └── crashczyk_error_image.png │ │ ├── drawable-xxxhdpi │ │ │ └── crashczyk_error_image.png │ │ ├── values │ │ │ ├── styles.xml │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ └── strings.xml │ │ ├── values-v14 │ │ │ └── styles.xml │ │ ├── values-v21 │ │ │ └── styles.xml │ │ └── layout │ │ │ └── crashczyk_default_error_activity.xml │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── henorek │ │ └── crashczyk │ │ ├── activity │ │ └── DefaultErrorActivity.java │ │ └── Crashczyk.java ├── gradle.properties └── build.gradle ├── images └── frontpage.png ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── .gitignore ├── NOTICE ├── settings.gradle ├── gradle.properties ├── gradlew.bat ├── gradlew ├── README.md └── LICENSE /sample/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /library/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /sample/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # No special config needed for CustomActivityOnCrash! :D 2 | -------------------------------------------------------------------------------- /images/frontpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henorek/crashczyk/HEAD/images/frontpage.png -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henorek/crashczyk/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | */build 3 | */*.iml 4 | *.iml 5 | local.properties 6 | .idea 7 | .idea/** 8 | .gradle 9 | *.hprof 10 | -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henorek/crashczyk/HEAD/sample/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henorek/crashczyk/HEAD/sample/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henorek/crashczyk/HEAD/sample/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henorek/crashczyk/HEAD/sample/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/crashczyk_error_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henorek/crashczyk/HEAD/library/src/main/res/drawable-hdpi/crashczyk_error_image.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/crashczyk_error_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henorek/crashczyk/HEAD/library/src/main/res/drawable-mdpi/crashczyk_error_image.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/crashczyk_error_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henorek/crashczyk/HEAD/library/src/main/res/drawable-xhdpi/crashczyk_error_image.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/crashczyk_error_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henorek/crashczyk/HEAD/library/src/main/res/drawable-xxhdpi/crashczyk_error_image.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxxhdpi/crashczyk_error_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henorek/crashczyk/HEAD/library/src/main/res/drawable-xxxhdpi/crashczyk_error_image.png -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- 1 | Custom Activity on Crash library 2 | Copyright (c) 2014-2015 Eduard Ereza, http://www.eduardereza.com/ 3 | 4 | This product is licensed under the terms of the Apache Software License 2.0. See the LICENSE file for the full license text. -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Apr 10 15:27:10 PDT 2013 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip 7 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2015 Eduard Ereza Martínez 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * 7 | * You may obtain a copy of the License at 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | include ':sample', ':library' 18 | -------------------------------------------------------------------------------- /library/gradle.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright 2015 Eduard Ereza Martínez 3 | # 4 | # Licensed under the Apache License, Version 2.0 (the "License"); 5 | # you may not use this file except in compliance with the License. 6 | # 7 | # You may obtain a copy of the License at 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | # 16 | 17 | POM_NAME=KrawczykOnCrash library 18 | POM_ARTIFACT_ID=krawczykoncrash 19 | POM_PACKAGING=aar -------------------------------------------------------------------------------- /library/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | 19 | 24 | 25 | -------------------------------------------------------------------------------- /sample/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | 19 | 24 | 25 | 26 | 27 |