Skip to content

Commit d77beac

Browse files
committed
update docs
1 parent c03fa34 commit d77beac

File tree

3 files changed

+18
-9
lines changed

3 files changed

+18
-9
lines changed

CHANGELOG.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,19 @@
11
# Change Log
22

3-
## Version 1.1.0 *(2021-03-01)*
3+
## Version 1.1.2 *(17-03-2022)*
4+
* Updated gradle version
5+
* Updated dependencies
6+
* Specified flags for PendingIntent
7+
* Increased minSdkVersion to 21
8+
9+
10+
## Version 1.1.0 *(01-03-2021)*
411
Added no-op version.
512

613

7-
## Version 1.0.1 *(2020-11-08)*
14+
## Version 1.0.1 *(08-11-2020)*
815
Made resources private.
916

1017

11-
## Version 1.0.0 *(2020-01-06)*
18+
## Version 1.0.0 *(06-01-2020)*
1219
Initial release

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Android Remote Debugger
22
[![](https://jitpack.io/v/zerobranch/android-remote-debugger.svg)](https://jitpack.io/#zerobranch/android-remote-debugger)
3-
[![API](https://img.shields.io/badge/API-19%2B-brightgreen.svg?style=flat)](https://android-arsenal.com/api?level=19) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/zerobranch/android-remote-debugger/blob/master/LICENSE)
3+
[![API](https://img.shields.io/badge/API-21%2B-brightgreen.svg?style=flat)](https://android-arsenal.com/api?level=21)
4+
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/zerobranch/android-remote-debugger/blob/master/LICENSE)
45
[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-Android%20Remote%20Debugger-green.svg?style=flat)](https://android-arsenal.com/details/1/8040)
56

67
**Android Remote Debugger** is a library for remote debugging Android applications. It allows you to view logs, databases, shared preferences and network requests directly in the browser.
@@ -47,8 +48,8 @@ allprojects {
4748
Add the following dependency to your module's build.gradle:
4849
```groovy
4950
dependencies {
50-
debugImplementation 'com.github.zerobranch.android-remote-debugger:debugger:1.1.0'
51-
releaseImplementation 'com.github.zerobranch.android-remote-debugger:noop:1.1.0'
51+
debugImplementation 'com.github.zerobranch.android-remote-debugger:debugger:1.1.2'
52+
releaseImplementation 'com.github.zerobranch.android-remote-debugger:noop:1.1.2'
5253
}
5354
```
5455
**Note:** The final line above will use a no-op version, which does nothing.

RUSSIAN_README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Android Remote Debugger
22
[![](https://jitpack.io/v/zerobranch/android-remote-debugger.svg)](https://jitpack.io/#zerobranch/android-remote-debugger)
3-
[![API](https://img.shields.io/badge/API-19%2B-brightgreen.svg?style=flat)](https://android-arsenal.com/api?level=19) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/zerobranch/android-remote-debugger/blob/master/LICENSE)
3+
[![API](https://img.shields.io/badge/API-21%2B-brightgreen.svg?style=flat)](https://android-arsenal.com/api?level=21)
4+
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/zerobranch/android-remote-debugger/blob/master/LICENSE)
45
[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-Android%20Remote%20Debugger-green.svg?style=flat)](https://android-arsenal.com/details/1/8040)
56

67
**Android Remote Debugger** - это библиотека для удаленной отладки Android приложений. Она позволяет просматривать логи, базы данных, shared preferences и сетевые запросы прямо в браузере.
@@ -47,8 +48,8 @@ allprojects {
4748
Добавьте в build.gradle вашего модуля следующую зависимость:
4849
```groovy
4950
dependencies {
50-
debugImplementation 'com.github.zerobranch.android-remote-debugger:debugger:1.1.0'
51-
releaseImplementation 'com.github.zerobranch.android-remote-debugger:noop:1.1.0'
51+
debugImplementation 'com.github.zerobranch.android-remote-debugger:debugger:1.1.2'
52+
releaseImplementation 'com.github.zerobranch.android-remote-debugger:noop:1.1.2'
5253
}
5354
```
5455
**Примечание:** В последней строке выше будет использоваться no-op версия, которая ничего не делает. Её следует использовать только в релизных сборках. Это делает невозможным запуск сервера в релизной сборке.

0 commit comments

Comments
 (0)