Commit fdea62c1 authored by wanglei's avatar wanglei

...

parent cc684f0a
...@@ -127,12 +127,7 @@ ...@@ -127,12 +127,7 @@
android:exported="false" android:exported="false"
android:launchMode="singleTop" android:launchMode="singleTop"
android:screenOrientation="portrait" android:screenOrientation="portrait"
tools:ignore="DiscouragedApi,LockedOrientationActivity" /> <!-- <activity --> tools:ignore="DiscouragedApi,LockedOrientationActivity" />
<!-- android:name=".activity.privacyspace.PrivacyManageActivity" -->
<!-- android:exported="false" -->
<!-- android:launchMode="singleTop" -->
<!-- android:screenOrientation="portrait" -->
<!-- tools:ignore="DiscouragedApi,LockedOrientationActivity" /> -->
<activity <activity
android:name=".activity.repeat.RepeatActivity" android:name=".activity.repeat.RepeatActivity"
android:exported="false" android:exported="false"
......
...@@ -15,8 +15,6 @@ import com.base.filerecoveryrecyclebin.activity.guide.GuideActivity ...@@ -15,8 +15,6 @@ import com.base.filerecoveryrecyclebin.activity.guide.GuideActivity
import com.base.filerecoveryrecyclebin.activity.junkclean.ScanJunkActivity import com.base.filerecoveryrecyclebin.activity.junkclean.ScanJunkActivity
import com.base.filerecoveryrecyclebin.activity.photomanager.PhotoManagerAnimationActivity import com.base.filerecoveryrecyclebin.activity.photomanager.PhotoManagerAnimationActivity
import com.base.filerecoveryrecyclebin.activity.recovery.FileScanResultActivity import com.base.filerecoveryrecyclebin.activity.recovery.FileScanResultActivity
import com.base.filerecoveryrecyclebin.activity.repeat.RepeatActivity
import com.base.filerecoveryrecyclebin.activity.screenshot.ScreenShotActivity
import com.base.filerecoveryrecyclebin.activity.whatsapp.WhatsAppCleanerAnimationActivity import com.base.filerecoveryrecyclebin.activity.whatsapp.WhatsAppCleanerAnimationActivity
import com.base.filerecoveryrecyclebin.ads.AdmobMaxHelper import com.base.filerecoveryrecyclebin.ads.AdmobMaxHelper
import com.base.filerecoveryrecyclebin.bean.ConstObject import com.base.filerecoveryrecyclebin.bean.ConstObject
...@@ -71,6 +69,7 @@ class SplashActivity : BaseActivity<ActivitySplashBinding>() { ...@@ -71,6 +69,7 @@ class SplashActivity : BaseActivity<ActivitySplashBinding>() {
if (MyApplication.isInterOpenShowing) { if (MyApplication.isInterOpenShowing) {
finish() finish()
return
} }
startStayNotification() startStayNotification()
......
...@@ -115,7 +115,7 @@ class CleanJunkActivity : BaseActivity<ActivityLayoutCleanJunkBinding>() { ...@@ -115,7 +115,7 @@ class CleanJunkActivity : BaseActivity<ActivityLayoutCleanJunkBinding>() {
startActivity( startActivity(
Intent(this, CleaningActivity::class.java).apply { Intent(this, CleaningActivity::class.java).apply {
val list = junkExpandAdapter.getChoosePath() val list = junkExpandAdapter.getChoosePath()
putExtra("list", list.toTypedArray()) putExtra("list", list.map { it.chilepath }.toTypedArray())
putExtra("size", list.sumOf { it.childSize }) putExtra("size", list.sumOf { it.childSize })
} }
) )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment