xref: /aosp_15_r20/external/accompanist/themeadapter-core/README.md (revision fa44fe6ae8e729aa3cfe5c03eedbbf98fb44e2c6)
1*fa44fe6aSInna Palant# Core Theme Adapter
2*fa44fe6aSInna Palant
3*fa44fe6aSInna Palant[![Maven Central](https://img.shields.io/maven-central/v/com.google.accompanist/accompanist-themeadapter-core)](https://search.maven.org/search?q=g:com.google.accompanist)
4*fa44fe6aSInna Palant
5*fa44fe6aSInna PalantCore Theme Adapter includes common utilities that enable the reuse of XML themes, for theming in [Jetpack Compose][compose].
6*fa44fe6aSInna Palant
7*fa44fe6aSInna Palant## Usage
8*fa44fe6aSInna Palant
9*fa44fe6aSInna PalantThis library includes common utilities that enable the reuse of XML themes, for theming in [Jetpack Compose][compose],
10*fa44fe6aSInna Palantallowing composables like [`MaterialTheme`][materialtheme] to be based on the `Activity`'s XML theme.
11*fa44fe6aSInna Palant
12*fa44fe6aSInna PalantFor more information, visit the documentation: https://google.github.io/accompanist/themeadapter-core
13*fa44fe6aSInna Palant
14*fa44fe6aSInna Palant## Download
15*fa44fe6aSInna Palant
16*fa44fe6aSInna Palant```groovy
17*fa44fe6aSInna Palantrepositories {
18*fa44fe6aSInna Palant    mavenCentral()
19*fa44fe6aSInna Palant}
20*fa44fe6aSInna Palant
21*fa44fe6aSInna Palantdependencies {
22*fa44fe6aSInna Palant    implementation "com.google.accompanist:accompanist-themeadapter-core:<version>"
23*fa44fe6aSInna Palant}
24*fa44fe6aSInna Palant```
25*fa44fe6aSInna Palant
26*fa44fe6aSInna PalantSnapshots of the development version are available in Sonatype's `snapshots` [repository][snap]. These are updated on every commit.
27*fa44fe6aSInna Palant
28*fa44fe6aSInna Palant[compose]: https://developer.android.com/jetpack/compose
29*fa44fe6aSInna Palant[materialtheme]: https://developer.android.com/reference/kotlin/androidx/compose/material3/package-summary#materialtheme
30*fa44fe6aSInna Palant[snap]: https://oss.sonatype.org/content/repositories/snapshots/com/google/accompanist/accompanist-themeadapter-core/
31