skip to Main Content

Android Studio – Retrofit response.body is empty if minified is enabled

I am trying to create a release version of my app using below configuration. buildTypes { release { debuggable false minifyEnabled true shrinkResources true proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } debug { debuggable true minifyEnabled true shrinkResources true proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' }…

VIEW QUESTION

Android Studio – Android studio: why image shown in design disapears in run time?

Images shown in Android studio disapear in the emulator : More than words, you can see thus screenshot explicit: Code: <?xml version="1.0" encoding="utf-8"?> <androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@color/signorGrey"> <ImageView android:id="@+id/logoSignor" android:layout_width="65dp" android:layout_height="77dp" app:srcCompat="@drawable/iconpetit2929" android:gravity="start|center_vertical" android:background="@color/signorBlue" android:visibility="visible" android:contentDescription="@string/logosignor"/> Do…

VIEW QUESTION
Back To Top
Search