Skip to content

Commit 37abd75

Browse files
committed
Made resources private
1 parent 3b4088e commit 37abd75

File tree

7 files changed

+11
-10
lines changed

7 files changed

+11
-10
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
jcenter()
88
}
99
dependencies {
10-
classpath 'com.android.tools.build:gradle:3.5.0'
10+
classpath 'com.android.tools.build:gradle:4.1.0'
1111

1212

1313
// NOTE: Do not place your application dependencies here; they belong

debugger/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ android {
2222
dependencies {
2323
implementation 'org.nanohttpd:nanohttpd:2.3.1'
2424
implementation 'com.google.code.gson:gson:2.8.5'
25-
implementation 'androidx.appcompat:appcompat:1.1.0'
26-
implementation 'com.squareup.okhttp3:okhttp:4.2.1'
25+
implementation 'androidx.appcompat:appcompat:1.2.0'
26+
implementation 'com.squareup.okhttp3:okhttp:4.9.0'
2727
}

debugger/src/main/java/zerobranch/androidremotedebugger/AppNotification.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ private void notification(@Nullable String title, @Nullable String description,
107107
builder = new NotificationCompat.Builder(context);
108108
}
109109

110-
builder.setSmallIcon(R.drawable.ic_bug)
110+
builder.setSmallIcon(R.drawable.android_remote_debugger_ic_bug)
111111
.setContentTitle(title)
112112
.setContentText(description)
113113
.setPriority(NotificationCompat.PRIORITY_LOW)
@@ -136,7 +136,7 @@ private void notification(@Nullable String title, @Nullable String description,
136136
builder.setGroup(GROUP_KEY);
137137

138138
NotificationCompat.Builder groupBuilder = new NotificationCompat.Builder(context, CHANNEL_ID)
139-
.setSmallIcon(R.drawable.ic_bug)
139+
.setSmallIcon(R.drawable.android_remote_debugger_ic_bug)
140140
.setGroup(GROUP_KEY)
141141
.setAutoCancel(true)
142142
.setVibrate(new long[]{0L})
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<resources>
3+
<public />
4+
</resources>

debugger/src/main/res/values/strings.xml

Lines changed: 0 additions & 3 deletions
This file was deleted.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Thu Aug 29 11:51:04 MSK 2019
1+
#Sun Nov 08 13:17:22 MSK 2020
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip

0 commit comments

Comments
 (0)