android: try out integrating LobstersItem

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
Harsh Shandilya 2021-06-04 08:59:17 +05:30
parent 284dd8c67a
commit 7306cd3294
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80
3 changed files with 29 additions and 2 deletions

View file

@ -12,6 +12,7 @@ repositories { google() }
dependencies {
implementation(projects.common)
implementation("androidx.appcompat:appcompat:1.4.0-alpha02")
implementation("androidx.activity:activity-compose:1.3.0-beta01")
}
@ -25,4 +26,8 @@ android {
versionName = "1.0"
}
buildTypes { getByName("release") { isMinifyEnabled = false } }
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
}