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 9174289
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T16:43:37+00:00 2026-06-17T16:43:37+00:00

I used debug.keystore as well as a new keystore but i keep getting the

  • 0

I used debug.keystore as well as a new keystore but i keep getting the same error. i saw numerous posts about this problem but could’nt find any solution.

this is my map.xml

   <?xml version="1.0" encoding="utf-8"?>
     <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
     android:orientation="vertical" >


    <com.google.android.maps.MapView
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/mapView"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:apiKey="07QY1V71kePjxTjGCtnM7cgrccxWizYevUYKFig"
        android:clickable="true" >
    </com.google.android.maps.MapView>

   </RelativeLayout>

this is my manifest.xml

         <manifest xmlns:android="http://schemas.android.com/apk/res/android"
     package="com.bombil.aawaz"
 android:versionCode="1"
 android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="10" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>

<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />

 <uses-permission android:name="android.permission.INTERNET" />

 <uses-permission android:name="android.permission.INTERNET" />



<!-- GCM requires a Google account. -->
<uses-permission android:name="android.permission.GET_ACCOUNTS" />

<!-- Keeps the processor from sleeping when a message is received. -->
<uses-permission android:name="android.permission.WAKE_LOCK" />

<!-- Creates a custom permission so only this app can receive its messages. -->
<permission
    android:name="com.bombil.aawaz.permission.C2D_MESSAGE"
    android:protectionLevel="signature" />

<uses-permission android:name="com.bombil.aawaz.permission.C2D_MESSAGE" />

<!-- This app has permission to register and receive data message. -->
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />

<uses-permission android:name="android.permission.READ_PHONE_STATE" />

<!-- Network State Permissions to detect Internet status -->
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

<!-- Permission to vibrate -->
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.RECORD_AUDIO"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>



<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >

    <uses-library android:required="true" 
        android:name="com.google.android.maps"></uses-library>"

    <activity
        android:name=".MainActivity"
        android:label="@string/title_activity_main" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    <activity
        android:name="com.bombil.aawaz.Registration"
        android:label="@string/app_name"
        android:theme="@android:style/Theme.Light.NoTitleBar.Fullscreen"
        android:screenOrientation="portrait"

    >
        <intent-filter>
            <action android:name = "com.bombil.aawaz." />
            <category android:name="android.intent.category.DEFAULT"/>


        </intent-filter>

    </activity>

    <activity
        android:name="com.bombil.aawaz.TraceLocation"
        android:label="@string/app_name"


    >
        <intent-filter>
            <action android:name = "com.bombil.aawaz.TraceLocation" />
            <category android:name="android.intent.category.DEFAULT"/>


        </intent-filter>

    </activity>

    <activity
        android:name="com.bombil.aawaz.HelpMe"
        android:label="@string/app_name"
        android:theme="@android:style/Theme.Light.NoTitleBar.Fullscreen"
       android:screenOrientation="portrait"
    >
        <intent-filter>
            <action android:name = "com.bombil.aawaz.HelpMe" />
            <category android:name="android.intent.category.DEFAULT"/>


        </intent-filter>

    </activity>

    <activity
        android:name="com.bombil.aawaz.HelpAlert"
        android:label="@string/app_name"
        android:theme="@android:style/Theme.Light.NoTitleBar.Fullscreen"
        android:screenOrientation="portrait"
    >
        <intent-filter>
            <action android:name = "com.bombil.aawaz.HelpAlert" />
            <category android:name="android.intent.category.DEFAULT"/>


        </intent-filter>

    </activity>

     <receiver android:name="com.google.android.gcm.GCMBroadcastReceiver"
               android:permission="com.google.android.c2dm.permission.SEND" >
        <intent-filter>
            <action android:name="com.google.android.c2dm.intent.RECEIVE" />
            <action android:name="com.google.android.c2dm.intent.REGISTRATION" />
            <category android:name="com.bombil.aawaz" />  
        </intent-filter>   
    </receiver>


    <service
        android:name=".GCMIntentService">
    </service>

    <activity
        android:name="com.bombil.aawaz.AlertWidget"
        android:label="@string/app_name"
        android:theme="@android:style/Theme.Light.NoTitleBar.Fullscreen"

    >
        <intent-filter>
            <action android:name = "com.bombil.aawaz.AlertWidget" />
            <category android:name="android.intent.category.DEFAULT"/>


        </intent-filter>

    </activity>

      </application>




   </manifest>

Thanks in advance..

  • 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-06-17T16:43:38+00:00Added an answer on June 17, 2026 at 4:43 pm

    Solved , debug key just works during debugging through eclipse , while when u want to use the apk u need to use release key. Also release key does’nt work in debugging mode.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I used both keys with debug.keystore and custom keystore but just grids are getting
Update 2 : So I never have used the debug function in firebug, but
Having used to debug with tools like gdb etc, I have little knowledge about
I have learned programming for a couple of years, and used debug frequently.But I
try: print blah except KeyError: traceback.print_exc() I used to debug like this. I'd print
I'm used to debug my code using ghci. Often, something like this happens (not
Is there any IDE (linux based) for PHP that can be used to debug?
Trying to create a macro which can be used for print debug messages when
I'm trying to debug an objective C program. It used to run, and I'm
I'm trying to debug my code. I haven't really used a debugger before. I

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.