skip to Main Content

Android Studio – android: exported needs to be explicitly specified for element <service#io.intercom.android.sdk.fcm.IntercomFcmMessengerService>

I'm getting a Flutter build error in AndroidManifest.xml android:exported needs to be explicitly specified for element <service#io.intercom.android.sdk.fcm.IntercomFcmMessengerService>. Apps targeting Android 12 and higher are required to specify an explicit value for android:exported when the corresponding component has an intent filter…

VIEW QUESTION

Android Studio – My android app keeps crashing from which seems to be a permission problem despite granting the relevant permission in the Manifest

Below is the MainActivity code from which the problem is arising from. class MainActivity : AppCompatActivity(), NavigationView.OnNavigationItemSelectedListener, AdapterView.OnItemSelectedListener { private var user: FirebaseUser? = null var activity: MainActivity? = null private var mUserRef: DatabaseReference? = null private lateinit var dialog:…

VIEW QUESTION

Android Studio – SplashScreen doesn't show main activity but it automatically closes the app after showing the splashscreen

<application android:allowBackup="true" android:icon="@drawable/logo" android:label="App Name" android:roundIcon="@drawable/logo" android:supportsRtl="true" android:requestLegacyExternalStorage="true" android:theme="@style/maintheme" android:usesCleartextTraffic="true" tools:ignore="GoogleAppIndexingWarning" tools:replace="android:icon, android:allowBackup" > this activity is splash screen activity below <activity android:name="" android:exported="true"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> this activity is Folder activity activity below…

VIEW QUESTION
Back To Top
Search