Changed notification icon and updated library versions

This commit is contained in:
2015-10-18 16:42:41 +02:00
parent 13cb804fc2
commit 64e0479a37
10 changed files with 7 additions and 7 deletions

View File

@ -24,11 +24,11 @@ public class NetworkNotification extends AbstractNotification {
public NetworkNotification(Context ctx) {
super(ctx);
builder = new NotificationCompat.Builder(ctx);
builder.setSmallIcon(R.drawable.ic_notification_new_message)
.setContentTitle(ctx.getString(R.string.bitmessage_active));
builder.setVisibility(NotificationCompat.VISIBILITY_PUBLIC);
bmc = Singleton.getBitmessageContext(ctx);
builder = new NotificationCompat.Builder(ctx);
builder.setSmallIcon(R.drawable.ic_notification_full_node)
.setContentTitle(ctx.getString(R.string.bitmessage_active))
.setVisibility(NotificationCompat.VISIBILITY_PUBLIC);
}
@SuppressLint("StringFormatMatches")