gvinodaraaj / apv

Automatically exported from code.google.com/p/apv
GNU General Public License v3.0
0 stars 0 forks source link

Not found on market (htc tattoo) #34

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Open the market app
2. Search for cx.hell.android.pdfview
3. No result found

What is the expected output? What do you see instead?
The application is found

What version of the product are you using? On what operating system?
Android 1.6

Please provide any additional information below.
Perhaps is a problem with QVGA screens?

Original issue reported on code.google.com by diego.ma...@gmail.com on 23 Nov 2010 at 1:39

GoogleCodeExporter commented 8 years ago
I think you should add theese lines in AmdroidManifest.xml file:

<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="4"/>
 <supports-screens
 android:normalScreens="true"
 android:largeScreens="true"
 android:smallScreens="true">
 </supports-screens>

Thank you

Original comment by diego.ma...@gmail.com on 23 Nov 2010 at 1:41

GoogleCodeExporter commented 8 years ago
Thank you, I just added your suggested changes. 

Original comment by ldro...@gmail.com on 2 Dec 2010 at 9:02

GoogleCodeExporter commented 8 years ago
I have the same problem. I add the support for smallscreens, update code 
version but my app is not in market... 

this is my manifest

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
     package="com.pos**.*"
     android:versionCode="3"
     android:versionName="1.0">
    <application android:icon="@drawable/icon" android:label="@string/app_name" android:theme ="@style/CustomTheme" android:debuggable="false">
        <activity android:name=".Start"
                 android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    <activity android:name="Login"></activity>
<activity android:name="MenuPrincipale"></activity>
...
<activity android:name="InsertIssue"></activity>

</application>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-sdk android:minSdkVersion="4" />
<uses-permission android:name="android.permission.CAMERA"></uses-permission>
<uses-permission 
android:name="android.permission.ACCESS_FINE_LOCATION"></uses-permission>
<supports-screens
 android:normalScreens="true"
 android:largeScreens="true"
 android:smallScreens="true">
 </supports-screens>

</manifest> 

Original comment by misitifr...@gmail.com on 18 Dec 2010 at 8:59