Top "Android-manifest" questions

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

Android Studio gets package name wrong when running .apk

I changed my package name from com.mycompany.myapplication to com.mycompany.testapp. Everything builds fine but when I try …

android-studio android-manifest
Avoid hardcoding the debug mode; Warning in Android Manifest

After updating my ADT plugin to version 17 I'm getting a warning massage saying Avoid hardcoding the debug mode; leaving it …

android android-manifest eclipse-adt
Android location manager permissions to be used

I have the following code in my android project: locationManager = (LocationManager) getSystemService(LOCATION_SERVICE); Criteria criteria = new Criteria(); bestProvider = locationManager.…

android permissions android-manifest locationmanager
How rotate line in Android XML?

I'm trying to draw a diagonal line in an Android app with the XML, but it is not working. It …

android android-layout android-manifest android-xml android-drawable
What's the difference between access network state (ACCESS_NETWORK_STATE) and WIFI state (ACCESS_WIFI_STATE) permissions?

In Permissions tab of Android Manifest, in the drop down there are options called android.permission.ACCESS_NETWORK_STATE and …

android android-manifest android-permissions
Change application name and label

I would like to change the application name and label in the installer window (see the attached image). Name and …

android android-studio android-manifest android-2.3-gingerbread
AnalyticsService not registered in the app manifest - error

I am trying to implement google analytics service to android app using the following documentation provided in sdk: https://developers.…

android google-analytics android-manifest
Get android:versionName manifest element in code

I want to know how to parse the AndroidManifest.xml file in order to get the Application Version Number through …

android android-manifest
Android Manifest Restrict To Tablets

For business reasons I'd like to restrict my Android application strictly to tablet devices. At the moment, I can limit …

android android-manifest google-play
Is it possible to define a broadcast receiver as an inner class in manifest file?

I want to create a broadcast receiver as an inner class in my main activity. But I have problems defining …

android android-manifest broadcastreceiver