Skip to content

Commit ec08a04

Browse files
committed
Update compile sdk to 33
1 parent cd0b7d8 commit ec08a04

File tree

4 files changed

+32
-6
lines changed

4 files changed

+32
-6
lines changed

app/src/main/kotlin/com/g00fy2/developerwidget/activities/apkinstall/ApkFile.kt

+9-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,15 @@ class ApkFile private constructor() : Comparable<ApkFile> {
7373
size = getFormattedSize(file.length())
7474

7575
file.absolutePath.let { filePath ->
76-
packageManager.getPackageArchiveInfo(filePath, PackageManager.GET_PERMISSIONS)?.let { packageInfo ->
76+
if (VERSION.SDK_INT >= VERSION_CODES.TIRAMISU) {
77+
packageManager.getPackageArchiveInfo(
78+
filePath,
79+
PackageManager.PackageInfoFlags.of(PackageManager.GET_PERMISSIONS.toLong())
80+
)
81+
} else {
82+
@Suppress("DEPRECATION")
83+
packageManager.getPackageArchiveInfo(filePath, PackageManager.GET_PERMISSIONS)
84+
}?.let { packageInfo ->
7785
packageInfo.versionName?.let { versionName = it }
7886
PackageInfoCompat.getLongVersionCode(packageInfo).let { versionCode = it.toString() }
7987
dangerousPermissions = extractDangerousPermissions(packageInfo.requestedPermissions)

app/src/main/kotlin/com/g00fy2/developerwidget/activities/appmanager/AppInfo.kt

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package com.g00fy2.developerwidget.activities.appmanager
22

33
import android.content.pm.PackageInfo
4+
import android.content.pm.PackageManager
45
import android.graphics.drawable.AdaptiveIconDrawable
56
import android.graphics.drawable.Drawable
67
import android.graphics.drawable.InsetDrawable
@@ -60,7 +61,12 @@ class AppInfo private constructor() : Comparable<AppInfo> {
6061
private val packageManager = activity.packageManager
6162

6263
override fun getInstalledPackages(): List<PackageInfo> {
63-
return packageManager.getInstalledPackages(0)
64+
return if (VERSION.SDK_INT >= VERSION_CODES.TIRAMISU) {
65+
packageManager.getInstalledPackages(PackageManager.PackageInfoFlags.of(0))
66+
} else {
67+
@Suppress("DEPRECATION")
68+
packageManager.getInstalledPackages(0)
69+
}
6470
}
6571

6672
override fun build(packageInfo: PackageInfo): AppInfo {

app/src/main/kotlin/com/g00fy2/developerwidget/data/device/systemapps/SystemAppsDataProvider.kt

+14-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package com.g00fy2.developerwidget.data.device.systemapps
33
import android.annotation.SuppressLint
44
import android.content.Context
55
import android.content.pm.PackageInfo
6+
import android.content.pm.PackageManager
67
import android.content.pm.PackageManager.NameNotFoundException
78
import android.os.Build.VERSION
89
import android.os.Build.VERSION_CODES
@@ -13,7 +14,7 @@ object SystemAppsDataProvider {
1314

1415
fun getGooglePlayServicesVersion(context: Context): String {
1516
return try {
16-
context.packageManager.getPackageInfo("com.google.android.gms", 0).versionName
17+
context.getPackageInfo("com.google.android.gms").versionName
1718
} catch (e: NameNotFoundException) {
1819
""
1920
}
@@ -41,11 +42,22 @@ object SystemAppsDataProvider {
4142
Version(VERSION.RELEASE).isAtLeast("4.4.3") -> "WebView v33.0.0.0"
4243
VERSION.SDK_INT >= VERSION_CODES.KITKAT -> "WebView v30.0.0.0"
4344
else -> try {
44-
context.packageManager.getPackageInfo("com.google.android.webview", 0)
45+
context.getPackageInfo("com.google.android.webview")
4546
} catch (e: NameNotFoundException) {
4647
null
4748
}?.let { context.packageManager.getApplicationLabel(it.applicationInfo).toString() + " " + it.versionName }
4849
.orEmpty()
4950
}
5051
}
52+
53+
private fun Context.getPackageInfo(packageName: String): PackageInfo {
54+
return packageManager.run {
55+
if (VERSION.SDK_INT >= VERSION_CODES.TIRAMISU) {
56+
getPackageInfo(packageName, PackageManager.PackageInfoFlags.of(0))
57+
} else {
58+
@Suppress("DEPRECATION")
59+
getPackageInfo(packageName, 0)
60+
}
61+
}
62+
}
5163
}

buildSrc/src/main/kotlin/Versions.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
object Versions {
22

33
const val androidMinSdk = 14
4-
const val androidCompileSdk = 32
4+
const val androidCompileSdk = 33
55
const val androidTargetSdk = 29
66

7-
const val androidBuildTools = "32.0.0"
7+
const val androidBuildTools = "33.0.0"
88
const val androidGradle = "7.2.2"
99
const val kotlin = "1.7.10"
1010

0 commit comments

Comments
 (0)