diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..2842237 --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,20 @@ + + + + \ No newline at end of file diff --git a/README.md b/README.md index 981eebd..51108e3 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Add actual SpeedDialFloatingActionButton library: ```groovy dependencies { - implementation 'de.charlex.compose:speeddial:1.0.0-beta01' + implementation 'de.charlex.compose:speeddial:1.0.0-beta02' } ``` diff --git a/build.gradle b/build.gradle index 2122206..ca992fa 100644 --- a/build.gradle +++ b/build.gradle @@ -10,7 +10,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:7.0.0-alpha14' + classpath 'com.android.tools.build:gradle:7.0.0-beta01' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath 'io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.30.0' diff --git a/buildCompose.gradle b/buildCompose.gradle index 8718528..fe29f4c 100644 --- a/buildCompose.gradle +++ b/buildCompose.gradle @@ -1,6 +1,5 @@ -def compose_version = '1.0.0-beta04' -def nav_compose_version = "1.0.0-alpha10" +def compose_version = '1.0.0-beta07' android { kotlinOptions { @@ -25,14 +24,5 @@ dependencies { implementation "androidx.compose.ui:ui:$compose_version" implementation "androidx.compose.ui:ui-util:$compose_version" implementation "androidx.compose.ui:ui-tooling:$compose_version" - implementation "androidx.compose.runtime:runtime-livedata:$compose_version" implementation "androidx.compose.material:material:$compose_version" - implementation "androidx.compose.material:material-icons-core:$compose_version" - implementation "androidx.compose.material:material-icons-extended:$compose_version" - - /** - * Compose Navigation - */ - implementation "androidx.navigation:navigation-compose:$nav_compose_version" - } \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index a72170b..8bfbaf8 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ #Mon Apr 05 13:38:02 CEST 2021 distributionBase=GRADLE_USER_HOME -distributionUrl=https\://services.gradle.org/distributions/gradle-7.0-rc-1-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.0-bin.zip distributionPath=wrapper/dists zipStorePath=wrapper/dists zipStoreBase=GRADLE_USER_HOME diff --git a/settings.gradle b/settings.gradle index 1741ef1..7587c55 100644 --- a/settings.gradle +++ b/settings.gradle @@ -3,7 +3,6 @@ dependencyResolutionManagement { repositories { google() mavenCentral() - jcenter() // Warning: this repository is going to shut down soon } } rootProject.name = "SpeedDialFloatingActionButton" diff --git a/speeddial/build.gradle b/speeddial/build.gradle index 4816f83..0ec4e50 100644 --- a/speeddial/build.gradle +++ b/speeddial/build.gradle @@ -8,7 +8,7 @@ apply from: '../buildCompose.gradle' ext { PUBLISH_GROUP_ID = 'de.charlex.compose' - PUBLISH_VERSION = '1.0.0-beta01' + PUBLISH_VERSION = '1.0.0-beta02' PUBLISH_ARTIFACT_ID = 'speeddial' }