Top "Android-manifest" questions

The manifest presents essential information about the application to the Android system

How does the Android repo manifest repository work?

The Android source is a large hierarchy of git repositories. They are managed by a custom script called repo. Repo …

android git android-manifest android-source git-repo
Where can I get a list of Android permissions

I'm trying to get a list of valid Android permissions. I know the 'official' ones at http://developer.android.com/…

android android-manifest
How to customize the width and height when show an Activity as a Dialog

If I have defined a Activity: public class DialogActivity extends Activity{ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); …

android android-layout android-emulator android-widget android-manifest
android - "Exported receiver does not require permission" on receivers meant to receive from system services

I have some receivers declared in my AndroidManifest : <!-- no warning --> <receiver android:name=".receivers.TriggerMonitoringBootReceiver" …

android broadcastreceiver android-manifest android-permissions android-broadcastreceiver
android manifest merger failed, gms play services / firebase

I am trying to add firebase to my app using the firebaseUI. As the documentations says, I have used the …

android firebase android-manifest firebaseui
Android how to create Custom URL scheme with the given format myapp://http://

I have researched through most of the custom URL scheme Q&A and I have not found my possible …

android url android-manifest intentfilter url-scheme
Android - resource linking failed / failed linking references

I checked the Local history of my XML files and double checked my Manifest file and found nothing wrong. Before …

android xml android-manifest aapt aapt2
Must I specify the parent activity name in the Android Manifest?

I have an activity that starts another activity. Is it mandatory that I specify the parent activity in the Android …

android android-activity android-manifest android-navigation
How to fix "Error generating final archive: duplicate entry: AndroidManifest.xml"

I put two projects into Eclipse, called Project1 and Project2. Project1 is independent, but Project2 must be dependent to Project1. …

android android-manifest
Android - How to trigger a Broadcast Receiver to call its onReceive() method?

I have scheduled alarm for my application. I have implemented broadcast receiver to be triggered once the alarm time reaches. …

android android-intent broadcastreceiver android-manifest android-broadcast