add a BufferedWriter extension for write line
This commit is contained in:
parent
0054618092
commit
730fd8fce6
3 changed files with 11 additions and 3 deletions
|
@ -6,7 +6,7 @@ buildscript {
|
|||
propMinSdkVersion = 16
|
||||
propTargetSdkVersion = propCompileSdkVersion
|
||||
propVersionCode = 1
|
||||
propVersionName = '3.7.3'
|
||||
propVersionName = '3.7.4'
|
||||
kotlin_version = '1.2.10'
|
||||
support_libs = '27.0.2'
|
||||
}
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
package com.simplemobiletools.commons.extensions
|
||||
|
||||
import java.io.BufferedWriter
|
||||
|
||||
fun BufferedWriter.writeLn(line: String) {
|
||||
write(line)
|
||||
newLine()
|
||||
}
|
|
@ -287,10 +287,10 @@
|
|||
<string name="joda_title">Joda-Time (Java-dato-erstatning)</string>
|
||||
<string name="stetho_title">Stetho (debugging databases)</string>
|
||||
<string name="otto_title">Otto (event bus)</string>
|
||||
<string name="photoview_title">PhotoView (zoombare GIF'er)</string>
|
||||
<string name="photoview_title">PhotoView (zoombare GIF\'er)</string>
|
||||
<string name="pattern_title">PatternLockView (mønsterbeskyttelse)</string>
|
||||
<string name="reprint_title">Reprint (beskyttelse af fingeraftryk)</string>
|
||||
<string name="gif_drawable_title">Gif Drawable (indlæser GIF'er)</string>
|
||||
<string name="gif_drawable_title">Gif Drawable (indlæser GIF\'er)</string>
|
||||
<string name="autofittextview_title">AutoFitTextView (resizing text)</string>
|
||||
<string name="robolectric_title">Robolectric (tester framework)</string>
|
||||
<string name="espresso_title">Espresso (tester helper)</string>
|
||||
|
|
Loading…
Reference in a new issue