タグ付けされた質問 「android-jetpack-compose」

1
Jetpack composeがRoomコンパイラを壊す
Android Studio 4.0 Canary 6を使用して(プロジェクトテンプレートから)完全に新しいjetpack composeプロジェクトを作成し、部屋の依存関係を追加しようとしました。これが私のアプリレベルですbuild.gradle: apply plugin: 'com.android.application' apply plugin: 'kotlin-android' apply plugin: 'kotlin-android-extensions' apply plugin: 'kotlin-kapt' android { compileSdkVersion 29 buildToolsVersion "29.0.2" defaultConfig { applicationId "com.example.composewithroom" minSdkVersion 29 targetSdkVersion 29 versionCode 1 versionName "1.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } …

1
Kotlinメソッドの前のプラス記号の意味は何ですか?
私はKotlinを勉強しており、AndroidDevSummit、より具体的にはLeland Richardsonの「Undestanding Compose」のプレゼンテーションを見ていました。 プレゼンテーション中に(28分26秒)、彼は次のコードを示しました。 @Composable fun App(items: List<String>, query: String) { val results = +memo(items, query) { items.filter { it.matches(query) } } // ... } 「メモ」メソッドの前の「+」プラス記号は何ですか?
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.