| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
…line with updates to HttpsURLConn service layer. V5 endpoint tested successfully. Instructional files within quickstart require further updates. Reverted quickstart to original V1 state with installation message signing changes commented out.
There was a problem hiding this comment.
Updates the Android “Shapes App” quickstart to integrate the approov-service httpsurlconn module and provide commented reference wiring for installation message-signing, while tweaking request behavior to better support signed targets.
Changes:
Copilot reviewed 4 out of 4 changed files in this pull request and generated 4 comments.
| File | Description |
|---|---|
| shapes-app/settings.gradle | Adds :approov-service module inclusion and maps it to a local directory |
| shapes-app/app/build.gradle | Raises minSdkVersion and adds dependency on :approov-service |
| shapes-app/app/src/main/java/io/approov/shapes/ShapesApp.java | Adds commented imports and commented message-signing setup; updates example initialization line |
| shapes-app/app/src/main/java/io/approov/shapes/MainActivity.java | Disables redirect following for the shapes request |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Sorry, something went wrong.
| //include ':approov-sdk' | ||
| include ':app' | ||
| include ':approov-service' | ||
| project(':approov-service').projectDir = new File('/Users/charlesoj/Developer/Quickstarts/approov-service-httpsurlconn/approov-service') |
| // Keep the originally signed request target unchanged (redirects can invalidate signatures). | ||
| connection.setInstanceFollowRedirects(false); | ||
| connection.addRequestProperty("Api-Key", getResources().getString(R.string.shapes_api_key)); |
| defaultConfig { | ||
| applicationId "io.approov.shapes" | ||
| minSdkVersion 21 | ||
| minSdkVersion 23 |
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
| Back | FazBrowse Home | New Git URL |
Updates quickstart integration work; keeps v1 runtime behavior with v5/message-signing changes commented for reference.