File tree Expand file tree Collapse file tree
java/com/singhajit/sherlock/core/investigation Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ public void report(CrashViewModel crashViewModel) {
3939 .setAutoCancel (true );
4040
4141 if (Build .VERSION .SDK_INT >= Build .VERSION_CODES .LOLLIPOP ) {
42- notificationBuilder .setColor (ContextCompat .getColor (context , R .color .colorAccent ));
42+ notificationBuilder .setColor (ContextCompat .getColor (context , R .color .sherlock_colorAccent ));
4343 }
4444
4545 NotificationManager notificationManager = (NotificationManager ) context .getSystemService (Context .NOTIFICATION_SERVICE );
Original file line number Diff line number Diff line change 2020 android : layout_height =" wrap_content"
2121 android : layout_gravity =" start"
2222 android : text =" @{appInfo.attr}"
23- android : textColor =" @color/colorAccent " />
23+ android : textColor =" @color/sherlock_colorAccent " />
2424
2525 <TextView
2626 android : layout_width =" match_parent"
Original file line number Diff line number Diff line change 6666 android : layout_height =" wrap_content"
6767 android : layout_margin =" 10dp"
6868 android : text =" @{viewModel.exactLocationOfCrash}"
69- android : textColor =" @color/colorAccent "
69+ android : textColor =" @color/sherlock_colorAccent "
7070 android : textSize =" 15sp"
7171 android : textStyle =" bold"
7272 tools : text =" Place of crash" />
102102 android : layout_height =" wrap_content"
103103 android : layout_marginBottom =" 10dp"
104104 android : text =" @string/stack_trace"
105- android : textColor =" @color/colorAccent "
105+ android : textColor =" @color/sherlock_colorAccent "
106106 android : textSize =" 15sp"
107107 android : textStyle =" bold" />
108108
146146 android : layout_height =" wrap_content"
147147 android : layout_marginBottom =" 10dp"
148148 android : text =" @string/about_phone"
149- android : textColor =" @color/colorAccent "
149+ android : textColor =" @color/sherlock_colorAccent "
150150 android : textSize =" 15sp"
151151 android : textStyle =" bold" />
152152
183183 android : layout_height =" wrap_content"
184184 android : layout_marginBottom =" 10dp"
185185 android : text =" @string/about_app"
186- android : textColor =" @color/colorAccent "
186+ android : textColor =" @color/sherlock_colorAccent "
187187 android : textSize =" 15sp"
188188 android : textStyle =" bold" />
189189
Original file line number Diff line number Diff line change 4343 android : layout_height =" wrap_content"
4444 android : layout_marginBottom =" 10dp"
4545 android : text =" @{viewModel.place}"
46- android : textColor =" @color/colorAccent " />
46+ android : textColor =" @color/sherlock_colorAccent " />
4747
4848 <TextView
4949 android : layout_width =" wrap_content"
Original file line number Diff line number Diff line change 3535 android : visibility =" @{viewModel.crashNotFoundViewState.visibility}"
3636 android : layout_width =" match_parent"
3737 android : layout_height =" match_parent"
38- android : background =" @color/white "
38+ android : background =" @color/sherlock_white "
3939 android : orientation =" vertical"
4040 android : paddingTop =" 50dp" >
4141
Original file line number Diff line number Diff line change 2525 android : layout_height =" wrap_content"
2626 android : layout_gravity =" start"
2727 android : text =" @string/name"
28- android : textColor =" @color/colorAccent " />
28+ android : textColor =" @color/sherlock_colorAccent " />
2929
3030 <TextView
3131 android : layout_width =" match_parent"
4848 android : layout_height =" wrap_content"
4949 android : layout_gravity =" start"
5050 android : text =" @string/brand"
51- android : textColor =" @color/colorAccent " />
51+ android : textColor =" @color/sherlock_colorAccent " />
5252
5353 <TextView
5454 android : layout_width =" match_parent"
7070 android : layout_height =" wrap_content"
7171 android : layout_gravity =" start"
7272 android : text =" @string/android_api_version"
73- android : textColor =" @color/colorAccent " />
73+ android : textColor =" @color/sherlock_colorAccent " />
7474
7575 <TextView
7676 android : layout_width =" match_parent"
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" utf-8" ?>
22<resources >
3- <color name =" colorPrimary " >#D32F2F</color >
4- <color name =" colorPrimaryDark " >#B71C1C</color >
5- <color name =" colorAccent " >#5B3758</color >
3+ <color name =" sherlock_colorPrimary " >#D32F2F</color >
4+ <color name =" sherlock_colorPrimaryDark " >#B71C1C</color >
5+ <color name =" sherlock_colorAccent " >#5B3758</color >
66
7- <color name =" white" >#FFFFFF</color >
8- <color name =" light_black" >#2e2828</color >
9- <color name =" grey" >#ededed</color >
7+ <color name =" sherlock_white" >#FFFFFF</color >
108</resources >
Original file line number Diff line number Diff line change 66 <style name =" Sherlock.Base" parent =" Theme.AppCompat.Light.DarkActionBar" >
77 <item name =" windowNoTitle" >true</item >
88 <item name =" windowActionBar" >false</item >
9- <item name =" colorPrimary" >@color/colorPrimary </item >
10- <item name =" colorPrimaryDark" >@color/colorPrimaryDark </item >
11- <item name =" colorAccent" >@color/colorAccent </item >
9+ <item name =" colorPrimary" >@color/sherlock_colorPrimary </item >
10+ <item name =" colorPrimaryDark" >@color/sherlock_colorPrimaryDark </item >
11+ <item name =" colorAccent" >@color/sherlock_colorAccent </item >
1212 </style >
1313
1414 <style name =" CardViewStyle" parent =" Theme.AppCompat.Light" >
1818 <item name =" contentPaddingTop" >12dp</item >
1919 <item name =" contentPaddingLeft" >8dp</item >
2020 <item name =" contentPaddingRight" >8dp</item >
21- <item name =" cardBackgroundColor" >@color/white </item >
21+ <item name =" cardBackgroundColor" >@color/sherlock_white </item >
2222 </style >
2323</resources >
You can’t perform that action at this time.
0 commit comments