Skip to content

Commit

Permalink
Update info
Browse files Browse the repository at this point in the history
  • Loading branch information
elyousfi5 committed Dec 20, 2023
1 parent e90a8b9 commit 2b9a586
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
The `android:targetSdkVersion` attribute specifies the minimum Android API level required by the application. Setting a low `targetSdkVersion` may allow the application to run on older Android versions but could expose users to security vulnerabilities.
The `android:targetSdkVersion` attribute specifies the Android Target API level required by the application. Setting a low `targetSdkVersion` may allow the application to run on older Android versions but could expose users to security vulnerabilities.

Here is a link with the deprecation notice:
https://support.google.com/googleplay/android-developer/answer/11926878?hl=en
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"risk_rating": "low",
"short_description": "Application sets the targetSdkVersion attribute to allow usage of older versions of Android which may expose users to security vulnerabilities.",
"short_description": "Application sets the targetSdkVersion attribute to allow usage of older API level of Android which may expose users to security vulnerabilities.",
"references": {
"Android API Levels": "https://developer.android.com/guide/topics/manifest/uses-sdk-element#min",
"Target API level deprecation notice" : "https://support.google.com/googleplay/android-developer/answer/11926878?hl=en"
Expand All @@ -10,10 +10,6 @@
"privacy_issue": false,
"security_issue": true,
"categories": {
"GDPR": [
"ART_24",
"ART_32"
],
"PCI_STANDARDS":[
"REQ_6_2",
"REQ_6_3"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
Consider setting the `android:targetSdkVersion` attribute to a value that corresponds to a more recent Android version. This can help ensure that the application benefits from security improvements and reduces the risk of vulnerabilities associated with older Android releases.
Consider setting the `android:targetSdkVersion` attribute to a value that corresponds to a more recent Android API level. This can help ensure that the application benefits from security improvements and reduces the risk of vulnerabilities associated with older Android releases.

Here is a link with the deprecation notice:
https://support.google.com/googleplay/android-developer/answer/11926878?hl=en

=== "XML"
```xml
<uses-sdk android:targetSdkVersion="33" />
```

0 comments on commit 2b9a586

Please sign in to comment.