Skip to content

Commit

Permalink
Release v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
amirisback committed May 9, 2021
1 parent 8299359 commit ea021e9
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 28 deletions.
66 changes: 42 additions & 24 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,25 @@
# About This Project
[![JitPack](https://jitpack.io/v/amirisback/frogo-log.svg?style=flat-square)](https://jitpack.io/#amirisback/frogo-log)
- SDK for your Log problem to make easier developing android apps
- frogo-log is under huge large development
- frogo-log is Long Term Service
- Line number show
- Toast for easy develop and debug

# Screenshoot Library Sample
![ScreenShoot Apps](docs/image/ss_result_1.png?raw=true)

# Version Release
This Is Latest Release

$version_release = 1.0.1
$version_release = 2.0.0

What's New??

* add: FLog method *
* add: Toast Method *
* Bug Fixing *
* Enhance Performance *
* Refactoring Code *
* Long Term Service *

# Download this project

Expand All @@ -34,7 +40,7 @@ What's New??

dependencies {
// library frogo-log
implementation 'com.github.amirisback:frogo-log:1.0.1'
implementation 'com.github.amirisback:frogo-log:2.0.0'

### Step 3. Add the method of Frogo-Log

Expand All @@ -57,6 +63,24 @@ What's New??
// Function Log Simple Debug without message params
FrogoLog.d()

#### FrogoLog (with line code and Toast
// Function Log Debug (adding context params)
FrogoLog.d("Debug", this@MainActivity)

// Function Log Info (adding context params)
FrogoLog.i("Info", this@MainActivity)

// Function Log Verbose
FrogoLog.v("Verbose", this@MainActivity)

// Function Log Warn (adding context params)
FrogoLog.w("Warn", this@MainActivity)

// Function Log Error (adding context params)
FrogoLog.e("Error", this@MainActivity)

// Function Log Simple Debug without message params
FrogoLog.d(this@MainActivity)

#### FLog (without line code)

Expand All @@ -78,34 +102,28 @@ What's New??
// Function Log Simple Debug without message params
FLog.d()

### Result
![ScreenShoot Apps](docs/image/ss_result_2.png?raw=true)
#### Flog (without line code with toast)

### List method of Frogo-Log Lib
// Function Log Debug (adding context params)
FLog.d("Debug", this@MainActivity)

// Function Log Simple Debug without message params
fun d()

// Function Log Debug
fun d(msg: String?)
// Function Log Info (adding context params)
FLog.i("Info", this@MainActivity)

// Function Log Verbose
fun v(msg: String?)
FLog.v("Verbose", this@MainActivity)

// Function Log Info
fun i(msg: String?)
// Function Log Warn (adding context params)
FLog.w("Warn", this@MainActivity)

// Function Log Warn
fun w(msg: String?)

// Function Log Warn
fun w(e: Throwable?)
// Function Log Error (adding context params)
FLog.e("Error", this@MainActivity)

// Function Log Warn
fun w(e: Exception?)
// Function Log Simple Debug without message params
FLog.d(this@MainActivity)

// Function Log Error
fun e(msg: String?)
### Result
![ScreenShoot Apps](docs/image/ss_result_2.png?raw=true)

### Sample code
For sample code you can see at [This](https://github.com/amirisback/frogo-log/blob/master/app/src/main/java/com/frogobox/logcat/MainActivity.kt)
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ plugins {

android {

def versionMajor = 1
def versionMajor = 2
def versionMinor = 0
def versionPatch = 1
def versionPatch = 0

def appDomain = "com"
def appDevConsole = "frogobox"
Expand Down
Binary file modified docs/image/ss_result_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions frogolog/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ android {
// Declaration apk / aab name
def nameLibrarySub = nameLibrary.toLowerCase().replace(" ", "-")

def versionMajor = 1
def versionMajor = 2
def versionMinor = 0
def versionPatch = 1
def versionPatch = 0

def versionCodeLibrary = (versionMajor * 100) + (versionMinor * 10) + (versionPatch)
def versionNameLibrary = "$versionMajor.$versionMinor.$versionPatch"
Expand Down

0 comments on commit ea021e9

Please sign in to comment.