diff --git a/README.md b/README.md index c73d8e21e..f742a4188 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# ![Android MP3 Player](app/src/main/res/mipmap-hdpi/my_app_icon.png) Android MP3 Player +# ![Android MP3 Player](app/src/main/res/mipmap-hdpi/headphone_icon_foreground.png) Android MP3 Player [![Build Status](https://travis-ci.org/goldy1992/Mp3Player.svg?branch=master)](https://travis-ci.org/goldy1992/Mp3Player) [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=goldy1992_Mp3Player&metric=alert_status)](https://sonarcloud.io/dashboard?id=goldy1992_Mp3Player) --- Supported Versions `>= Android Marshmallow` diff --git a/app/build.gradle b/app/build.gradle index 5686b6aa1..866001890 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -5,7 +5,6 @@ apply plugin: 'com.github.ben-manes.versions' android { def PIE = 28 - def OREO = 26 def MARSHMALLOW = 23 def BUILD_TOOLS_VERSION = '29.0.2' @@ -15,8 +14,8 @@ android { applicationId "com.github.goldy1992.mp3player" minSdkVersion MARSHMALLOW targetSdkVersion PIE - versionCode 2 - versionName "1.0.1" + versionCode 3 + versionName "1.0.2" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" javaCompileOptions { annotationProcessorOptions { @@ -125,7 +124,7 @@ dependencies { def GOOGLE_GUAVA_VERSION = '27.1-android' def COORDINATOR_LAYOUT_VERSION = '1.0.0' def TEST_UI_AUTOMATOR_VERSION= '2.2.0' - def FRAGMENT_TESTING_VERSION = '1.2.0-rc02' + def FRAGMENT_VERSION = '1.2.0-rc02' def FAST_SCROLL_VERSION = '2.0.1' def GLIDE_VERSION = '4.9.0' def ROOM_VERSION = '2.1.0' @@ -150,7 +149,7 @@ dependencies { implementation group: 'com.google.android.exoplayer', name: 'exoplayer-ui', version: EXO_PLAYER_VERSION implementation group: 'com.google.android.exoplayer', name: 'extension-mediasession', version: EXO_PLAYER_VERSION implementation group: 'androidx.room', name: 'room-runtime', version: ROOM_VERSION - implementation group: 'androidx.fragment', name: 'fragment', version: FRAGMENT_TESTING_VERSION + implementation group: 'androidx.fragment', name: 'fragment', version: FRAGMENT_VERSION annotationProcessor group: 'androidx.room', name: 'room-compiler', version: ROOM_VERSION implementation 'androidx.viewpager2:viewpager2:1.0.0-rc01' @@ -190,7 +189,7 @@ dependencies { testImplementation group: 'org.robolectric', name: 'robolectric', version: ROBOLECTRIC_VERSION// https://mvnrepository.com/artifact/org.robolectric/shadows-support-v4 testImplementation group: 'org.robolectric', name: 'shadows-supportv4', version: ROBOLECTRIC_VERSION - debugImplementation group: 'androidx.fragment', name: 'fragment-testing', version: FRAGMENT_TESTING_VERSION + debugImplementation group: 'androidx.fragment', name: 'fragment-testing', version: FRAGMENT_VERSION androidTestImplementation group: 'androidx.test', name: 'core', version: TEST_CORE_VERSION androidTestImplementation group: 'androidx.annotation', name: 'annotation', version: ANNOTATION_VERSION androidTestImplementation group: 'androidx.test.ext', name: 'junit', version: JUNIT_EXT_VERSION