diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index fe78f49..2d3a684 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -45,4 +45,4 @@ jobs: run: chmod +x ./gradlew - name: Build with Gradle - run: ./gradlew build \ No newline at end of file + run: ./gradlew assembleDebug \ No newline at end of file diff --git a/app/build.gradle b/app/build.gradle index df10828..9b04966 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -9,7 +9,7 @@ android { defaultConfig { applicationId "dev.vivvvek.seekerdemo" - minSdk 24 + minSdk 21 targetSdk 33 versionCode 1 versionName "1.0" @@ -37,7 +37,7 @@ android { compose true } composeOptions { - kotlinCompilerExtensionVersion '1.2.0' + kotlinCompilerExtensionVersion '1.4.0' } packagingOptions { resources { @@ -50,16 +50,16 @@ dependencies { implementation project(":seeker") - implementation 'androidx.core:core-ktx:1.7.0' - implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.4.1' - implementation 'androidx.lifecycle:lifecycle-viewmodel-compose:2.4.1' - implementation 'androidx.activity:activity-compose:1.3.1' + implementation 'androidx.core:core-ktx:1.10.1' + implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.1' + implementation 'androidx.lifecycle:lifecycle-viewmodel-compose:2.6.1' + implementation 'androidx.activity:activity-compose:1.7.2' implementation "androidx.compose.ui:ui:$compose_ui_version" implementation "androidx.compose.ui:ui-tooling-preview:$compose_ui_version" - implementation 'androidx.compose.material:material:1.2.0' + implementation 'androidx.compose.material:material:1.4.3' testImplementation 'junit:junit:4.13.2' - androidTestImplementation 'androidx.test.ext:junit:1.1.3' - androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' + androidTestImplementation 'androidx.test.ext:junit:1.1.5' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1' androidTestImplementation "androidx.compose.ui:ui-test-junit4:$compose_ui_version" debugImplementation "androidx.compose.ui:ui-tooling:$compose_ui_version" debugImplementation "androidx.compose.ui:ui-test-manifest:$compose_ui_version" diff --git a/build.gradle b/build.gradle index 7b02d01..1aa1474 100644 --- a/build.gradle +++ b/build.gradle @@ -1,12 +1,12 @@ buildscript { ext { - compose_ui_version = '1.2.0' + compose_ui_version = '1.4.3' } }// Top-level build file where you can add configuration options common to all sub-projects/modules. plugins { id 'com.android.application' version '7.4.0' apply false id 'com.android.library' version '7.4.0' apply false - id 'org.jetbrains.kotlin.android' version '1.7.0' apply false + id 'org.jetbrains.kotlin.android' version '1.8.0' apply false id 'io.github.gradle-nexus.publish-plugin' version "1.1.0" } diff --git a/seeker/build.gradle b/seeker/build.gradle index 51d0451..b90da11 100644 --- a/seeker/build.gradle +++ b/seeker/build.gradle @@ -16,7 +16,7 @@ android { compileSdk 33 defaultConfig { - minSdk 24 + minSdk 21 targetSdk 33 testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" @@ -37,7 +37,7 @@ android { compose true } composeOptions { - kotlinCompilerExtensionVersion '1.2.0' + kotlinCompilerExtensionVersion '1.4.0' } kotlinOptions { jvmTarget = '1.8' @@ -46,21 +46,14 @@ android { dependencies { - implementation 'androidx.core:core-ktx:1.7.0' - implementation 'androidx.appcompat:appcompat:1.6.0' - implementation 'com.google.android.material:material:1.7.0' + implementation 'androidx.core:core-ktx:1.10.1' - implementation "androidx.compose.ui:ui:$compose_ui_version" - implementation "androidx.compose.ui:ui-tooling-preview:$compose_ui_version" - implementation 'androidx.compose.material:material:1.2.0' - testImplementation 'junit:junit:4.12' + implementation 'androidx.compose.material:material:1.4.3' debugImplementation "androidx.compose.ui:ui-tooling:$compose_ui_version" debugImplementation "androidx.compose.ui:ui-test-manifest:$compose_ui_version" testImplementation 'junit:junit:4.13.2' - androidTestImplementation 'androidx.test.ext:junit:1.1.5' androidTestImplementation "androidx.compose.ui:ui-test-junit4:$compose_ui_version" androidTestImplementation "androidx.compose.ui:ui-test:$compose_ui_version" - androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1' } \ No newline at end of file