LoginSignup
1
0

More than 3 years have passed since last update.

Jetpack Composeを試す

Last updated at Posted at 2019-10-13

TwitterでJetpack Composeが使えるようになったという情報が流れてきたので早速試してみる。

上記のコードだけではエラーがビルドできなかったので、下記のコードを追加した。

app>build.gradle
android {
    kotlinOptions {
        jvmTarget = '1.8'
    }
}

dependencies {
    implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
}

jetpack_compose

動いた!

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0