Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: apk-editor/APK-Explorer-Editor
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.29
Choose a base ref
...
head repository: apk-editor/APK-Explorer-Editor
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Oct 2, 2024

  1. Credits: Update copyright year(s)

    Signed-off-by: apk-editor <[email protected]>
    apk-editor committed Oct 2, 2024
    Copy the full SHA
    a1113ff View commit details

Commits on Oct 10, 2024

  1. Removed READ_PHONE_STATE permission

    Thanks @IzzySoft for insisting to do this
    
    Signed-off-by: sunilpaulmathew <[email protected]>
    sunilpaulmathew committed Oct 10, 2024
    Copy the full SHA
    ee63634 View commit details
Showing with 3 additions and 1 deletion.
  1. +2 −0 app/src/main/AndroidManifest.xml
  2. +1 −1 app/src/main/java/com/apk/editor/adapters/AboutAdapter.java
2 changes: 2 additions & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -6,6 +6,8 @@
tools:ignore="ScopedStorage" />
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES"
tools:ignore="QueryAllPackagesPermission" />
<uses-permission android:name="android.permission.READ_PHONE_STATE"
tools:node="remove" />

<application
android:allowBackup="true"
Original file line number Diff line number Diff line change
@@ -71,7 +71,7 @@ public void onBindViewHolder(@NonNull AboutAdapter.ViewHolder holder, int positi
sCommonUtils.getDrawable(R.drawable.ic_back, v.getContext()),
sCommonUtils.getColor(sThemeUtils.isDarkTheme(v.getContext()) ?
R.color.colorWhite : R.color.colorDark, v.getContext()),
20, v.getContext().getString(R.string.app_name), "2023-2024, APK Explorer & Editor",
20, v.getContext().getString(R.string.app_name), "2024-2025, APK Explorer & Editor",
BuildConfig.VERSION_NAME).launchCredits(v.getContext());
} else {
Intent share_app = new Intent();