android / storage-samples

Multiple samples showing the best practices in storage APIs on Android.
Apache License 2.0
1.53k stars 576 forks source link

Media Store sample need to update the dependency #312

Open TestgNick opened 1 year ago

TestgNick commented 1 year ago

Sample works find with below configurations

ext { activity_ktx_version = '1.6.1' appcompat_version = '1.6.1' constraint_layout_version = '2.1.0' coroutines_version = '1.2.1' espresso_version = '3.4.0' glide_version = '4.12.0' gradleVersion = '3.4.2' junit_version = '4.13.2' kotlin_version = '1.7.21' material_version = '1.7.0' navigation_version = '2.1.0-beta02' recyclerview_version = '1.1.0-beta01' test_runner_version = '1.4.0' vectordrawable_version = '1.1.0' }

android { compileSdkVersion 33 buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } defaultConfig { applicationId "com.android.samples.mediastore" minSdkVersion 16 targetSdkVersion 33 versionCode 1 versionName "1.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildFeatures { dataBinding true } kotlinOptions { jvmTarget = "1.8" } namespace 'com.android.samples.mediastore' }