Skip to content

Commit 80d6013

Browse files
authored
Add activity embedding snippets. (#472)
* Created activity_main.xml for activity embedding snippets. * Added contents of activity_main.xml. * Update build.gradle.kts with dependencies for activity embedding snippets. * Update libs.versions.toml with libraries for activity embedding. * Update libs.versions.toml with names for androidx-window, androidx-window-java, and androidx-startup-runtime. * Update libs.versions.toml with names for androidx-window, androidx-window-java, and androidx-startup-runtime. * Update libs.versions.toml with appcompat library. * Update build.gradle.kts removed libs.material. * Update libs.versions.toml added androidx.constraintlayout library. * Update libs.versions.toml * Update libs.versions.toml * Update libs.versions.toml * Update libs.versions.toml * Update libs.versions.toml * Update libs.versions.toml * Update libs.versions.toml * Update build.gradle.kts * Update activity_main.xml * Update libs.versions.toml * Add files via upload * Apply Spotless * Add files via upload * Add activity embedding snippet files. * Apply Spotless * Add activity embedding snippet files. * Apply Spotless * Add activity embedding snippet files. * Apply Spotless * Update colors.xml * Create main_split_config.xml * Add files via upload * Update libs.versions.toml to minSdk = "24" * Add files via upload * Update colors.xml with comment for color used by activity embedding snippets. * Update AndroidManifest.xml with initialization provider. * Update AndroidManifest.xml removed comment to fix parsing error. * Update AndroidManifest.xml * Update AndroidManifest.xml * Update AndroidManifest.xml removed comment. * Update AndroidManifest.xml * Update AndroidManifest.xml * Update AndroidManifest.xml * Update AndroidManifest.xml * Add files via upload * Update libs.versions.toml restored minSdk to 21. * Added @RequiresApi to enable SDK 24 features. * Apply Spotless * Update AndroidManifest.xml with ${applicationid} * Update AndroidManifest.xml removed ${applicationId}
1 parent 2c32a2e commit 80d6013

8 files changed

+794
-6
lines changed

gradle/libs.versions.toml

+12-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ androidx-activity-compose = "1.10.0"
55
androidx-appcompat = "1.7.0"
66
androidx-compose-bom = "2025.02.00"
77
androidx-compose-ui-test = "1.7.0-alpha08"
8-
androidx-constraintlayout = "2.2.0"
8+
androidx-constraintlayout = "2.2.1"
99
androidx-constraintlayout-compose = "1.1.0"
1010
androidx-coordinator-layout = "1.2.0"
1111
androidx-corektx = "1.16.0-beta01"
@@ -18,10 +18,14 @@ androidx-lifecycle-compose = "2.8.7"
1818
androidx-lifecycle-runtime-compose = "2.8.7"
1919
androidx-navigation = "2.8.7"
2020
androidx-paging = "3.3.6"
21+
androidx-startup-runtime = "1.2.0"
2122
androidx-test = "1.6.1"
2223
androidx-test-espresso = "3.6.1"
23-
androidx-window = "1.4.0-beta02"
24+
androidx-window = "1.4.0-rc01"
25+
androidx-window-core = "1.4.0-beta02"
26+
androidx-window-java = "1.3.0"
2427
androidxHiltNavigationCompose = "1.2.0"
28+
appcompat = "1.7.0"
2529
coil = "2.7.0"
2630
# @keep
2731
compileSdk = "35"
@@ -90,7 +94,7 @@ androidx-compose-ui-tooling = { module = "androidx.compose.ui:ui-tooling" }
9094
androidx-compose-ui-tooling-preview = { module = "androidx.compose.ui:ui-tooling-preview" }
9195
androidx-compose-ui-util = { module = "androidx.compose.ui:ui-util" }
9296
androidx-compose-ui-viewbinding = { module = "androidx.compose.ui:ui-viewbinding" }
93-
androidx-constraintlayout = { module = "androidx.constraintlayout:constraintlayout", version.ref = "androidx-constraintlayout" }
97+
androidx-constraintlayout = {module = "androidx.constraintlayout:constraintlayout", version.ref = "androidx-constraintlayout" }
9498
androidx-constraintlayout-compose = { module = "androidx.constraintlayout:constraintlayout-compose", version.ref = "androidx-constraintlayout-compose" }
9599
androidx-coordinator-layout = { module = "androidx.coordinatorlayout:coordinatorlayout", version.ref = "androidx-coordinator-layout" }
96100
androidx-core-ktx = { module = "androidx.core:core-ktx", version.ref = "androidx-corektx" }
@@ -116,6 +120,7 @@ androidx-protolayout = { module = "androidx.wear.protolayout:protolayout", versi
116120
androidx-protolayout-expression = { module = "androidx.wear.protolayout:protolayout-expression", version.ref = "protolayout" }
117121
androidx-protolayout-material = { module = "androidx.wear.protolayout:protolayout-material", version.ref = "protolayout" }
118122
androidx-recyclerview = { module = "androidx.recyclerview:recyclerview", version.ref = "recyclerview" }
123+
androidx-startup-runtime = {module = "androidx.startup:startup-runtime", version.ref = "androidx-startup-runtime" }
119124
androidx-test-core = { module = "androidx.test:core", version.ref = "androidx-test" }
120125
androidx-test-espresso-core = { module = "androidx.test.espresso:espresso-core", version.ref = "androidx-test-espresso" }
121126
androidx-test-runner = "androidx.test:runner:1.6.2"
@@ -126,8 +131,11 @@ androidx-tiles-tooling = { module = "androidx.wear.tiles:tiles-tooling", version
126131
androidx-tiles-tooling-preview = { module = "androidx.wear.tiles:tiles-tooling-preview", version.ref = "tiles" }
127132
androidx-wear = { module = "androidx.wear:wear", version.ref = "wear" }
128133
androidx-wear-tooling-preview = { module = "androidx.wear:wear-tooling-preview", version.ref = "wearToolingPreview" }
129-
androidx-window-core = { module = "androidx.window:window-core", version.ref = "androidx-window" }
134+
androidx-window = { module = "androidx.window:window", version.ref = "androidx-window" }
135+
androidx-window-core = { module = "androidx.window:window-core", version.ref = "androidx-window-core" }
136+
androidx-window-java = {module = "androidx.window:window-java", version.ref = "androidx-window-java" }
130137
androidx-work-runtime-ktx = "androidx.work:work-runtime-ktx:2.10.0"
138+
appcompat = { module = "androidx.appcompat:appcompat", version.ref = "appcompat" }
131139
coil-kt-compose = { module = "io.coil-kt:coil-compose", version.ref = "coil" }
132140
compose-foundation = { module = "androidx.wear.compose:compose-foundation", version.ref = "wearComposeFoundation" }
133141
compose-material = { module = "androidx.wear.compose:compose-material", version.ref = "wearComposeMaterial" }

misc/build.gradle.kts

+5
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,12 @@ dependencies {
6363
implementation(libs.kotlinx.serialization.json)
6464
ksp(libs.hilt.compiler)
6565

66+
implementation(libs.androidx.constraintlayout)
6667
implementation(libs.androidx.lifecycle.runtime)
68+
implementation(libs.androidx.window)
69+
implementation(libs.androidx.startup.runtime)
70+
implementation(libs.androidx.window.java)
71+
implementation(libs.appcompat)
6772
testImplementation(libs.junit)
6873
androidTestImplementation(libs.junit)
6974
androidTestImplementation(libs.androidx.test.core)

misc/src/main/AndroidManifest.xml

+12-1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,17 @@
4545
<category android:name="android.intent.category.LAUNCHER" />
4646
</intent-filter>
4747
</activity>
48+
<provider
49+
android:name="androidx.startup.InitializationProvider"
50+
android:authorities="com.example.snippets.androidx-startup"
51+
android:exported="false">
52+
<meta-data
53+
android:name="com.example.snippets.ActivityEmbeddingKotlinSnippets.SplitInitializer"
54+
android:value="androidx.startup" />
55+
<meta-data
56+
android:name="com.example.snippets.ActivityEmbeddingJavaSnippets.SplitInitializer"
57+
android:value="androidx.startup" />
58+
</provider>
4859
</application>
4960

50-
</manifest>
61+
</manifest>

0 commit comments

Comments
 (0)