-
Notifications
You must be signed in to change notification settings - Fork 1
Updated to newest Version of Android #3
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 |
|---|---|---|
|
|
@@ -2,6 +2,10 @@ | |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
| xmlns:tools="http://schemas.android.com/tools"> | ||
|
|
||
| <uses-feature | ||
| android:name="android.hardware.camera" | ||
| android:required="false" /> | ||
|
|
||
| <uses-permission android:name="android.permission.INTERNET" /> | ||
| <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | ||
| <!-- <uses-permission android:name="android.permission.RECORD_AUDIO" /> --> | ||
|
|
@@ -11,6 +15,21 @@ | |
| <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" | ||
| android:maxSdkVersion="32" /> | ||
|
Comment on lines
15
to
16
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove duplicate READ_EXTERNAL_STORAGE permission. The - <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"
- android:maxSdkVersion="32" />Also applies to: 27-28 🤖 Prompt for AI Agents |
||
|
|
||
| <!-- Internet and media permissions --> | ||
| <uses-permission android:name="android.permission.INTERNET" /> | ||
| <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | ||
|
|
||
| <!-- For Android 13+ (API 33+) --> | ||
| <uses-permission android:name="android.permission.READ_MEDIA_IMAGES" | ||
| tools:ignore="SelectedPhotoAccess" /> | ||
|
|
||
| <!-- For Android 12 and below --> | ||
| <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" | ||
| android:maxSdkVersion="32" /> | ||
|
|
||
| <!-- Camera or audio permissions (if used in calls) --> | ||
| <uses-permission android:name="android.permission.CAMERA" /> | ||
| <uses-permission android:name="android.permission.RECORD_AUDIO" /> | ||
| <application | ||
| android:name=".OfflineCapabilities" | ||
| android:allowBackup="true" | ||
|
|
||
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| <vector xmlns:android="http://schemas.android.com/apk/res/android" android:height="24dp" android:tint="#3C4FF8" android:viewportHeight="24" android:viewportWidth="24" android:width="24dp"> | ||
|
|
||
| <path android:fillColor="@android:color/white" android:pathData="M6,19c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V7H6v12zM19,4h-3.5l-1,-1h-5l-1,1H5v2h14V4z"/> | ||
|
|
||
| </vector> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <shape xmlns:android="http://schemas.android.com/apk/res/android"> | ||
| <corners android:radius="5dp"/> | ||
| <stroke android:color="@color/white" android:width="2dp"/> | ||
| <stroke android:color="@color/White" android:width="2dp"/> | ||
| </shape> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,6 +9,7 @@ | |
| <color name="teal_700">#FF018786</color> | ||
| <color name="black">#FF000000</color> | ||
| <color name="White">#FFFFFF</color> | ||
| <color name="white">#FFFFFF</color> | ||
|
Comment on lines
11
to
+12
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Duplicate & improperly-named color creates build-time failure risk
- <color name="White">#FFFFFF</color>
- <color name="white">#FFFFFF</color>
+ <color name="white">#FFFFFF</color>Afterwards replace every 🤖 Prompt for AI Agents |
||
| <color name="Ivory">#FFFFF0</color> | ||
| <color name="LightYellow">#FFFFE0</color> | ||
| <color name="Yellow">#FFFF00</color> | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| #Tue Jan 11 05:35:23 IST 2022 | ||
| #Wed Jun 25 07:29:44 IST 2025 | ||
| distributionBase=GRADLE_USER_HOME | ||
| distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip | ||
| distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip | ||
| distributionPath=wrapper/dists | ||
| zipStorePath=wrapper/dists | ||
| zipStoreBase=GRADLE_USER_HOME |
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.
Remove duplicate permission declarations.
The
INTERNETandACCESS_NETWORK_STATEpermissions are declared twice (lines 9-10 and 19-20). Remove the duplicate declarations to clean up the manifest.Also applies to: 19-20
🤖 Prompt for AI Agents