mirror of
https://github.com/Hamza417/Inure.git
synced 2026-03-13 10:19:43 +08:00
fixes
This commit is contained in:
@@ -187,6 +187,12 @@ android {
|
||||
lint {
|
||||
disable 'Instantiatable'
|
||||
}
|
||||
|
||||
kotlin {
|
||||
compilerOptions {
|
||||
freeCompilerArgs.add("-XXLanguage:+PropertyParamAnnotationDefaultTargetMode")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
||||
@@ -16,7 +16,7 @@ class DebloatInformation : ScopedBottomSheetFragment() {
|
||||
companion object {
|
||||
fun newInstance(packageInfo: PackageInfo): DebloatInformation {
|
||||
val args = Bundle()
|
||||
args.putParcelable(BundleConstants.packageInfo, packageInfo)
|
||||
args.putParcelable(BundleConstants.PACKAGE_INFO, packageInfo)
|
||||
val fragment = DebloatInformation()
|
||||
fragment.arguments = args
|
||||
return fragment
|
||||
|
||||
@@ -16,7 +16,7 @@ class VirusTotal : ScopedFragment() {
|
||||
companion object {
|
||||
fun newInstance(packageInfo: PackageInfo): VirusTotal {
|
||||
val args = Bundle()
|
||||
args.putParcelable(BundleConstants.packageInfo, packageInfo)
|
||||
args.putParcelable(BundleConstants.PACKAGE_INFO, packageInfo)
|
||||
val fragment = VirusTotal()
|
||||
fragment.arguments = args
|
||||
return fragment
|
||||
|
||||
Reference in New Issue
Block a user