Update projet dependencies.

This commit is contained in:
Thomas Andres Gomez 2021-05-07 10:06:47 +02:00
parent 8c1077ca11
commit e9f5c30e01
3 changed files with 14 additions and 12 deletions

2
.idea/compiler.xml generated
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="CompilerConfiguration"> <component name="CompilerConfiguration">
<bytecodeTargetLevel target="1.8" /> <bytecodeTargetLevel target="16" />
</component> </component>
</project> </project>

3
.idea/misc.xml generated
View file

@ -69,13 +69,14 @@
<entry key="../../../../../layout/compose-model-1620317475717.xml" value="0.16300675675675674" /> <entry key="../../../../../layout/compose-model-1620317475717.xml" value="0.16300675675675674" />
<entry key="../../../../../layout/compose-model-1620317783141.xml" value="0.25462962962962965" /> <entry key="../../../../../layout/compose-model-1620317783141.xml" value="0.25462962962962965" />
<entry key="../../../../../layout/compose-model-1620317894833.xml" value="0.25462962962962965" /> <entry key="../../../../../layout/compose-model-1620317894833.xml" value="0.25462962962962965" />
<entry key="../../../../../layout/compose-model-1620374189600.xml" value="0.23514851485148514" />
<entry key="app/src/main/res/drawable-v24/ic_launcher_foreground.xml" value="0.2898148148148148" /> <entry key="app/src/main/res/drawable-v24/ic_launcher_foreground.xml" value="0.2898148148148148" />
<entry key="app/src/main/res/drawable/ic_baseline_local_library_24.xml" value="0.25462962962962965" /> <entry key="app/src/main/res/drawable/ic_baseline_local_library_24.xml" value="0.25462962962962965" />
</map> </map>
</option> </option>
</component> </component>
<component name="ExternalStorageConfigurationManager" enabled="true" /> <component name="ExternalStorageConfigurationManager" enabled="true" />
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" project-jdk-name="Embedded JDK" project-jdk-type="JavaSDK"> <component name="ProjectRootManager" version="2" languageLevel="JDK_X" project-jdk-name="Embedded JDK" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/build/classes" /> <output url="file://$PROJECT_DIR$/build/classes" />
</component> </component>
<component name="ProjectType"> <component name="ProjectType">

View file

@ -53,26 +53,27 @@ dependencies {
implementation 'com.google.android.material:material:1.3.0' implementation 'com.google.android.material:material:1.3.0'
// Android compose // Android compose
implementation 'androidx.compose.ui:ui:1.0.0-beta05' implementation 'androidx.compose.ui:ui:1.0.0-beta06'
// Tooling support (Previews, etc.) // Tooling support (Previews, etc.)
implementation 'androidx.compose.ui:ui-tooling:1.0.0-beta05' implementation 'androidx.compose.ui:ui-tooling:1.0.0-beta06'
// Foundation (Border, Background, Box, Image, Scroll, shapes, animations, etc.) // Foundation (Border, Background, Box, Image, Scroll, shapes, animations, etc.)
implementation 'androidx.compose.foundation:foundation:1.0.0-beta05' implementation 'androidx.compose.foundation:foundation:1.0.0-beta06'
// Material Design // Material Design
implementation 'androidx.compose.material:material:1.0.0-beta05' implementation 'androidx.compose.material:material:1.0.0-beta06'
// Material design icons // Material design icons
implementation 'androidx.compose.material:material-icons-core:1.0.0-beta05' implementation 'androidx.compose.material:material-icons-core:1.0.0-beta06'
implementation 'androidx.compose.material:material-icons-extended:1.0.0-beta05' implementation 'androidx.compose.material:material-icons-extended:1.0.0-beta06'
// Integration with activities // Integration with activities
implementation 'androidx.activity:activity-compose:1.3.0-alpha07' implementation 'androidx.activity:activity-compose:1.3.0-alpha07'
// Integration with ViewModels // Integration with ViewModels
implementation 'androidx.lifecycle:lifecycle-viewmodel-compose:1.0.0-alpha04' implementation 'androidx.lifecycle:lifecycle-viewmodel-compose:1.0.0-alpha04'
// Integration with observables // Integration with observables
implementation 'androidx.compose.runtime:runtime-livedata:1.0.0-beta05' implementation 'androidx.compose.runtime:runtime-livedata:1.0.0-beta06'
implementation 'androidx.compose.runtime:runtime-rxjava2:1.0.0-beta05' implementation 'androidx.compose.runtime:runtime-rxjava2:1.0.0-beta06'
// ConstraintLayout // ConstraintLayout
implementation "androidx.constraintlayout:constraintlayout-compose:1.0.0-alpha05" implementation "androidx.constraintlayout:constraintlayout-compose:1.0.0-alpha06"
// Test
testImplementation 'junit:junit:4.13.2' testImplementation 'junit:junit:4.13.2'
androidTestImplementation "androidx.compose.ui:ui-test-junit4:1.0.0-beta05" androidTestImplementation "androidx.compose.ui:ui-test-junit4:1.0.0-beta06"
} }