skip to Main Content

Android Studio – Getting android.app.ForegroundServiceStartNotAllowedException in Android 12 (SDK 31)

I upgraded my apps targetSdkVersion and compileSdkVersion to SDK 31, and started receiving the following crash in app in a service that updates widget in background. java.lang.RuntimeException: at android.app.ActivityThread.handleReceiver (ActivityThread.java:4321) at android.app.ActivityThread.access$1600 (ActivityThread.java:247) at android.app.ActivityThread$H.handleMessage (ActivityThread.java:2068) at android.os.Handler.dispatchMessage (Handler.java:106) at…

VIEW QUESTION

Android Studio – android.os.FileUriExposedException: exposed beyond app through Intent.getData() Exception , While sharing VCFile

Problem Statement I am trying to make VCardfile, and It is successfully created but, I Want to share created file Exception android.os.FileUriExposedException: file:///storage/emulated/0/vcf_demonuts/android_1633671182515.vcf exposed beyond app through Intent.getData() MY Code var vdfdirectory = File( Environment.getExternalStorageDirectory().toString() + VCF_DIRECTORY ); // have…

VIEW QUESTION

Android Studio – Hide the BottomNavigationView under the keyboard

In AndroidManifest.xml announced android:windowSoftInputMode="adjustResize" <activity android:name="com.atfmedia.flopi.ui.MainActivity" android:screenOrientation="portrait" android:theme="@style/AppTheme" android:windowSoftInputMode="adjustResize" /> The lower menu is announced in main_activity.xml , as well as viewing fragments. When the chat_fragment.xml is displayed in the container and the keyboard appears, the BottomNavigationView rises above it.…

VIEW QUESTION

Android Studio – Retrofit response body filed retun null, but logging interceptor showing full response in logact

I am using retrofit2.6.2 for api call. LoggingInterceptor showing full response in logcat but retrofit response body return null. I didn't figure out where is my problem. My json data schema is { "error":false, "msg":"Banner Found", "id":"9", "activity":"VipPremium1", "imageUrl":"https://1.bp.blogspot.com/-Kh3RQlJH7Xw/X-1mIPi7_HI/AAAAAAAAFME/Y2bCnU5odngcdDT83uC9QwUr7IGJdTDfACLcBGAsYHQ/s2616/COMPRESSED_IMG_1609393684674.jpg", "actionUrl":"https://www.youtube.com/watch?v=ukJX5ZgJec4",…

VIEW QUESTION
Back To Top
Search