Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions android/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ android {
debug {
isDebuggable = true
applicationIdSuffix = ".debug"
// TODO: Set from plugin
enableUnitTestCoverage = true
enableAndroidTestCoverage = true
}
create("fast") {
isDebuggable = false
Expand Down
2 changes: 1 addition & 1 deletion android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@
</activity>
</application>

</manifest>
</manifest>
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ fun BuiltByCard(
}
}

@Preview
//@Preview
@Composable
fun BuiltByCardPrevew() {
HackerNewsTheme {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ fun SettingsScreen(
}
}

@PreviewLightDark
//@PreviewLightDark
@Composable
private fun SettingsScreenPreview() {
HackerNewsTheme {
Expand Down
2 changes: 1 addition & 1 deletion android/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ kotlinx-serialization-json = "1.6.3"
viewmodel = "2.8.2"
navigation = "2.8.0-beta06"
browser = "1.5.0"
emergePlugin = "4.0.0-beta03"
emergePlugin = "4.0.0-rc01"
emergeSnapshots = "1.2.0"
sentry = "4.10.0"
composeCompilerExtension = "1.5.3"
Expand Down
2 changes: 2 additions & 0 deletions android/settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,15 @@ pluginManagement {
}
mavenCentral()
gradlePluginPortal()
mavenLocal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
mavenLocal()
}
}

Expand Down