Skip to content

Commit

Permalink
com.android.tools.build:gradle:4.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
nhaarman committed May 11, 2021
1 parent ed6da78 commit bc0bc6c
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 8 deletions.
11 changes: 11 additions & 0 deletions .idea/misc.xml

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

2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
}

dependencies {
classpath("com.android.tools.build:gradle:3.5.1")
classpath("com.android.tools.build:gradle:4.1.3")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
classpath("de.mannodermaus.gradle.plugins:android-junit5:1.7.1.1")
classpath("com.adarshr:gradle-test-logger-plugin:3.0.0")
Expand Down
2 changes: 1 addition & 1 deletion dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ dependencyManagement {
dependency "androidx.test:rules:1.3.0"
dependency "androidx.test.uiautomator:uiautomator:2.2.0"

def androidToolsVersion = "26.5.1"
def androidToolsVersion = "27.1.3"
dependency "com.android.tools.lint:lint:$androidToolsVersion"
dependency "com.android.tools.lint:lint-api:$androidToolsVersion"
dependency "com.android.tools.lint:lint-checks:$androidToolsVersion"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
android:layout_height="wrap_content"
android:src="@drawable/ic_favorite_white_196dp"
android:textSize="46sp"
android:tint="?android:colorPrimary"
app:tint="?android:colorPrimary"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
android:layout_height="wrap_content"
android:src="@drawable/ic_music_white_196dp"
android:textSize="46sp"
android:tint="?android:colorPrimary"
app:tint="?android:colorPrimary"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
Expand Down
2 changes: 1 addition & 1 deletion samples/hello-bottombar/src/main/res/layout/news_scene.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
android:layout_height="wrap_content"
android:src="@drawable/ic_news_white_196dp"
android:textSize="46sp"
android:tint="?android:colorPrimary"
app:tint="?android:colorPrimary"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
android:layout_height="wrap_content"
android:src="@drawable/ic_place_white_196p"
android:textSize="46sp"
android:tint="?android:colorPrimary"
app:tint="?android:colorPrimary"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,11 @@
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/createButton"
android:layout_width="wrap_content"
android:src="@drawable/ic_add_white_24dp"
android:layout_height="wrap_content"
android:layout_marginEnd="16dp"
android:layout_marginBottom="16dp"
android:layout_height="wrap_content"
android:contentDescription="@null"
android:src="@drawable/ic_add_white_24dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent" />

Expand Down

0 comments on commit bc0bc6c

Please sign in to comment.