File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
app/src/main/java/com/samsung/microbit/service Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -41,8 +41,7 @@ protected boolean isDebug() {
41
41
// Here return true if you want the service to print more logs in LogCat.
42
42
// Library's BuildConfig in current version of Android Studio is always set to DEBUG=false, so
43
43
// make sure you return true or your.app.BuildConfig.DEBUG here.
44
- return true ;
45
- //return BuildConfig.DEBUG;
44
+ return com .samsung .microbit .BuildConfig .DEBUG ;
46
45
}
47
46
48
47
@ Override
Original file line number Diff line number Diff line change @@ -12,4 +12,9 @@ public class PartialFlashingService extends PartialFlashingBaseService {
12
12
protected Class <? extends Activity > getNotificationTarget () {
13
13
return NotificationActivity .class ;
14
14
}
15
+
16
+ @ Override
17
+ protected boolean isDebug () {
18
+ return com .samsung .microbit .BuildConfig .DEBUG ;
19
+ }
15
20
}
You can’t perform that action at this time.
0 commit comments