Note that there are some explanatory texts on larger screens.

plurals
  1. POUnable to Upload Updated APK to Google Play Store
    primarykey
    data
    text
    <p>The same issue was posted <a href="https://stackoverflow.com/questions/19994874/unable-to-upload-new-apk-file-to-android-play-store">here</a> but the answer given didn't work for me. I've uploaded to the store before and now I can't update my app to include some bug fixes. Whenever I try to upload the APK I get this error </p> <blockquote> <p>Upload failed</p> <p>You uploaded a debuggable APK. For security reasons you need to disable debugging before it can be published in Google Play.</p> </blockquote> <p>I've tried adding Android:debuggable="false" to my manifest but I'm still getting the same message.</p> <p>I'm currently using Android Studio to generate my signed APK.</p> <p>Edit Here's my AndroidManifest.xml</p> <pre><code> &lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.aventuracctv.aventurafibercalculator" android:versionCode="3" android:versionName="1.2" android:debuggable="false"&gt; &lt;uses-sdk android:minSdkVersion="7" android:targetSdkVersion="18" /&gt; &lt;application android:allowBackup="true" android:icon="@drawable/app_icon" android:label="Fiber Calculator" android:theme="@style/AppTheme"&gt; &lt;activity android:name="com.aventuracctv.aventurafibercalculator.MainActivity" android:label="@string/app_name" &gt; &lt;intent-filter&gt; &lt;action android:name="android.intent.action.MAIN" /&gt; &lt;category android:name="android.intent.category.LAUNCHER" /&gt; &lt;/intent-filter&gt; &lt;/activity&gt; &lt;/application&gt; &lt;/manifest&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload