diff --git a/app/build.gradle b/app/build.gradle index 860af252..99fd62b9 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -114,8 +114,8 @@ dependencies { // AndroidX implementation 'androidx.appcompat:appcompat:1.2.0' implementation 'androidx.browser:browser:1.2.0' - implementation 'androidx.constraintlayout:constraintlayout:2.0.1' - implementation 'androidx.core:core-ktx:1.3.1' + implementation 'androidx.constraintlayout:constraintlayout:2.0.2' + implementation 'androidx.core:core-ktx:1.3.2' implementation 'androidx.fragment:fragment-ktx:1.2.5' implementation 'androidx.lifecycle:lifecycle-livedata-core-ktx:2.2.0' implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0' @@ -124,7 +124,7 @@ dependencies { implementation 'androidx.navigation:navigation-ui-ktx:2.3.0' implementation 'androidx.preference:preference-ktx:1.1.1' implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0' - implementation 'com.google.android.material:material:1.3.0-alpha02' + implementation 'com.google.android.material:material:1.3.0-alpha03' // Other implementation 'com.beust:klaxon:5.3' @@ -135,10 +135,10 @@ dependencies { implementation 'com.squareup.okhttp3:logging-interceptor:4.8.1' implementation 'com.github.topjohnwu.libsu:core:3.0.1' implementation 'com.github.topjohnwu.libsu:io:3.0.1' - implementation 'com.google.firebase:firebase-messaging:20.2.4' - implementation 'com.google.firebase:firebase-perf:19.0.8' + implementation 'com.google.firebase:firebase-messaging:20.3.0' + implementation 'com.google.firebase:firebase-perf:19.0.9' implementation 'com.mindorks.android:prdownloader:0.6.0' - implementation 'com.google.firebase:firebase-analytics-ktx:17.5.0' - implementation 'com.google.firebase:firebase-crashlytics:17.2.1' + implementation 'com.google.firebase:firebase-analytics-ktx:17.6.0' + implementation 'com.google.firebase:firebase-crashlytics:17.2.2' } diff --git a/app/src/main/java/com/vanced/manager/utils/PackageHelper.kt b/app/src/main/java/com/vanced/manager/utils/PackageHelper.kt index 1d0d9b8a..63ffddd0 100644 --- a/app/src/main/java/com/vanced/manager/utils/PackageHelper.kt +++ b/app/src/main/java/com/vanced/manager/utils/PackageHelper.kt @@ -30,7 +30,6 @@ import kotlin.collections.HashMap object PackageHelper { private const val apkInstallPath = "/data/adb/Vanced/" - fun isPackageInstalled(packageName: String, packageManager: PackageManager): Boolean { return try { packageManager.getPackageInfo(packageName, 0) @@ -498,7 +497,7 @@ object PackageHelper { //get path of the installed youtube private fun getPackageDir(context: Context): String? { - val p = getPkgInfo(yPkg, context) + val p = getPkgInfo(vancedRootPkg, context) return if(p != null) { p.applicationInfo.sourceDir diff --git a/build.gradle b/build.gradle index a1aa920f..76da5e75 100644 --- a/build.gradle +++ b/build.gradle @@ -11,7 +11,7 @@ buildscript { classpath 'com.android.tools.build:gradle:4.1.0-rc03' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath 'com.google.gms:google-services:4.3.4' - classpath 'com.google.firebase:perf-plugin:1.3.1' + classpath 'com.google.firebase:perf-plugin:1.3.2' classpath 'com.google.firebase:firebase-crashlytics-gradle:2.3.0' classpath 'androidx.navigation:navigation-safe-args-gradle-plugin:2.3.0'