Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7040729
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T01:57:10+00:00 2026-05-28T01:57:10+00:00

I have an app that I’ve developed and I’m testing it across multiple devices.

  • 0

I have an app that I’ve developed and I’m testing it across multiple devices.

The app will not install on a Samsung Galaxy Q (running Froyo with an HVGA 320×480 screen).

The minSdkVersion is 7 so that shouldn’t be the problem. It installs and runs fine on other. larger screen devices.

I have set the AndroidManifest.xml <supports-screens> flag to true for all screen sizes.

The error I’m seeing is “application not installed” when attempting to install the .apk.

It installs fine on the emulator with the same screen resolution and OS version.

Here’s the manifest, please note that because the project is under NDA I’ve replaced identifiable elements with “%%%%”.

AndroidManifest.xml

<manifest android:versionCode="1"
      android:versionName="1.0"
      package="%%%%"
      xmlns:android="http://schemas.android.com/apk/res/android">
<application android:debuggable="false"
           android:hardwareAccelerated="true"
           android:icon="@drawable/icon"
           android:label="@string/app_name"
           android:name="%%%%"
           android:theme="@style/Theme.LoadingBackground">
<activity android:label="@string/app_name"
          android:name="%%%%" />
<activity android:icon="@drawable/icon"
          android:label="@string/app_name"
          android:launchMode="singleTask"
          android:name="%%%%"
          android:screenOrientation="portrait">
  <intent-filter>
    <action android:name="android.intent.action.MAIN" />
    <category android:name="android.intent.category.DEFAULT" />
    <category android:name="android.intent.category.LAUNCHER" />
  </intent-filter>
</activity>
<activity android:label="Store Front Widget"
          android:name="%%%%"
          android:screenOrientation="portrait"
          android:taskAffinity="%%%%">
  <intent-filter>
    <action android:name="android.intent.action.MAIN" />
  </intent-filter>
</activity>
<receiver android:label="%%%%"
          android:name="%%%%">
  <intent-filter>
    <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
  </intent-filter>
  <meta-data android:name="android.appwidget.provider"
             android:resource="@xml/widget_provider" />
</receiver>
<receiver android:name="%%%%" />
<service android:name="c%%%%" />
<service android:name="%%%%">
  <intent-filter>
    <action android:name="%%%%" />
  </intent-filter>
</service>
<service android:name="%%%%">
  <intent-filter>
    <action android:name="%%%%" />
  </intent-filter>
</service>
<uses-library android:name="com.google.android.maps" />
</application>
<supports-screens android:anyDensity="true"
                android:largeScreens="true"
                android:normalScreens="true"
                android:smallScreens="true" />

<uses-feature android:name="android.hardware.camera" />
<uses-feature android:name="android.hardware.camera.autofocus" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />

<uses-sdk android:minSdkVersion="7"
        android:targetSdkVersion="7" />
</manifest>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T01:57:11+00:00Added an answer on May 28, 2026 at 1:57 am

    What kind of app you made?

    If you are using camera resource in your app, then you must check your preview frame size.

    public Camera getCameraInstance(){
        Camera c = null;
        try {
            c = Camera.open(); 
    
            Parameters param = c.getParameters();
    
            List<Size> list = param.getSupportedPreviewSizes(); 
            int list_size = list.size();
    
            Log.e("list size", Integer.toString(list_size));
    
            int supportedH = list.get(2).height;
            int supportedW = list.get(2).width;
    
            Log.e("supported height", Integer.toString(supportedH));
            Log.e("supported width", Integer.toString(supportedW)); 
    
            param.setPreviewFormat(ImageFormat.NV21); 
            c.setParameters(param);            
        }
        catch (Exception e){
            Log.e("colorPicker", e.toString());
        }
        return c;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an app that is failing on the install. The vendor says I
I have an App that will send authenticated emails using System.Net.Mail and System.Net.NetworkCredential my
I have an app that will display Lotto Max numbers, I need to make
I have an app that struggles to perform well on iOS 5 running on
I have an app that runs in Linux. Each one will try to get
I have an app that will display web pages within a UIWebView. The pages
I have an app that, while running, needs to poll its own memory usage.
I have an app that works on the emulator but will intermittently crash when
I have an app that I want to have a button that will show
I have an app that will speak text messages to the user. I want

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.