diff --git a/ci-prebuild.bat b/ci-prebuild.bat index dc7e9d6bc..a005d114f 100644 --- a/ci-prebuild.bat +++ b/ci-prebuild.bat @@ -14,6 +14,9 @@ call :run_gradle_task "spotlessApply --no-configuration-cache" call :run_gradle_task "dependencyGuardBaseline" call :run_gradle_task "detekt" call :run_gradle_task "testDemoDebug :lint:test :mifospay:lintProdRelease :lint:lint" +call :run_gradle_task ":lint:test :mifospay:lintProdRelease :lint:lint" +call :run_gradle_task ":mifospay:lintProdRelease" +call :run_gradle_task ":lint:lint" call :run_gradle_task "build" call :run_gradle_task "updateProdReleaseBadging" diff --git a/ci-prebuild.sh b/ci-prebuild.sh index 9eb97c010..e771026c4 100644 --- a/ci-prebuild.sh +++ b/ci-prebuild.sh @@ -28,7 +28,10 @@ tasks=( "spotlessApply --no-configuration-cache" "dependencyGuardBaseline" "detekt" - "testDemoDebug :lint:test :mifospay:lintProdRelease :lint:lint" + "testDemoDebug" + ":lint:test" + ":lint:lint" + ":mifospay:lintProdRelease" "build" "updateProdReleaseBadging" ) diff --git a/feature/accounts/src/main/kotlin/org/mifospay/feature/bank/accounts/AccountsScreen.kt b/feature/accounts/src/main/kotlin/org/mifospay/feature/bank/accounts/AccountsScreen.kt index 4abbc463e..45fa9d047 100644 --- a/feature/accounts/src/main/kotlin/org/mifospay/feature/bank/accounts/AccountsScreen.kt +++ b/feature/accounts/src/main/kotlin/org/mifospay/feature/bank/accounts/AccountsScreen.kt @@ -17,8 +17,6 @@ import androidx.compose.foundation.layout.fillMaxWidth import androidx.compose.foundation.layout.padding import androidx.compose.foundation.lazy.LazyColumn import androidx.compose.foundation.lazy.items -import androidx.compose.material.icons.Icons -import androidx.compose.material.icons.rounded.Info import androidx.compose.material3.HorizontalDivider import androidx.compose.material3.MaterialTheme import androidx.compose.material3.Text @@ -37,6 +35,7 @@ import com.mifos.library.pullrefresh.pullRefresh import com.mifos.library.pullrefresh.rememberPullRefreshState import com.mifospay.core.model.domain.BankAccountDetails import org.mifospay.core.designsystem.component.MfLoadingWheel +import org.mifospay.core.designsystem.icon.MifosIcons import org.mifospay.core.ui.EmptyContentScreen import org.mifospay.core.ui.utility.AddCardChip @@ -95,7 +94,7 @@ private fun AccountScreen( subTitle = stringResource(id = R.string.feature_accounts_unexpected_error_subtitle), modifier = Modifier, iconTint = MaterialTheme.colorScheme.onSurface, - iconImageVector = Icons.Rounded.Info, + iconImageVector = MifosIcons.Info, ) }