Skip to content
This repository has been archived by the owner on Sep 27, 2024. It is now read-only.

[Android] Add customisation options for links and code #813

Merged
merged 5 commits into from
Sep 18, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions platforms/android/library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ android {

buildFeatures {
buildConfig = true
compose true // Enable classes to be marked as stable
}

composeOptions {
kotlinCompilerExtensionVersion '1.5.1'

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

NIT: we are at 1.5.3 now.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, I used this version to align with the other modules in the project but will update separately 👍

}

testOptions {
Expand Down Expand Up @@ -96,6 +101,8 @@ dependencies {
implementation libs.androidx.lifecycle.viewmodel
api libs.google.material
implementation libs.androidx.constraintlayout
implementation platform(libs.androidx.compose.bom)
implementation 'androidx.compose.runtime:runtime'
testImplementation libs.test.junit
testImplementation libs.test.robolectric
testImplementation libs.test.mockk
Expand Down