-
Notifications
You must be signed in to change notification settings - Fork 0
Httpsurlconn imsinteg prod #5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,11 +1,11 @@ | ||
| arguments=--init-script /home/richardt/.config/Code/User/globalStorage/redhat.java/1.13.0/config_linux/org.eclipse.osgi/51/0/.cp/gradle/init/init.gradle --init-script /home/richardt/.config/Code/User/globalStorage/redhat.java/1.13.0/config_linux/org.eclipse.osgi/51/0/.cp/gradle/protobuf/init.gradle | ||
| arguments=--init-script /var/folders/d1/7dc4qrgd51v_5zzdcgsm3k0m0000gn/T/db3b08fc4a9ef609cb16b96b200fa13e563f396e9bb1ed0905fdab7bc3bc513b.gradle --init-script /var/folders/d1/7dc4qrgd51v_5zzdcgsm3k0m0000gn/T/52cde0cfcf3e28b8b7510e992210d9614505e0911af0c190bd590d7158574963.gradle --init-script /var/folders/d1/7dc4qrgd51v_5zzdcgsm3k0m0000gn/T/861a75667e10803d304a058d833cb7404195ca44013d0d61d3b653eb084379b8.gradle --init-script /var/folders/d1/7dc4qrgd51v_5zzdcgsm3k0m0000gn/T/68eb1b6516fe21c6fbba58e63c99c3207ccfc918360613709367eecde56fa77f.gradle --init-script /var/folders/d1/7dc4qrgd51v_5zzdcgsm3k0m0000gn/T/da64152279c70a8b4f3de4ca9ea66fd3b3405b7aca4e1f20f2d08e5593aa1ce1.gradle | ||
| auto.sync=false | ||
| build.scans.enabled=false | ||
| connection.gradle.distribution=GRADLE_DISTRIBUTION(WRAPPER) | ||
| connection.project.dir= | ||
| eclipse.preferences.version=1 | ||
| gradle.user.home= | ||
| java.home=/usr/lib/jvm/java-11-openjdk-amd64 | ||
| java.home=/Users/charlesoj/Library/Java/JavaVirtualMachines/jbr-17.0.14/Contents/Home | ||
| jvm.arguments= | ||
|
Comment on lines
+1
to
9
|
||
| offline.mode=false | ||
| override.workspace.settings=true | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,6 +1,6 @@ | ||||||
| <?xml version="1.0" encoding="UTF-8"?> | ||||||
| <classpath> | ||||||
| <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11/"/> | ||||||
| <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17/"/> | ||||||
|
||||||
| <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17/"/> | |
| <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11/"/> |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -4,7 +4,7 @@ android { | |||||
| compileSdkVersion 31 | ||||||
| defaultConfig { | ||||||
| applicationId "io.approov.shapes" | ||||||
| minSdkVersion 21 | ||||||
| minSdkVersion 23 | ||||||
| targetSdkVersion 31 | ||||||
| versionCode 3 | ||||||
| versionName "3.0" | ||||||
|
|
@@ -32,6 +32,8 @@ android { | |||||
| } | ||||||
|
|
||||||
| dependencies { | ||||||
| // implementation 'androidx.annotation:annotation:1.8.2' | ||||||
|
||||||
| // implementation 'androidx.annotation:annotation:1.8.2' |
Copilot
AI
Apr 28, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
implementation project(':approov-service') makes the app depend on a Gradle module that is not present in this repository (and is currently mapped via an absolute path in settings.gradle). This will fail for fresh checkouts and CI; switch back to the documented Maven dependency or vendor the module into the repo with a relative path.
| implementation project(':approov-service') | |
| implementation 'io.approov:service:+' |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,2 +1,4 @@ | ||||||
| include ':approov-sdk' | ||||||
| //include ':approov-sdk' | ||||||
| include ':app' | ||||||
| include ':approov-service' | ||||||
| project(':approov-service').projectDir = new File('/Users/charlesoj/Developer/Quickstarts/approov-service-httpsurlconn/approov-service') | ||||||
|
||||||
| project(':approov-service').projectDir = new File('/Users/charlesoj/Developer/Quickstarts/approov-service-httpsurlconn/approov-service') | |
| project(':approov-service').projectDir = new File(settingsDir, '../approov-service-httpsurlconn/approov-service') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The documentation refers to
HttpsUrlConnection, but the actual Java type isHttpsURLConnection(as linked). Using the correct class name here will avoid confusion for readers trying to follow the sample code.