Skip to content

Commit

Permalink
[Chore] Release prep (#21)
Browse files Browse the repository at this point in the history
* Add dynamic version code and name

* Add some screenshots

* Added images to the README file

* Change image on README
  • Loading branch information
fmontesino authored Jul 9, 2020
1 parent b0d0b1f commit 8b904d3
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 3 deletions.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ Small application to help Android and Test Engineers to quickly enable/disable g

---

<img src="screenshots/animation1.gif" width="300" />

**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.**


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

#### Quick proxy setup

TODO: Add image here

<img src="screenshots/screenshot35.jpg" width="400" />


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

#### Home Screen Widget

<img src="screenshots/screenshot1.png" width="200" />

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.
It will also allow the user to launch the app to configure the proxy settings, if needed.

#### Quick Setting Tile

<img src="screenshots/screenshot2.png" width="200" />


Similarly to the widget, Android 7.0 and above users will have the option to add a Quick Settings Tile in their Notification Drawer.
This tile will allow the users to toggle the proxy even without having to leave the current application they are using.

Expand Down
8 changes: 6 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,18 @@ plugins {

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

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

android {
compileSdkVersion 29
buildToolsVersion "30.0.0"

defaultConfig {
applicationId "com.kinandcarta.create.proxytoggle"
versionCode 1
versionName "1.0"
versionCode versionMajor * 10000 + versionMinor * 100 + versionPatch
versionName "${versionMajor}.${versionMinor}.${versionPatch}"

minSdkVersion 21
targetSdkVersion 29
Expand Down
Binary file added screenshots/animation1.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/animation2.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/screenshot1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/screenshot2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/screenshot3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/screenshot35.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/screenshot4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/screenshot5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 8b904d3

Please sign in to comment.