-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathbuild.gradle
56 lines (46 loc) · 1.53 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
plugins {
id 'com.android.application'
id 'kotlin-android'
id 'kotlinx-serialization'
}
android {
compileSdk 33
namespace "com.algolia.instantsearch.examples.androidtv"
defaultConfig {
applicationId "com.algolia.instantsearch.examples.androidtv"
minSdk 21
targetSdk 33
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
buildFeatures {
compose true
}
composeOptions {
kotlinCompilerExtensionVersion libs.versions.composeCompiler.get()
}
kotlinOptions {
jvmTarget = "1.8"
}
}
dependencies {
//implementation "com.algolia:instantsearch-compose:$instantsearch"
implementation project(":instantsearch-compose")
implementation 'androidx.core:core-ktx:1.8.0'
implementation 'androidx.leanback:leanback:1.0.0'
implementation 'androidx.appcompat:appcompat:1.4.2'
implementation "androidx.compose.ui:ui:1.2.0"
implementation "androidx.compose.ui:ui-tooling-preview:1.2.0"
implementation "androidx.compose.material:material:1.2.0"
implementation "androidx.compose.material:material-icons-extended:1.2.0"
implementation 'androidx.activity:activity-compose:1.5.1'
implementation 'androidx.paging:paging-compose:1.0.0-alpha15'
implementation 'io.coil-kt:coil-compose:2.1.0'
debugImplementation "androidx.compose.ui:ui-tooling:1.2.0"
}