ktlint: Format source directories other than main
Signed-off-by: Aayush Gupta <aayushgupta219@gmail.com>
This commit is contained in:
@@ -11,7 +11,5 @@ class HiltInstrumentationTestRunner: AndroidJUnitRunner() {
|
||||
cl: ClassLoader?,
|
||||
className: String?,
|
||||
context: Context?
|
||||
): Application {
|
||||
return super.newApplication(cl, HiltTestApplication::class.java.name, context)
|
||||
}
|
||||
): Application = super.newApplication(cl, HiltTestApplication::class.java.name, context)
|
||||
}
|
||||
|
||||
@@ -24,7 +24,7 @@ class PermissionListItemTest : IsolatedTest() {
|
||||
get() = Permission(
|
||||
PermissionType.STORAGE_MANAGER,
|
||||
stringResource(R.string.onboarding_permission_esm),
|
||||
stringResource(R.string.onboarding_permission_esa_desc),
|
||||
stringResource(R.string.onboarding_permission_esa_desc)
|
||||
)
|
||||
|
||||
@Test
|
||||
|
||||
@@ -144,8 +144,7 @@ class InstallerStatusReceiver : BaseInstallerStatusReceiver() {
|
||||
}
|
||||
}
|
||||
|
||||
private fun isHuaweiSilentInstallSupported(context: Context): Boolean {
|
||||
return try {
|
||||
private fun isHuaweiSilentInstallSupported(context: Context): Boolean = try {
|
||||
val applicationInfo: ApplicationInfo = context.packageManager.getApplicationInfo(
|
||||
PACKAGE_NAME_APP_GALLERY,
|
||||
PackageManager.GET_META_DATA
|
||||
@@ -159,4 +158,3 @@ class InstallerStatusReceiver : BaseInstallerStatusReceiver() {
|
||||
false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,9 +7,7 @@ object FlavouredUtil : IFlavouredUtil {
|
||||
|
||||
override val defaultDispensers: Set<String> = emptySet()
|
||||
|
||||
override fun promptMicroGInstall(context: Context): Boolean {
|
||||
return isHuawei &&
|
||||
override fun promptMicroGInstall(context: Context): Boolean = isHuawei &&
|
||||
PackageUtil.hasSupportedAppGallery(context) &&
|
||||
!PackageUtil.isMicroGBundleInstalled(context)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,7 +6,5 @@ object FlavouredUtil : IFlavouredUtil {
|
||||
|
||||
override val defaultDispensers = setOf(Constants.URL_DISPENSER)
|
||||
|
||||
override fun promptMicroGInstall(context: Context): Boolean {
|
||||
return false
|
||||
}
|
||||
override fun promptMicroGInstall(context: Context): Boolean = false
|
||||
}
|
||||
|
||||
@@ -7,7 +7,5 @@ object FlavouredUtil : IFlavouredUtil {
|
||||
|
||||
override val defaultDispensers = setOf(Constants.URL_DISPENSER)
|
||||
|
||||
override fun promptMicroGInstall(context: Context): Boolean {
|
||||
return false
|
||||
}
|
||||
override fun promptMicroGInstall(context: Context): Boolean = false
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user