Skip to content

Commit

Permalink
build: built to work with Compose v1.0.0-beta07
Browse files Browse the repository at this point in the history
  • Loading branch information
ch4rl3x committed May 20, 2021
1 parent 74ca1c3 commit 71f3d03
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 16 deletions.
20 changes: 20 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand Down
12 changes: 1 addition & 11 deletions buildCompose.gradle
Original file line number Diff line number Diff line change
@@ -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 {
Expand All @@ -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"

}
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -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
1 change: 0 additions & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ dependencyResolutionManagement {
repositories {
google()
mavenCentral()
jcenter() // Warning: this repository is going to shut down soon
}
}
rootProject.name = "SpeedDialFloatingActionButton"
Expand Down
2 changes: 1 addition & 1 deletion speeddial/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}

Expand Down

0 comments on commit 71f3d03

Please sign in to comment.