[android-developers] Violation of section 4.4 of the Developer Distribution Agreement.

2015-02-15 Thread Atif Farrukh
I have an app that I submitted on Google Play and was removed with following message. Please address the issue described below, then submit an update with your changes. REASON FOR REJECTION:Violation of section 4.4 of the Developer Distribution Agreement. After a regular review we have

[android-developers] Search a contact using phone number

2012-04-14 Thread Atif Farrukh
I would like to retrieve the name of the contact associated with an incoming message number. I came up with the following code. Uri lookupUri = Uri.withAppendedPath(PhoneLookup.CONTENT_FILTER_URI, Uri.encode(msgSender)); Cursor c = getContentResolver().query(lookupUri, new

Re: [android-developers] Search a contact using phone number

2012-04-14 Thread Atif Farrukh
by not working? Is it crashing? Are you getting an exception? Does your mobile device catch on fire? Does the code cause your lights to turn on and off? Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Sat, Apr 14, 2012 at 4:27 AM, Atif Farrukh atiffarr

[android-developers] Problems in making Sms WakeUp application

2012-04-08 Thread Atif Farrukh
I am trying to make an application, so that my mobile wakes up when it receives a sms... I tried and make the appHere is the code:: package com.atiffarrukh.wakemeup; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import

[android-developers] Migrate Android Code error

2012-02-29 Thread Atif Farrukh
I am making a menu for my menu... i am using the following code.. switch(item.getItemId()){ case R.id.aboutUs break; case R.id.feedback: break; } gave an error, Migrate Android Code , eclipse converted it into if else statment as below, from the android site, still getting the same error