ktlint: Format source directories other than main

Signed-off-by: Aayush Gupta <aayushgupta219@gmail.com>
This commit is contained in:
Aayush Gupta
2025-12-30 12:07:40 +08:00
parent c218e8197f
commit 00c07d0a98
8 changed files with 20 additions and 30 deletions

View File

@@ -5,13 +5,11 @@ import android.content.Context
import androidx.test.runner.AndroidJUnitRunner import androidx.test.runner.AndroidJUnitRunner
import dagger.hilt.android.testing.HiltTestApplication import dagger.hilt.android.testing.HiltTestApplication
class HiltInstrumentationTestRunner: AndroidJUnitRunner() { class HiltInstrumentationTestRunner : AndroidJUnitRunner() {
override fun newApplication( override fun newApplication(
cl: ClassLoader?, cl: ClassLoader?,
className: String?, className: String?,
context: Context? context: Context?
): Application { ): Application = super.newApplication(cl, HiltTestApplication::class.java.name, context)
return super.newApplication(cl, HiltTestApplication::class.java.name, context)
}
} }

View File

@@ -15,7 +15,7 @@ import com.aurora.store.IsolatedTest
import com.aurora.store.R import com.aurora.store.R
import org.junit.Test import org.junit.Test
class InfoTest: IsolatedTest() { class InfoTest : IsolatedTest() {
@Test @Test
fun testInfoWithoutClickHandling() { fun testInfoWithoutClickHandling() {

View File

@@ -24,7 +24,7 @@ class PermissionListItemTest : IsolatedTest() {
get() = Permission( get() = Permission(
PermissionType.STORAGE_MANAGER, PermissionType.STORAGE_MANAGER,
stringResource(R.string.onboarding_permission_esm), stringResource(R.string.onboarding_permission_esm),
stringResource(R.string.onboarding_permission_esa_desc), stringResource(R.string.onboarding_permission_esa_desc)
) )
@Test @Test

View File

@@ -13,7 +13,7 @@ import androidx.compose.ui.test.onNodeWithTag
import com.aurora.store.IsolatedTest import com.aurora.store.IsolatedTest
import org.junit.Test import org.junit.Test
class AnimatedAppIconTest: IsolatedTest() { class AnimatedAppIconTest : IsolatedTest() {
@Test @Test
fun testAnimatedAppIconNoProgress() { fun testAnimatedAppIconNoProgress() {

View File

@@ -144,19 +144,17 @@ class InstallerStatusReceiver : BaseInstallerStatusReceiver() {
} }
} }
private fun isHuaweiSilentInstallSupported(context: Context): Boolean { private fun isHuaweiSilentInstallSupported(context: Context): Boolean = try {
return try { val applicationInfo: ApplicationInfo = context.packageManager.getApplicationInfo(
val applicationInfo: ApplicationInfo = context.packageManager.getApplicationInfo( PACKAGE_NAME_APP_GALLERY,
PACKAGE_NAME_APP_GALLERY, PackageManager.GET_META_DATA
PackageManager.GET_META_DATA )
)
val supportFunction = applicationInfo.metaData.getInt("appgallery_support_function") val supportFunction = applicationInfo.metaData.getInt("appgallery_support_function")
Log.i(TAG, "Huawei silent install support function: $supportFunction") Log.i(TAG, "Huawei silent install support function: $supportFunction")
(supportFunction and (1 shl 5)) != 0 (supportFunction and (1 shl 5)) != 0
} catch (e: Exception) { } catch (e: Exception) {
false false
}
} }
} }

View File

@@ -7,9 +7,7 @@ object FlavouredUtil : IFlavouredUtil {
override val defaultDispensers: Set<String> = emptySet() override val defaultDispensers: Set<String> = emptySet()
override fun promptMicroGInstall(context: Context): Boolean { override fun promptMicroGInstall(context: Context): Boolean = isHuawei &&
return isHuawei && PackageUtil.hasSupportedAppGallery(context) &&
PackageUtil.hasSupportedAppGallery(context) && !PackageUtil.isMicroGBundleInstalled(context)
!PackageUtil.isMicroGBundleInstalled(context)
}
} }

View File

@@ -6,7 +6,5 @@ object FlavouredUtil : IFlavouredUtil {
override val defaultDispensers = setOf(Constants.URL_DISPENSER) override val defaultDispensers = setOf(Constants.URL_DISPENSER)
override fun promptMicroGInstall(context: Context): Boolean { override fun promptMicroGInstall(context: Context): Boolean = false
return false
}
} }

View File

@@ -7,7 +7,5 @@ object FlavouredUtil : IFlavouredUtil {
override val defaultDispensers = setOf(Constants.URL_DISPENSER) override val defaultDispensers = setOf(Constants.URL_DISPENSER)
override fun promptMicroGInstall(context: Context): Boolean { override fun promptMicroGInstall(context: Context): Boolean = false
return false
}
} }