Skip to content

Commit

Permalink
Code updated to v1.0.0 and README.md update
Browse files Browse the repository at this point in the history
  • Loading branch information
rodion-gudz committed Dec 31, 2020
1 parent a3e641a commit 84c3ce9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
18 changes: 11 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
## What is it?

#### Android Tool is a powerful and beautiful program, created to make popular adb and fastboot commands easier to use. A dark theme, intuitive interface and other features
### Latest Version: **0.9.9**
### Latest Version: **1.0.0**
## Main Features:
* #### Batch and single app installation (.apk files)
* #### Disable, enable or uninstall system apps
Expand All @@ -32,16 +32,20 @@
![Links Screenshot](https://i.imgur.com/LZJc3fi.png)

## The Latest Version And Updates
##### You can find the latest version on Github Repository
##### You can find the latest version on Github Repository Releases

## Usage
* #### Download program archive to your OS
* #### Extract it to the desired location
* #### Run executable file "Android Tool.jar"
### First method (Recommended)
* #### Download program .jar file
* #### Open it and click "Install" button to download SDK Platform Tools
* #### Enjoy 😉
### Second method (Portable)
* #### Download a portable zip for your system
* #### Extract him
* #### Open program .jar file and enjoy 😉

## Requirements


* ##### OS (Windows 10, Linux), Mac os support maybe will be later
* ##### OS (Windows (10, 8.1, 8), Linux, MacOS)
* ##### JRE (Java Runtime Environment)

2 changes: 1 addition & 1 deletion src/AndroidTool.kt
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ val userFolder = System.getProperty("user.home").toString()
var SdkDir = userFolder + if (Windows) { "\\.android_tool\\SDK-Tools\\"} else if (Linux) { "/.android_tool/SDK-Tools/" } else { "/.android_tool/SDK-Tools/"}
val ProgramDir = userFolder + if (Windows) { "\\.android_tool\\"} else if (Linux) { "/.android_tool/" } else { "/.android_tool/"}
val programBuildDate = getProgramBuildTime()
const val programVersion = "1.0.0-beta7"
const val programVersion = "1.0.0"
var programVersionLatest = programVersion
open class AndroidTool : Command(){
init {
Expand Down

0 comments on commit 84c3ce9

Please sign in to comment.