Skip to content

Commit 8b904d3

Browse files
authored
[Chore] Release prep (#21)
* Add dynamic version code and name * Add some screenshots * Added images to the README file * Change image on README
1 parent b0d0b1f commit 8b904d3

File tree

10 files changed

+16
-3
lines changed

10 files changed

+16
-3
lines changed

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ Small application to help Android and Test Engineers to quickly enable/disable g
99

1010
---
1111

12+
<img src="screenshots/animation1.gif" width="300" />
13+
1214
**It's everyone's responsibility to keep this document up to date as part of each release, or if you find something that needs updating.**
1315

1416

@@ -53,17 +55,24 @@ At the moment of writing this, Hilt and JaCoCo are not totally compatible, so th
5355

5456
#### Quick proxy setup
5557

56-
TODO: Add image here
58+
59+
<img src="screenshots/screenshot35.jpg" width="400" />
60+
5761

5862
Easy setup: just add your desired IP and port, enable the proxy and _voilà!_, all done, your whole device will be proxied.
5963

6064
#### Home Screen Widget
6165

66+
<img src="screenshots/screenshot1.png" width="200" />
67+
6268
The app features a Home Screen widget that the user can use to quickly toggle the proxy with the last used setup, without having to even open the app.
6369
It will also allow the user to launch the app to configure the proxy settings, if needed.
6470

6571
#### Quick Setting Tile
6672

73+
<img src="screenshots/screenshot2.png" width="200" />
74+
75+
6776
Similarly to the widget, Android 7.0 and above users will have the option to add a Quick Settings Tile in their Notification Drawer.
6877
This tile will allow the users to toggle the proxy even without having to leave the current application they are using.
6978

app/build.gradle

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,18 @@ plugins {
88

99
apply from: rootProject.file("jacoco.gradle")
1010

11+
def versionMajor = 1
12+
def versionMinor = 0
13+
def versionPatch = 0
14+
1115
android {
1216
compileSdkVersion 29
1317
buildToolsVersion "30.0.0"
1418

1519
defaultConfig {
1620
applicationId "com.kinandcarta.create.proxytoggle"
17-
versionCode 1
18-
versionName "1.0"
21+
versionCode versionMajor * 10000 + versionMinor * 100 + versionPatch
22+
versionName "${versionMajor}.${versionMinor}.${versionPatch}"
1923

2024
minSdkVersion 21
2125
targetSdkVersion 29

screenshots/animation1.gif

2.35 MB
Loading

screenshots/animation2.gif

1.5 MB
Loading

screenshots/screenshot1.png

585 KB
Loading

screenshots/screenshot2.png

161 KB
Loading

screenshots/screenshot3.png

74.8 KB
Loading

screenshots/screenshot35.jpg

123 KB
Loading

screenshots/screenshot4.png

79.1 KB
Loading

screenshots/screenshot5.png

75.1 KB
Loading

0 commit comments

Comments
 (0)