Posts

Showing posts from September, 2012

"Server could not process your apk" problem

Image
After completing the development and the signing process of the application on which I'm working , I was trying to upload it in the Google Play. But I was getting this error The server could not process your apk. Try again After Googling for sometime, I came to know that this error arises when there is a problem in the manifest file included in the apk. From Android developer forums, I came to know that this problem is not happening only to me. Many developers are facing this problem. In my case, the reason behind the problem was very peculiar. In my manifest file, one of my activities was declared like this                  <activity             android:name=".views.user.ChangeEmailFormActivity"             android:label="Change Email Address"             android:theme="@android:style/Theme.Dialog"              android:icon="@android:drawable/ic_dialog_alert" >       </activity> This was creating the problem(?).