android-manifest

Android google maps v2 crashes on start

做~自己de王妃 提交于 2019-12-23 05:11:17
问题 Everytime I've tried to test my app on my phone, It shows a prompt that says "Unfortunately, the app has stopped." I have already checked the build path, I've made sure that Google play services library is added. I've tried searching several threads already on how to fix and none of them are working. So I've made this post as a last resort to get someone to check it manually. Manifest: <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android"

Android boot completed notification not received after reboot

谁都会走 提交于 2019-12-23 04:54:32
问题 I have a broadcast receiver registered in the application manifest to receive the BOOT_COMPLETED notification. After restarting the mobile device I receive no notification. However, I do receive the notification when I open my application. Please assist. Receive boot completed permission from my manifest: <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> Receiver from my manifest: <receiver android:name=".BootCompletedReceiver"> <intent-filter> <action android:name=

Google play auto update does not update apps

大城市里の小女人 提交于 2019-12-23 04:52:21
问题 I have make application as Home & launcher app with below manifest, When i set my application as default Launcher it will not auto update from google play, All other app auto update fine but only one application is not update <activity android:name=".MainActivity" android:alwaysRetainTaskState="true" android:excludeFromRecents="true" android:launchMode="singleInstance" android:showOnLockScreen="true"> <intent-filter> <action android:name="android.intent.action.MAIN"/> <action android:name=

Android : Alarm Notification Issue

时光总嘲笑我的痴心妄想 提交于 2019-12-23 04:26:37
问题 In My application i have set the many Alarm Notification. All are at different date but with the same time. And i am setting it on/off with the help of the toggle Button. Now the Problem is, If i am setting it on then at that time it gives me notification of the previous one from current date. it only appear at once and then all alarm notification works fine. Suppose if i have set the alarm at 12,14,16 date then i set the date as 15 in my device and on the toggle button then it gives me

Update the app name and logo based on the maven android build profile

故事扮演 提交于 2019-12-23 04:15:54
问题 This is my Manifest file <?xml version="1.0" encoding="UTF-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="20411" android:versionName="2.4.11-SNAPSHOT" package="com.customcompany"> <uses-percustomssion android:name="android.percustomssion.ACCESS_WIFI_STATE"/> <uses-percustomssion android:name="android.percustomssion.CHANGE_WIFI_STATE"/> <uses-percustomssion android:name="android.percustomssion.CHANGE_WIFI_MULTICAST_STATE"/> <uses-percustomssion

uncaught exception relaunching the calling activity?

♀尐吖头ヾ 提交于 2019-12-23 03:41:21
问题 I have a large android app and recently I am seeing that on any uncaught exception, the exception is shown in the DDMS Logcat and following that the calling parent activity gets relaunched (onCreate get's called). Ideally the application should just exit. We are using ARCA crash application reporting, but commented out that and still see the same activity getting relaunched. I am calling the startActivityForResults and the android manifest has android:finishOnTaskLaunch true for the activity

no launcher activity found error

可紊 提交于 2019-12-23 03:27:11
问题 I created very simple activity that displays hello world and a button labled TEST, when i press this button the Toast will display a message and I run this app on the emulator. the problem is that, when I try to run this app the console displays that no launcher activity found and nothing to be displayed on the emulator although the code has no error at all. manifest.xml: <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.qr00" android:versionCode="1"

Android - How to get parentActivityName attribute value programmatically?

梦想的初衷 提交于 2019-12-23 02:28:27
问题 An activity is declared in my manifest like this: <activity android:name=".TicketingHomeActivity" android:label="@string/title_activity_ticketing_home" android:parentActivityName=".HomeActivity" /> How can I get the value of android:parentActivityName programmatically? I need to do this as I have just replaced my ActionBar with a Toolbar, but getSupportActionBar().setDisplayShowHomeEnabled(true) is now showing the Up arrow in an activity even when there is no parentActivityName attribute set

Which aSmack jar file (android-14, android-15, …) should be included to support SDK version 14-19?

最后都变了- 提交于 2019-12-23 01:24:08
问题 I am stuck between two different errors. Unable to instantiate activity ComponentInfo unable-to-execute-dex-multiple-dex-files-define-lcom-myapp-rarray In order to fix one I go with solution as mentioned in 1 , and it leads to second error , and vice versa . 1st solution instructs to remove private libraries after going into buildpath , other ask to check mark private libraries. There is no problem with android - manifest , as there is activity Main specified My app was working fine until I

Keeping the same background across multiple activities in Android and excluding them from activity transitions

我的未来我决定 提交于 2019-12-22 21:54:53
问题 I'm working on an Android application at the moment. Basically, I have multiple ViewFlippers which will be used to create sets of 'panels'. For example, I have a ViewFlipper to simulate a home screen environment (multiple panels that can be accessed by swiping left or right), as well as a different ViewFlipper to simulate an application launcher (panels for favorite apps, all apps, settings etc). I've done this by creating each set of panels, or each ViewFlipper in it's own activity, to