version 24.8beta

This commit is contained in:
Sergio De la torre 2024-02-27 09:48:47 +01:00
parent 9818b0babe
commit 5a7afb66b6
5 changed files with 32 additions and 8 deletions

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project version="4"> <project version="4">
<component name="KotlinJpsPluginSettings"> <component name="KotlinJpsPluginSettings">
<option name="version" value="1.8.22" /> <option name="version" value="1.9.0" />
</component> </component>
</project> </project>

View File

@ -11,9 +11,9 @@ android {
defaultConfig { defaultConfig {
applicationId "es.verdnatura" applicationId "es.verdnatura"
minSdkVersion 24 minSdkVersion 26
targetSdkVersion 33 // se deja con target si no Play Protect la bloquea targetSdkVersion 33 // se deja con target si no Play Protect la bloquea
versionCode 258 versionCode 260
versionName = "24.8Beta" //23.48Beta son la misma versionName = "24.8Beta" //23.48Beta son la misma
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
} }
@ -44,7 +44,21 @@ android {
buildFeatures { buildFeatures {
viewBinding = true viewBinding = true
} }
/*kotlinOptions {
jvmTarget = "1.8"
}
buildFeatures {
compose = true
}
kotlin {
jvmToolchain(8)
}
composeOptions {
kotlinCompilerExtensionVersion = "1.4.3"
}
*/
dataBinding { dataBinding {
enabled = true enabled = true
} }
@ -73,7 +87,8 @@ dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.6.1' implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.core:core-ktx:1.12.0' implementation 'androidx.core:core-ktx:1.12.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0'//si >2.0 revisar pantalla (ej:Ajustes) implementation 'androidx.constraintlayout:constraintlayout:2.0'
//si >2.0 revisar pantalla (ej:Ajustes)
implementation 'androidx.legacy:legacy-support-v4:1.0.0' implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0' implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
@ -126,4 +141,13 @@ dependencies {
//linphone //linphone
// implementation 'org.linphone:linphone-sdk-android:5.1.0+' // implementation 'org.linphone:linphone-sdk-android:5.1.0+'
//implementation 'androidx.media:media:1.6.0' //implementation 'androidx.media:media:1.6.0'
// Compose
/* implementation(platform("androidx.compose:compose-bom:2024.02.01"))
implementation("androidx.compose.ui:ui")
implementation("androidx.compose.material:material")
implementation("androidx.compose.runtime:runtime")
implementation("androidx.activity:activity-compose:1.8.2")
implementation("androidx.compose.ui:ui-graphics")
implementation("androidx.compose.ui:ui-tooling-preview")*/
} }

View File

@ -36,8 +36,7 @@
android:supportsRtl="true" android:supportsRtl="true"
android:theme="@style/AppTheme" android:theme="@style/AppTheme"
android:usesCleartextTraffic="true"> android:usesCleartextTraffic="true">
<activity android:name=".presentation.view.feature.imageview.activity.ImageViewActivity" android:configChanges="orientation"
android:screenOrientation="portrait"/>
<activity <activity
android:name=".presentation.view.feature.main.activity.MainActivity" android:name=".presentation.view.feature.main.activity.MainActivity"
android:windowSoftInputMode="stateHidden|adjustResize" android:windowSoftInputMode="stateHidden|adjustResize"

View File

@ -8,7 +8,8 @@ open class RestClient(context: Context, myObserver: InteceptorListener? = null)
var salixClient: SalixService var salixClient: SalixService
init { init {
restClient = ApiUtils.getApiService(context, myObserver)
salixClient = ApiSalixUtils.getApiService(context, myObserver) salixClient = ApiSalixUtils.getApiService(context, myObserver)
restClient = ApiUtils.getApiService(context, myObserver)
} }
} }

View File

@ -95,7 +95,7 @@
<!--Pasilleros--> <!--Pasilleros-->
<dimen name="inventory_item">10dp</dimen> <dimen name="inventory_item">10dp</dimen>
<dimen name="pasilleros_margin_main_menu">15dp</dimen> <dimen name="pasilleros_margin_main_menu">12dp</dimen>
<dimen name="packaging_margin_main_menu">5dp</dimen> <dimen name="packaging_margin_main_menu">5dp</dimen>
<dimen name="itemcard_image_height">300dp</dimen> <dimen name="itemcard_image_height">300dp</dimen>