Skip to content

Commit 2aa1a37

Browse files
committed
README.md update
1 parent 5b11783 commit 2aa1a37

6 files changed

Lines changed: 47 additions & 29 deletions

File tree

.idea/artifacts/Android_Tool_jar.xml

Lines changed: 11 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/libraries/Intellij_Forms.xml

Lines changed: 7 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Android-Tool.iml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
</content>
88
<orderEntry type="inheritedJdk" />
99
<orderEntry type="sourceFolder" forTests="false" />
10-
<orderEntry type="library" name="KotlinJavaRuntime" level="project" />
11-
<orderEntry type="library" name="FlatLaf-library" level="project" />
12-
<orderEntry type="library" name="Maven-Artifact" level="project" />
13-
<orderEntry type="library" name="Intellij Forms" level="project" />
10+
<orderEntry type="library" exported="" name="KotlinJavaRuntime" level="project" />
11+
<orderEntry type="library" exported="" name="FlatLaf-library" level="project" />
12+
<orderEntry type="library" exported="" name="Maven-Artifact" level="project" />
13+
<orderEntry type="library" exported="" name="Intellij Forms" level="project" />
1414
</component>
1515
</module>

README.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,33 +6,37 @@
66
## What is it?
77

88
#### 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
9-
### Latest Version: **1.0.0**
9+
### Latest Version: **1.1.0**
1010
## Main Features:
1111
* #### Batch and single app installation (.apk files)
1212
* #### Disable, enable or uninstall system apps
13+
* #### Open, force stop or clear data of your apps
1314
* #### Receive and save logs from your device
1415
* #### Install or boot custom recovery or wipe partitions
1516
* #### Always relevant links to firmware and everything you need
1617
* #### And not only 😉
1718

1819
## Links:
1920
* #### Telegram channel - [@android_tooI](https://t.me/android_tooI)
21+
* #### Telegram chat - [@android_tooI_chat](https://t.me/android_tooI_chat)
2022
* #### 4PDA thread - [Android Tool](https://4pda.ru/forum/index.php?showtopic=1000362)
21-
23+
2224
## Screenshots:
2325
* ##### Adb
24-
![Adb Screenshot](https://i.imgur.com/xJH0I76.png)
26+
![Adb Screenshot](https://i.imgur.com/zwdtIX3.png)
2527
* ##### Logcat
26-
![Logcat Screenshot](https://i.imgur.com/QDJqQBW.png)
28+
![Logcat Screenshot](https://i.imgur.com/lwLcS2Z.png)
2729
* ##### Fastboot
28-
![Fastboot Screenshot](https://i.imgur.com/gFwkm4K.png)
30+
![Fastboot Screenshot](https://i.imgur.com/yX5PzHs.png)
2931
* ##### Recovery
30-
![Fastboot Screenshot](https://i.imgur.com/PF3DEHP.png)
32+
![Recovery Screenshot](https://i.imgur.com/1dulPXb.png)
33+
* ##### Console
34+
![Console Screenshot](https://i.imgur.com/ukc21M6.png)
3135
* ##### Links
32-
![Links Screenshot](https://i.imgur.com/LZJc3fi.png)
36+
![Links Screenshot](https://i.imgur.com/EmmYFbv.png)
3337

3438
## The Latest Version And Updates
35-
##### You can find the latest version on Github Repository Releases
39+
##### You can find the latest version on [Github Repository Releases](https://github.com/fast-geek/Android-Tool/releases)
3640

3741
## Usage
3842
### First method (Recommended)

src/AboutDialog.java

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
import com.intellij.uiDesigner.core.GridConstraints;
2+
import com.intellij.uiDesigner.core.GridLayoutManager;
3+
14
import javax.swing.*;
25
import javax.swing.plaf.FontUIResource;
36
import javax.swing.text.StyleContext;
@@ -34,31 +37,31 @@ public static void main() {
3437
*/
3538
private void $$$setupUI$$$() {
3639
contentPane = new JPanel();
37-
contentPane.setLayout(new com.intellij.uiDesigner.core.GridLayoutManager(1, 1, new Insets(10, 10, 10, 10), -1, -1));
40+
contentPane.setLayout(new GridLayoutManager(1, 1, new Insets(10, 10, 10, 10), -1, -1));
3841
final JPanel panel1 = new JPanel();
39-
panel1.setLayout(new com.intellij.uiDesigner.core.GridLayoutManager(3, 4, new Insets(0, 0, 0, 0), -1, -1));
40-
contentPane.add(panel1, new com.intellij.uiDesigner.core.GridConstraints(0, 0, 1, 1, com.intellij.uiDesigner.core.GridConstraints.ANCHOR_CENTER, com.intellij.uiDesigner.core.GridConstraints.FILL_BOTH, com.intellij.uiDesigner.core.GridConstraints.SIZEPOLICY_CAN_SHRINK | com.intellij.uiDesigner.core.GridConstraints.SIZEPOLICY_CAN_GROW, com.intellij.uiDesigner.core.GridConstraints.SIZEPOLICY_CAN_SHRINK | com.intellij.uiDesigner.core.GridConstraints.SIZEPOLICY_CAN_GROW, null, null, null, 0, false));
42+
panel1.setLayout(new GridLayoutManager(3, 4, new Insets(0, 0, 0, 0), -1, -1));
43+
contentPane.add(panel1, new GridConstraints(0, 0, 1, 1, GridConstraints.ANCHOR_CENTER, GridConstraints.FILL_BOTH, GridConstraints.SIZEPOLICY_CAN_SHRINK | GridConstraints.SIZEPOLICY_CAN_GROW, GridConstraints.SIZEPOLICY_CAN_SHRINK | GridConstraints.SIZEPOLICY_CAN_GROW, null, null, null, 0, false));
4144
final JLabel label1 = new JLabel();
4245
label1.setIcon(new ImageIcon(getClass().getResource("/icon/appIcon.png")));
4346
label1.setText("");
44-
panel1.add(label1, new com.intellij.uiDesigner.core.GridConstraints(0, 0, 3, 1, com.intellij.uiDesigner.core.GridConstraints.ANCHOR_WEST, com.intellij.uiDesigner.core.GridConstraints.FILL_NONE, com.intellij.uiDesigner.core.GridConstraints.SIZEPOLICY_FIXED, com.intellij.uiDesigner.core.GridConstraints.SIZEPOLICY_FIXED, null, null, null, 0, false));
47+
panel1.add(label1, new GridConstraints(0, 0, 3, 1, GridConstraints.ANCHOR_WEST, GridConstraints.FILL_NONE, GridConstraints.SIZEPOLICY_FIXED, GridConstraints.SIZEPOLICY_FIXED, null, null, null, 0, false));
4548
final JLabel label2 = new JLabel();
4649
Font label2Font = this.$$$getFont$$$(null, -1, 36, label2.getFont());
4750
if (label2Font != null) label2.setFont(label2Font);
4851
label2.setText("Android-Tool");
49-
panel1.add(label2, new com.intellij.uiDesigner.core.GridConstraints(0, 1, 1, 3, com.intellij.uiDesigner.core.GridConstraints.ANCHOR_CENTER, com.intellij.uiDesigner.core.GridConstraints.FILL_HORIZONTAL, com.intellij.uiDesigner.core.GridConstraints.SIZEPOLICY_FIXED, com.intellij.uiDesigner.core.GridConstraints.SIZEPOLICY_FIXED, null, null, null, 0, false));
52+
panel1.add(label2, new GridConstraints(0, 1, 1, 3, GridConstraints.ANCHOR_CENTER, GridConstraints.FILL_HORIZONTAL, GridConstraints.SIZEPOLICY_FIXED, GridConstraints.SIZEPOLICY_FIXED, null, null, null, 0, false));
5053
final JLabel label3 = new JLabel();
5154
label3.setText("Build");
52-
panel1.add(label3, new com.intellij.uiDesigner.core.GridConstraints(2, 1, 1, 1, com.intellij.uiDesigner.core.GridConstraints.ANCHOR_WEST, com.intellij.uiDesigner.core.GridConstraints.FILL_NONE, com.intellij.uiDesigner.core.GridConstraints.SIZEPOLICY_FIXED, com.intellij.uiDesigner.core.GridConstraints.SIZEPOLICY_FIXED, null, null, null, 0, false));
55+
panel1.add(label3, new GridConstraints(2, 1, 1, 1, GridConstraints.ANCHOR_WEST, GridConstraints.FILL_NONE, GridConstraints.SIZEPOLICY_FIXED, GridConstraints.SIZEPOLICY_FIXED, null, null, null, 0, false));
5356
final JLabel label4 = new JLabel();
5457
label4.setText("Version");
55-
panel1.add(label4, new com.intellij.uiDesigner.core.GridConstraints(1, 1, 1, 1, com.intellij.uiDesigner.core.GridConstraints.ANCHOR_WEST, com.intellij.uiDesigner.core.GridConstraints.FILL_NONE, com.intellij.uiDesigner.core.GridConstraints.SIZEPOLICY_FIXED, com.intellij.uiDesigner.core.GridConstraints.SIZEPOLICY_FIXED, null, null, null, 0, false));
58+
panel1.add(label4, new GridConstraints(1, 1, 1, 1, GridConstraints.ANCHOR_WEST, GridConstraints.FILL_NONE, GridConstraints.SIZEPOLICY_FIXED, GridConstraints.SIZEPOLICY_FIXED, null, null, null, 0, false));
5659
buildLabel = new JLabel();
5760
buildLabel.setText("");
58-
panel1.add(buildLabel, new com.intellij.uiDesigner.core.GridConstraints(2, 2, 1, 2, com.intellij.uiDesigner.core.GridConstraints.ANCHOR_WEST, com.intellij.uiDesigner.core.GridConstraints.FILL_NONE, com.intellij.uiDesigner.core.GridConstraints.SIZEPOLICY_FIXED, com.intellij.uiDesigner.core.GridConstraints.SIZEPOLICY_FIXED, null, null, null, 0, false));
61+
panel1.add(buildLabel, new GridConstraints(2, 2, 1, 2, GridConstraints.ANCHOR_WEST, GridConstraints.FILL_NONE, GridConstraints.SIZEPOLICY_FIXED, GridConstraints.SIZEPOLICY_FIXED, null, null, null, 0, false));
5962
versionLabel = new JLabel();
6063
versionLabel.setText("");
61-
panel1.add(versionLabel, new com.intellij.uiDesigner.core.GridConstraints(1, 2, 1, 2, com.intellij.uiDesigner.core.GridConstraints.ANCHOR_WEST, com.intellij.uiDesigner.core.GridConstraints.FILL_NONE, com.intellij.uiDesigner.core.GridConstraints.SIZEPOLICY_FIXED, com.intellij.uiDesigner.core.GridConstraints.SIZEPOLICY_FIXED, null, null, null, 0, false));
64+
panel1.add(versionLabel, new GridConstraints(1, 2, 1, 2, GridConstraints.ANCHOR_WEST, GridConstraints.FILL_NONE, GridConstraints.SIZEPOLICY_FIXED, GridConstraints.SIZEPOLICY_FIXED, null, null, null, 0, false));
6265
}
6366

6467
/**

0 commit comments

Comments
 (0)