Skip to content

Commit 3b7b2aa

Browse files
committed
update docs/properties for v1.1.1
1 parent ffe516a commit 3b7b2aa

File tree

3 files changed

+13
-9
lines changed

3 files changed

+13
-9
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## Version 1.1.1 *(2017-09-02)*
4+
5+
* Fix to close filereaders in CpuFreqDataModule after reading data
6+
37
## Version 1.1.0 *(2017-09-01)*
48

59
* Android O support (Note: CpuUsageModule/CpuFreqModule will not work on Android O and above)

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -24,25 +24,25 @@ so you just need to add the followings to your ***build.gradle*** file:
2424

2525
```groovy
2626
dependencies {
27-
debugCompile 'com.ms-square:debugoverlay:1.1.0'
28-
releaseCompile 'com.ms-square:debugoverlay-no-op:1.1.0'
29-
testCompile 'com.ms-square:debugoverlay-no-op:1.1.0'
27+
debugCompile 'com.ms-square:debugoverlay:1.1.1'
28+
releaseCompile 'com.ms-square:debugoverlay-no-op:1.1.1'
29+
testCompile 'com.ms-square:debugoverlay-no-op:1.1.1'
3030
}
3131
```
3232

33-
Please note that `com.ms-square:debugoverlay:1.1.0` will add `android.permission.SYSTEM_ALERT_WINDOW` to your app.
33+
Please note that `com.ms-square:debugoverlay:1.1.1` will add `android.permission.SYSTEM_ALERT_WINDOW` to your app.
3434
Threfore, you should avoid to use that dependency for your release build.
3535

3636
FYI, the following table describes the total number of method/field references in this library's release aar.
3737
This data is acquired by using [Dexcount Gradle Plugin](https://github.com/KeepSafe/dexcount-gradle-plugin).
3838

3939
| library | methods | fields |
4040
|:------------- |:-------------|:-------------|
41-
|com.ms-square:debugoverlay:1.1.0|565|249|
42-
|com.ms-square:debugoverlay-no-op:1.1.0|142|37|
41+
|com.ms-square:debugoverlay:1.1.1|565|249|
42+
|com.ms-square:debugoverlay-no-op:1.1.1|142|37|
4343

4444
Due to the extensibility of this library, no-op version unfortunately has more than a few methods.
45-
If you want to eliminate such method count in your release build, consider having separate `Application` class only for your debug build which uses this library and just specify `debugCompile 'com.ms-square:debugoverlay:1.1.0'` in the dependencies section of build.gradle.
45+
If you want to eliminate such method count in your release build, consider having separate `Application` class only for your debug build which uses this library and just specify `debugCompile 'com.ms-square:debugoverlay:1.1.1'` in the dependencies section of build.gradle.
4646

4747
Usage
4848
------

gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ android.enableBuildCache=true
2626

2727
# For maven central
2828
GROUP=com.ms-square
29-
VERSION_NAME=1.1.0
30-
VERSION_CODE=3
29+
VERSION_NAME=1.1.1
30+
VERSION_CODE=4
3131
POM_PACKAGING=aar
3232
POM_DESCRIPTION=Android library to display various debugging information in an overlay window
3333

0 commit comments

Comments
 (0)