mirror of
https://github.com/YTVanced/VancedManager
synced 2024-11-27 13:33:00 +00:00
Fix a building error, clean up a few tiny things
This commit is contained in:
parent
dcbce7a02c
commit
9064d4e890
6 changed files with 3 additions and 7 deletions
|
@ -65,6 +65,7 @@ dependencies {
|
||||||
implementation 'androidx.fragment:fragment-ktx:1.2.5'
|
implementation 'androidx.fragment:fragment-ktx:1.2.5'
|
||||||
implementation 'androidx.lifecycle:lifecycle-livedata-core-ktx:2.2.0'
|
implementation 'androidx.lifecycle:lifecycle-livedata-core-ktx:2.2.0'
|
||||||
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0'
|
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0'
|
||||||
|
implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.0.0'
|
||||||
implementation 'androidx.navigation:navigation-fragment-ktx:2.2.2'
|
implementation 'androidx.navigation:navigation-fragment-ktx:2.2.2'
|
||||||
implementation 'androidx.navigation:navigation-ui-ktx:2.2.2'
|
implementation 'androidx.navigation:navigation-ui-ktx:2.2.2'
|
||||||
implementation 'androidx.preference:preference-ktx:1.1.1'
|
implementation 'androidx.preference:preference-ktx:1.1.1'
|
||||||
|
|
|
@ -2,6 +2,4 @@ package com.vanced.manager.core.base
|
||||||
|
|
||||||
import androidx.fragment.app.Fragment
|
import androidx.fragment.app.Fragment
|
||||||
|
|
||||||
open class BaseFragment : Fragment() {
|
open class BaseFragment : Fragment()
|
||||||
|
|
||||||
}
|
|
|
@ -16,7 +16,6 @@ import com.vanced.manager.core.base.BaseFragment
|
||||||
import com.vanced.manager.core.downloader.MicrogDownloadService
|
import com.vanced.manager.core.downloader.MicrogDownloadService
|
||||||
import com.vanced.manager.core.downloader.VancedDownloadService
|
import com.vanced.manager.core.downloader.VancedDownloadService
|
||||||
import com.vanced.manager.ui.MainActivity
|
import com.vanced.manager.ui.MainActivity
|
||||||
import com.vanced.manager.ui.dialogs.DialogContainer.showRootDialog
|
|
||||||
import com.vanced.manager.utils.PackageHelper.uninstallApk
|
import com.vanced.manager.utils.PackageHelper.uninstallApk
|
||||||
|
|
||||||
open class Home : BaseFragment(), View.OnClickListener {
|
open class Home : BaseFragment(), View.OnClickListener {
|
||||||
|
|
|
@ -58,7 +58,7 @@ class RootSplitInstallerService: Service() {
|
||||||
val inputPipe = apkFile.getInputStream()
|
val inputPipe = apkFile.getInputStream()
|
||||||
try {
|
try {
|
||||||
process.outputStream.use { outputStream -> inputPipe.copyTo(outputStream) }
|
process.outputStream.use { outputStream -> inputPipe.copyTo(outputStream) }
|
||||||
} catch (e: java.lang.Exception) {
|
} catch (e: Exception) {
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O)
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O)
|
||||||
process.destroyForcibly()
|
process.destroyForcibly()
|
||||||
else
|
else
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
package com.vanced.manager.utils
|
package com.vanced.manager.utils
|
||||||
|
|
||||||
import android.app.Activity
|
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.net.Uri
|
import android.net.Uri
|
||||||
import androidx.browser.customtabs.CustomTabsIntent
|
import androidx.browser.customtabs.CustomTabsIntent
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
<com.vanced.manager.ui.core.SlidingConstraintLayout
|
<com.vanced.manager.ui.core.SlidingConstraintLayout
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent">
|
android:layout_height="match_parent">
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue