skip to Main Content

Android Studio – POST_NOTIFICATIONS request doesn't work, dialog box not showing

In manifest: <uses-permission android:name="android.permission.POST_NOTIFICATIONS"/> In Activity: if (Build.VERSION.SDK_INT >= 33) { if (ContextCompat.checkSelfPermission(this, Manifest.permission.POST_NOTIFICATIONS) != PackageManager.PERMISSION_GRANTED) { ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.POST_NOTIFICATIONS},1); } else { // } } In the build.gradle file the targetSdkVersion is 34 I have other permission requests like…

VIEW QUESTION

Android Studio – How can you replicate a bug seen when installing an app via App Bundle from the Google Play store?

We've developed an app that works flawlessly when run from Android Studio with the following configuration: buildTypes { debug { minifyEnabled true proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } release { minifyEnabled true proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } To simulate a Google Play…

VIEW QUESTION
Back To Top
Search