android-manifest

Android - Google Play filtering out xxhdpi

荒凉一梦 提交于 2020-01-02 01:53:09
问题 I currently have a problem with Google Play filtering and the new density class xxhpdi, which was introduced in API Level 16. My app is splitted into 3 APK files (I know that is not the best practice, but due to a bad planning, I have to do it like this at the moment). The interesting part is the version for Android 4.0, Smartphones only. I have setup market filter in AndroidManifest.xml like this: <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="17"/> <compatible-screens>

Android manifest config for smartphone only, Sony Xperia Z, HTC One and Samsung Galaxy S4 missing on google play

别说谁变了你拦得住时间么 提交于 2020-01-02 00:57:11
问题 I've an android app on the google play, which is only compatible for smartphone (i'm working on the tablet adaptation). I've set up this configuration in my AndroidManifest.xml to exclude the tablets: (i exclude x-large) <supports-screens android:largeScreens="true" android:normalScreens="true" android:smallScreens="true" android:resizeable="true" android:anyDensity="true" /> It works fine, but now the new smartphones Sony Xperia Z, HTC One and Samsung Galaxy S4 are not compatible. And if i

Fullscreen Mode using ActionBarSherlock on Devices running API <11

余生长醉 提交于 2020-01-01 10:56:08
问题 Is there a way to go in fullscreen mode using ActionBarSherlock on Devices running API <11? Further Information: My app is using ActionBarSherlock and while testing on different devices i stumbled on a problem. If i try tro launch an activity in fullscreen android:theme="@android:style/Theme.NoTitleBar.Fullscreen" on a Device running on a API lower than 11 the following error occured: 05-29 10:12:54.436: E/AndroidRuntime(1034): FATAL EXCEPTION: main 05-29 10:12:54.436: E/AndroidRuntime(1034):

AndroidManifest.xml with multiple application tags

旧巷老猫 提交于 2020-01-01 10:00:32
问题 I'm very new to Android programming and I've been trying to figure out why my app is force-closing on a button-click. I've narrowed it down to a few things. One question; Is it possible to have more than one <application> tag in the manifest xml? Here is my code: <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.dummies.android.beergoggles" android:versionCode="1" android:versionName="1.0"> <uses-sdk android:minSdkVersion=

My App isn't Compatible with Nexus 7 on Google Playstore

不羁岁月 提交于 2020-01-01 09:44:34
问题 Hii i have submitted an app to playstore but it isn't compatible with Nexus here is my Manifest My App is on List of supported Devices in the Google Play and when i check the same in the nexus device it is not at all visible on Search <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="14"/> <supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:smallScreens="true" android:xlargeScreens="true" /> <uses

Getting “The AndroidManifest.xml of the uploaded APK could not be parsed. Was it compiled properly?” error after enabling Google App Signing

梦想与她 提交于 2020-01-01 08:59:50
问题 After enabling Google App Signing, everytime I try to upload a signed release APK to Play Store I get an error saying The AndroidManifest.xml of the uploaded APK could not be parsed. Was it compiled properly? . Here is the Android Manifest file got from the signed APK with the APK Analyzer tool <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="227" android:versionName="4.9" package="com.myproject"> <uses-sdk

Supporting android devices with phone and without phone capabilities

孤街浪徒 提交于 2020-01-01 07:08:27
问题 I have an application that will run on devices that have phone capabilities and that don't. Here are some of my queries: 1) Will i be able to support both type of devices. 2) For the devices that have phone capabilities, i need to enable calling feature. and the device that do not have phone capabilities i will disable calling functionality. I am not very clear about the <user-permissions> and <user-features> concept, is there a way to specify phone <user-features> 回答1: If you're not

How do I make an intent-filter for streaming an MP3 file?

一曲冷凌霜 提交于 2020-01-01 05:44:05
问题 On Android, if you type a URL to an MP3 file in the browser (or click on a link to the file) you get that "Complete action using" popup with some applications listed that can play the file (Music, StreamFurious, Streaming Media Player, Winamp, XiiaLive Lite, to name a few). How can I get my application to show up in that list? I'm pretty sure there's an intent-filter I have to add to the AndroidManifest.xml but I have no idea what action, category, or data needs to be in it. Anyone know what

failed to upload to android market

有些话、适合烂在心里 提交于 2020-01-01 05:35:13
问题 hi guys trying to upload an app to google play but keep getting this error Upload failed You uploaded an APK or Android App Bundle which specifies an actions schema document in its manifest, but action schemas are not yet allowed. If you are part of a beta program, you need to have your developer account whitelisted. Can somebody please explain what im doing wrong.. ive uploaded apps in the past n never come across this error before. here is my manifest file <?xml version="1.0" encoding="utf

Match URIs with <data> like http://example.com/something in AndroidManifest

試著忘記壹切 提交于 2020-01-01 04:53:10
问题 I am struggling with the <data> element in the AndroidManifest.xml file to get my URI matching working. I want to match the following URIs: http://example.com/something http://example.com/foo http://example.com/foo/ but not http://example.com http://example.com/ http://example.com/something/else I got it mostly working with <data android:scheme="http" android:host="example.com" android:pathPattern="/..*" /> <data android:pathPattern="/..*/" /> but it still matches http://example.com/something