Skip to content

Commit

Permalink
Fix most Gradle warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Shingyx committed Sep 8, 2019
1 parent 2ac3362 commit 8d31184
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions boomswitch/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ android {

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'com.google.android.material:material:1.1.0-alpha09'
implementation 'com.google.android.material:material:1.1.0-alpha10'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
}
3 changes: 2 additions & 1 deletion boomswitch/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:editable="false"
tools:ignore="Deprecated,LabelFor" />
tools:ignore="Deprecated,LabelFor"
tools:text="My BOOM" />

</com.google.android.material.textfield.TextInputLayout>

Expand Down
1 change: 0 additions & 1 deletion boomswitch/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
<string name="boom_switched_on">BOOM switched on!</string>
<string name="boom_switched_off">BOOM switched off!</string>

<string name="error_unknown">Unknown error.</string>
<string name="error_no_speaker_selected">Please select your speaker in the app.</string>
<string name="error_bluetooth_disabled">Bluetooth is turned off. Please turn Bluetooth on then try again.</string>
<string name="error_speaker_unpaired">Could not find %1$s. Has it been unpaired?</string>
Expand Down

0 comments on commit 8d31184

Please sign in to comment.