add items to about page and add attribution

This commit is contained in:
Owen LeJeune
2023-06-09 13:45:30 -04:00
parent 8e27b26cc6
commit a473171559
15 changed files with 342 additions and 242 deletions

View File

@@ -33,8 +33,8 @@ android {
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
kotlinOptions {
jvmTarget = '1.8'
@@ -118,7 +118,7 @@ dependencies {
implementation "io.insert-koin:koin-android:$koin"
// coil
def coil = "2.0.0-rc01"
def coil = "2.2.2"
implementation "io.coil-kt:coil-compose:$coil"
//Coroutines
@@ -135,9 +135,11 @@ dependencies {
def markdown = "0.2.1"
implementation "org.jetbrains:markdown:$markdown"
implementation 'de.charlex.compose:revealswipe:1.0.0'
def revealSwipe = "1.0.0"
implementation "de.charlex.compose:revealswipe:$revealSwipe"
implementation 'com.github.jeziellago:compose-markdown:0.3.3'
def compose_markdown = "0.3.3"
implementation "com.github.jeziellago:compose-markdown:$compose_markdown"
// testing
def junit = "4.13.2"