Skip to content

Commit

Permalink
implemented android lint checks.
Browse files Browse the repository at this point in the history
  • Loading branch information
st235 committed Sep 20, 2020
1 parent aa30335 commit b843259
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'

android {
compileSdkVersion 29
compileSdkVersion 30
defaultConfig {
applicationId "github.com.st235.expandablebottonbar"
minSdkVersion 21
targetSdkVersion 29
targetSdkVersion 30
versionCode 1
}

Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/menu/toolbar_menu.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
<menu xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/clear"
android:title="Clear" />
android:title="@string/action_clear" />
</menu>
1 change: 1 addition & 0 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<string name="text2">Likes</string>
<string name="text3">Bookmarks</string>
<string name="text4">Settings</string>
<string name="action_clear">Clear</string>

<string name="programmatically_title">Manually created</string>
<string name="programmatically_description">This showcase demonstrates the basic usage of library.\nSee: https://github.com/st235/ExpandableBottomBar#usage</string>
Expand Down
4 changes: 2 additions & 2 deletions lib-expandablebottombar/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ androidExtensions {
}

android {
compileSdkVersion 29
compileSdkVersion 30

defaultConfig {
minSdkVersion 19
targetSdkVersion 29
targetSdkVersion 30
versionCode vers.versionCode
versionName vers.versionName

Expand Down

0 comments on commit b843259

Please sign in to comment.