Update WindowState to Compose 1.1.0-rc03 (#14)

This commit is contained in:
Kristen Halper 2022-02-09 09:07:27 -05:00 коммит произвёл GitHub
Родитель 84fa87338d
Коммит a2b4061478
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 12 добавлений и 13 удалений

Просмотреть файл

@ -24,7 +24,7 @@ And the window size classes are measured based on Google's [Window size classes]
2. Add dependencies to the module-level **build.gradle** file (current version may be different from what's shown here).
```gradle
implementation "com.microsoft.device.dualscreen:windowstate:1.0.0-alpha02"
implementation "com.microsoft.device.dualscreen:windowstate:1.0.0-alpha03"
```
3. Also ensure the compileSdkVersion and targetSdkVersion are set to API 31 or newer in the module-level build.gradle file.

Просмотреть файл

@ -14,16 +14,16 @@ ext {
// WindowState library version code:
// If you want to publish a new version, bump in one (1) the specific line(s)
windowStateVersionCode = 2
windowStateVersionCode = 3
// WindowState library version name:
// If you want to publish a new version, bump the specific line
windowStateVersionName = '1.0.0-alpha02'
windowStateVersionName = '1.0.0-alpha03'
// ----------------------------------
gradlePluginVersion = '7.1.0'
kotlinVersion = "1.5.31"
kotlinVersion = "1.6.10"
compileSdkVersion = 31
targetSdkVersion = compileSdkVersion
minSdkVersion = 23
@ -44,8 +44,8 @@ ext {
]
// AndroidX dependencies
appCompatVersion = "1.3.0"
ktxCoreVersion = "1.5.0"
appCompatVersion = '1.4.1'
ktxCoreVersion = "1.7.0"
windowVersion = "1.0.0"
androidxDependencies = [
@ -55,9 +55,9 @@ ext {
]
// Compose dependencies
composeVersion = "1.0.5"
composeVersion = "1.1.0-rc03"
activityComposeVersion = "1.4.0"
navigationComposeVersion = "2.4.0-beta02"
navigationComposeVersion = "2.4.0"
composeDependencies = [
composeMaterial : "androidx.compose.material:material:$composeVersion",
@ -69,10 +69,10 @@ ext {
]
// Test dependencies
androidxTestVersion = "1.4.0"
androidxTestVersion = '1.4.0'
espressoVersion = "3.4.0"
junitVersion = "4.12"
mockitoVersion = "4.1.0"
junitVersion = '4.13.2'
mockitoVersion = '4.3.1'
uiAutomatorVersion = "2.2.0"
testDependencies = [
androidxTestCore : "androidx.test:core:$androidxTestVersion",
@ -88,8 +88,7 @@ ext {
]
// Google dependencies
materialVersion = "1.5.0-alpha01"
materialVersion = "1.5.0"
googleDependencies = [
material: "com.google.android.material:material:$materialVersion"
]