| apply plugin: 'com.android.application' |
| apply plugin: 'kotlin-android' |
| |
| android { |
| compileSdkVersion 30 |
| defaultConfig { |
| applicationId "com.airbnb.lottie.issues.compose" |
| minSdkVersion 21 |
| targetSdkVersion 30 |
| versionCode 1 |
| versionName "1.0" |
| testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" |
| } |
| |
| compileOptions { |
| sourceCompatibility JavaVersion.VERSION_1_8 |
| targetCompatibility JavaVersion.VERSION_1_8 |
| } |
| kotlinOptions { |
| jvmTarget = '1.8' |
| } |
| |
| buildFeatures { |
| compose true |
| } |
| composeOptions { |
| kotlinCompilerExtensionVersion composeVersion |
| } |
| } |
| |
| dependencies { |
| implementation project(':lottie-compose') |
| implementation 'androidx.appcompat:appcompat:1.3.0-rc01' |
| implementation 'androidx.activity:activity-compose:1.3.0-rc01' |
| implementation "androidx.compose.ui:ui:$composeVersion" |
| implementation "androidx.compose.material:material:$composeVersion" |
| implementation "androidx.compose.material:material-icons-extended:$composeVersion" |
| implementation "androidx.compose.ui:ui-tooling:$composeVersion" |
| } |