TP-34043 | Release 1.0.8 (#102)

This commit is contained in:
Maila Rajanikanth
2023-06-30 11:59:49 +05:30
committed by GitHub Enterprise
parent 11063e5237
commit 1ab69be112
3 changed files with 22 additions and 19 deletions

View File

@@ -5,12 +5,12 @@ plugins {
android {
namespace 'com.uitron.demo'
compileSdk 32
compileSdk 33
defaultConfig {
applicationId "com.uitron.demo"
minSdk 21
targetSdk 32
targetSdk 33
versionCode 1
versionName "1.0"
@@ -39,7 +39,7 @@ android {
compose true
}
composeOptions {
kotlinCompilerExtensionVersion '1.2.0-beta03'
kotlinCompilerExtensionVersion '1.4.3'
}
packagingOptions {
resources {
@@ -49,16 +49,17 @@ android {
}
dependencies {
implementation platform("androidx.compose:compose-bom:2023.01.00")
implementation project(':navi-uitron')
implementation 'androidx.appcompat:appcompat:1.4.0'
implementation 'androidx.core:core-ktx:1.8.0'
implementation 'com.google.android.material:material:1.8.0'
implementation 'androidx.activity:activity-compose:1.5.0'
implementation "androidx.compose.material:material:1.2.0-beta03"
implementation 'androidx.compose.ui:ui:1.2.0-beta03'
implementation 'androidx.compose.ui:ui-graphics:1.2.0-beta03'
implementation 'androidx.compose.ui:ui-tooling-preview:1.2.0-beta03'
implementation "androidx.compose.material:material"
implementation 'androidx.compose.ui:ui'
implementation 'androidx.compose.ui:ui-graphics'
implementation 'androidx.compose.ui:ui-tooling-preview'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.0'
implementation 'com.google.code.gson:gson:2.8.9'
implementation "androidx.constraintlayout:constraintlayout-compose:1.1.0-alpha02"

View File

@@ -7,5 +7,5 @@ buildscript {
plugins {
id 'com.android.application' version '7.3.1' apply false
id 'com.android.library' version '7.3.1' apply false
id 'org.jetbrains.kotlin.android' version '1.6.21' apply false
id 'org.jetbrains.kotlin.android' version '1.8.10' apply false
}

View File

@@ -5,15 +5,15 @@ plugins {
id 'maven-publish'
}
def VERSION_NAME = "1.0.7"
def VERSION_NAME = "1.0.9"
android {
namespace 'com.navi.uitron'
compileSdk 32
compileSdk 33
defaultConfig {
minSdk 21
targetSdk 31
targetSdk 33
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
@@ -36,7 +36,7 @@ android {
compose true
}
composeOptions {
kotlinCompilerExtensionVersion '1.2.0-beta03'
kotlinCompilerExtensionVersion '1.4.3'
}
}
@@ -81,19 +81,21 @@ publishing {
}
dependencies {
implementation "androidx.compose.ui:ui:1.2.0-beta03"
implementation "androidx.compose.material:material:1.2.0-beta03"
implementation "androidx.compose.ui:ui-tooling-preview:1.2.0-beta03"
implementation platform("androidx.compose:compose-bom:2023.01.00")
implementation "androidx.compose.ui:ui"
implementation "androidx.compose.material:material"
implementation "androidx.compose.ui:ui-tooling-preview"
implementation "com.google.accompanist:accompanist-pager:0.23.1"
implementation "com.google.accompanist:accompanist-pager-indicators:0.23.1"
implementation "androidx.constraintlayout:constraintlayout-compose:1.1.0-alpha02"
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.5.0-rc02'
implementation 'androidx.activity:activity-compose:1.4.0'
implementation 'androidx.core:core-ktx:1.6.0'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.5.1'
implementation 'androidx.activity:activity-compose:1.5.0'
implementation 'androidx.core:core-ktx:1.8.0'
implementation 'com.google.code.gson:gson:2.8.9'
implementation 'androidx.hilt:hilt-navigation-compose:1.0.0'
implementation 'androidx.appcompat:appcompat:1.5.1'
implementation 'com.google.android.material:material:1.6.1'
implementation 'com.google.android.material:material:1.7.0'
implementation "org.mvel:mvel2:2.4.15.Final"
implementation "com.airbnb.android:lottie-compose:5.2.0"
api "io.coil-kt:coil-compose:2.2.2"