Skip to content

Commit 9412eab

Browse files
committed
Fix minor issues following library updates
1 parent c318c22 commit 9412eab

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

AdaptiveUiCodelab/app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ android {
2626

2727
defaultConfig {
2828
applicationId = "com.example.reply"
29-
minSdk = 21
29+
minSdk = 23
3030
targetSdk = 33
3131
versionCode = 1
3232
versionName = "1.0"

BasicStateCodelab/app/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ dependencies {
7373
implementation("androidx.compose.ui:ui-graphics")
7474
implementation("androidx.compose.ui:ui-tooling-preview")
7575
implementation("androidx.compose.material3:material3")
76+
implementation("androidx.compose.material:material-icons-core")
7677
testImplementation("junit:junit:4.13.2")
7778
androidTestImplementation("androidx.test.ext:junit:1.3.0")
7879
androidTestImplementation("androidx.test.espresso:espresso-core:3.7.0")

MigrationCodelab/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ android {
2626
namespace "com.google.samples.apps.sunflower"
2727
defaultConfig {
2828
applicationId "com.google.samples.apps.sunflower"
29-
minSdkVersion 21
29+
minSdkVersion 23
3030
targetSdkVersion 33
3131
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
3232
versionCode 1

ThemingCodelabM2/app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212
or implied. See the License for the specific language governing permissions and limitations under
1313
the License.
1414
-->
15-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
16-
package="com.codelab.theming">
15+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
1716

1817
<application
1918
android:allowBackup="true"

ThemingCodelabM2/app/src/main/java/com/codelab/theming/data/Post.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ data class Post(
2727
val subtitle: String? = null,
2828
val url: String,
2929
val metadata: Metadata,
30-
@DrawableRes val imageId: Int,
31-
@DrawableRes val imageThumbId: Int,
30+
@param:DrawableRes val imageId: Int,
31+
@param:DrawableRes val imageThumbId: Int,
3232
val tags: Set<String>
3333
)
3434

0 commit comments

Comments
 (0)