Skip to content

Commit

Permalink
update gradle version; bump app version
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz-weber committed Jan 29, 2023
1 parent e234240 commit 9384248
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:4.1.0'
classpath 'com.android.tools.build:gradle:4.2.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/android/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-all.zip
6 changes: 3 additions & 3 deletions src/lib/presentation/widgets/currently_playing_control.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ class CurrentlyPlayingControl extends StatelessWidget {
Widget build(BuildContext context) {
return Column(
children: const [
SizedBox(height: 12.0),
SizedBox(height: 10.0),
Padding(
padding: EdgeInsets.symmetric(horizontal: 12.0 + 2.0),
child: SongCustomizationButtons(),
),
SizedBox(height: 12.0),
SizedBox(height: 10.0),
Padding(
padding: EdgeInsets.symmetric(horizontal: 12.0 + 2.0),
child: PlaybackControl(),
),
SizedBox(height: 12.0),
SizedBox(height: 10.0),
Padding(
padding: EdgeInsets.only(left: 12.0 - 4.0, right: 12.0 - 4.0),
child: TimeProgressIndicator(),
Expand Down
2 changes: 1 addition & 1 deletion src/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: mucke
description: music player
publish_to: none

version: 1.0.4+5
version: 1.1.0+6

environment:
sdk: ">=2.17.0 <3.0.0"
Expand Down

0 comments on commit 9384248

Please sign in to comment.