diff --git a/README.md b/README.md index 63f38e1..d964f6a 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,8 @@ Small application to help Android and Test Engineers to quickly enable/disable g --- + + **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.** @@ -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 + + + 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 + + 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 + + + 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. diff --git a/app/build.gradle b/app/build.gradle index 5a01622..ae1eb29 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -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 diff --git a/screenshots/animation1.gif b/screenshots/animation1.gif new file mode 100644 index 0000000..007e627 Binary files /dev/null and b/screenshots/animation1.gif differ diff --git a/screenshots/animation2.gif b/screenshots/animation2.gif new file mode 100644 index 0000000..883d864 Binary files /dev/null and b/screenshots/animation2.gif differ diff --git a/screenshots/screenshot1.png b/screenshots/screenshot1.png new file mode 100644 index 0000000..c282dcc Binary files /dev/null and b/screenshots/screenshot1.png differ diff --git a/screenshots/screenshot2.png b/screenshots/screenshot2.png new file mode 100644 index 0000000..9ac20c6 Binary files /dev/null and b/screenshots/screenshot2.png differ diff --git a/screenshots/screenshot3.png b/screenshots/screenshot3.png new file mode 100644 index 0000000..c79f3de Binary files /dev/null and b/screenshots/screenshot3.png differ diff --git a/screenshots/screenshot35.jpg b/screenshots/screenshot35.jpg new file mode 100644 index 0000000..bc0dc36 Binary files /dev/null and b/screenshots/screenshot35.jpg differ diff --git a/screenshots/screenshot4.png b/screenshots/screenshot4.png new file mode 100644 index 0000000..473afe3 Binary files /dev/null and b/screenshots/screenshot4.png differ diff --git a/screenshots/screenshot5.png b/screenshots/screenshot5.png new file mode 100644 index 0000000..9036e4f Binary files /dev/null and b/screenshots/screenshot5.png differ