[android-developers] Re: Person using Sprint Hero can't see application?

2009-11-17 Thread g1bb
That makes sense... but should the target SDK be 5 instead of 4 in
order to include Android 2.0 users, too?

Thanks everyone for the help and sorry for the delay in my response.

On Nov 14, 8:46 pm, Alexey Volovoy avolo...@gmail.com wrote:
 Most of the Heros running 1.5 , although upgrade afaik is available.
 So minSdk should be 3 ( or you'll run into the same problem with CLIQ
 users )
 target SDK should be 4

 On Nov 14, 9:53 am, g1bb corymgibb...@gmail.com wrote:

  Hello,

  I have someone e-mailing me that they can't see my application in the
  Market. Is there something specific that I need to put in my manifest?
  They're using a Sprint Hero.

  Here's my manifest:
  ?xml version=1.0 encoding=utf-8?
  manifest xmlns:android=http://schemas.android.com/apk/res/android;
        package=com.droidfart.app android:versionCode=14
  android:versionName=1.1.2
  application android:label=@string/app_name android:icon=@drawable/
  logo
          activity android:name=.Main
                    android:label=@string/app_name
                    android:screenOrientation=portrait
              intent-filter
                  action android:name=android.intent.action.MAIN /
                  category
  android:name=android.intent.category.LAUNCHER /
              /intent-filter
          /activity

          activity android:name=.FartBombActivity
                  android:label=@string/app_name
                  android:screenOrientation=portrait/

          activity android:name=.FartBombCountDown
                  android:label=@string/app_name
                  android:screenOrientation=portrait/

          activity android:name=.Shaker
          android:label=@string/app_name
          android:screenOrientation=portrait/

          activity android:name=.Settings
          android:label=@string/app_name
          android:screenOrientation=portrait/

          activity android:name=.Recorder
          android:label=@string/app_name
          android:screenOrientation=portrait/

           receiver android:name=.SMSReceiver
                          android:enabled=true
                          intent-filter
                                  action
                                          
  android:name=android.provider.Telephony.SMS_RECEIVED /
                          /intent-filter
          /receiver
          receiver android:name=.SMSReceiver android:label=@string/
  app_name
      intent-filter
         category android:name=android.intent.category.LAUNCHER /
      /intent-filter
  /receiver

   receiver android:name=.OneShotAlarm android:process=:remote /
     service android:name=.FartBomb/
   /application

  uses-sdk android:minSdkVersion=4/uses-sdk
  uses-permission android:name=android.permission.RECEIVE_SMS/uses-
  permission
  uses-permission android:name=android.permission.WAKE_LOCK/uses-
  permission
  uses-permission android:name=android.permission.VIBRATE/uses-
  permission
  uses-permission android:name=android.permission.RECORD_AUDIO/uses-
  permission
  /manifest

  Thanks in advance.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: Person using Sprint Hero can't see application?

2009-11-14 Thread Alexey Volovoy
Most of the Heros running 1.5 , although upgrade afaik is available.
So minSdk should be 3 ( or you'll run into the same problem with CLIQ
users )
target SDK should be 4

On Nov 14, 9:53 am, g1bb corymgibb...@gmail.com wrote:
 Hello,

 I have someone e-mailing me that they can't see my application in the
 Market. Is there something specific that I need to put in my manifest?
 They're using a Sprint Hero.

 Here's my manifest:
 ?xml version=1.0 encoding=utf-8?
 manifest xmlns:android=http://schemas.android.com/apk/res/android;
       package=com.droidfart.app android:versionCode=14
 android:versionName=1.1.2
 application android:label=@string/app_name android:icon=@drawable/
 logo
         activity android:name=.Main
                   android:label=@string/app_name
                   android:screenOrientation=portrait
             intent-filter
                 action android:name=android.intent.action.MAIN /
                 category
 android:name=android.intent.category.LAUNCHER /
             /intent-filter
         /activity

         activity android:name=.FartBombActivity
                 android:label=@string/app_name
                 android:screenOrientation=portrait/

         activity android:name=.FartBombCountDown
                 android:label=@string/app_name
                 android:screenOrientation=portrait/

         activity android:name=.Shaker
         android:label=@string/app_name
         android:screenOrientation=portrait/

         activity android:name=.Settings
         android:label=@string/app_name
         android:screenOrientation=portrait/

         activity android:name=.Recorder
         android:label=@string/app_name
         android:screenOrientation=portrait/

          receiver android:name=.SMSReceiver
                         android:enabled=true
                         intent-filter
                                 action
                                         
 android:name=android.provider.Telephony.SMS_RECEIVED /
                         /intent-filter
         /receiver
         receiver android:name=.SMSReceiver android:label=@string/
 app_name
     intent-filter
        category android:name=android.intent.category.LAUNCHER /
     /intent-filter
 /receiver

  receiver android:name=.OneShotAlarm android:process=:remote /
    service android:name=.FartBomb/
  /application

 uses-sdk android:minSdkVersion=4/uses-sdk
 uses-permission android:name=android.permission.RECEIVE_SMS/uses-
 permission
 uses-permission android:name=android.permission.WAKE_LOCK/uses-
 permission
 uses-permission android:name=android.permission.VIBRATE/uses-
 permission
 uses-permission android:name=android.permission.RECORD_AUDIO/uses-
 permission
 /manifest

 Thanks in advance.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: Person using Sprint Hero can't see application?

2009-11-14 Thread Walter
I had the same problem, here is the solution from one user:

I found that the fault was caused by modifying the build.trout.prop
to enable Google Maps Navigation, this in turn broke protected apps in
the 1.6 marketplace.apk

Just letting you know incase anyone else has the same issue, they need
to restore their original build.trout.prop



On Nov 14, 8:46 pm, Alexey Volovoy avolo...@gmail.com wrote:
 Most of the Heros running 1.5 , although upgrade afaik is available.
 So minSdk should be 3 ( or you'll run into the same problem with CLIQ
 users )
 target SDK should be 4

 On Nov 14, 9:53 am, g1bb corymgibb...@gmail.com wrote:

  Hello,

  I have someone e-mailing me that they can't see my application in the
  Market. Is there something specific that I need to put in my manifest?
  They're using a Sprint Hero.

  Here's my manifest:
  ?xml version=1.0 encoding=utf-8?
  manifest xmlns:android=http://schemas.android.com/apk/res/android;
        package=com.droidfart.app android:versionCode=14
  android:versionName=1.1.2
  application android:label=@string/app_name android:icon=@drawable/
  logo
          activity android:name=.Main
                    android:label=@string/app_name
                    android:screenOrientation=portrait
              intent-filter
                  action android:name=android.intent.action.MAIN /
                  category
  android:name=android.intent.category.LAUNCHER /
              /intent-filter
          /activity

          activity android:name=.FartBombActivity
                  android:label=@string/app_name
                  android:screenOrientation=portrait/

          activity android:name=.FartBombCountDown
                  android:label=@string/app_name
                  android:screenOrientation=portrait/

          activity android:name=.Shaker
          android:label=@string/app_name
          android:screenOrientation=portrait/

          activity android:name=.Settings
          android:label=@string/app_name
          android:screenOrientation=portrait/

          activity android:name=.Recorder
          android:label=@string/app_name
          android:screenOrientation=portrait/

           receiver android:name=.SMSReceiver
                          android:enabled=true
                          intent-filter
                                  action
                                          
  android:name=android.provider.Telephony.SMS_RECEIVED /
                          /intent-filter
          /receiver
          receiver android:name=.SMSReceiver android:label=@string/
  app_name
      intent-filter
         category android:name=android.intent.category.LAUNCHER /
      /intent-filter
  /receiver

   receiver android:name=.OneShotAlarm android:process=:remote /
     service android:name=.FartBomb/
   /application

  uses-sdk android:minSdkVersion=4/uses-sdk
  uses-permission android:name=android.permission.RECEIVE_SMS/uses-
  permission
  uses-permission android:name=android.permission.WAKE_LOCK/uses-
  permission
  uses-permission android:name=android.permission.VIBRATE/uses-
  permission
  uses-permission android:name=android.permission.RECORD_AUDIO/uses-
  permission
  /manifest

  Thanks in advance.



-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en