Note that there are some explanatory texts on larger screens.

plurals
  1. POAndroid: My app supports 0 devices
    primarykey
    data
    text
    <p>You know, I'm really disappointed right now. I spent the last 5 months making this app, from design to coding a..z and now I'm this close: my app supports 0 devices.</p> <p>Then I spent almost 24 hours already trying to figure out what the heck is going on and still couldn't get it working. I need help.</p> <p>p.s: The "<em>Localizations: default+49 languages</em>" field: in my app I only have English with the default <em>values/strings.xml</em> but I don't mind users in other languages on their phone will see my app in English.</p> <p><strong><em>UPDATE: Found and added my clarified answer, however the accepted answer got me going the right way. So thank you.</em></strong></p> <p>Here is what I got: </p> <p><img src="https://i.stack.imgur.com/IdRA3.png" alt="enter image description here"></p> <pre><code> &lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;manifest xmlns:android="http://schemas.android.com/apk/res/android" package="xxxxxxxxxxx" android:versionCode="2" android:versionName="1.0" &gt; &lt;uses-sdk android:minSdkVersion="8" android:targetSdkVersion="17" /&gt; &lt;uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /&gt; &lt;uses-permission android:name="android.permission.CAMERA" /&gt; &lt;uses-permission android:name="android.permission.INTERNET" /&gt; &lt;uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /&gt; &lt;uses-feature android:name="android.hardware.CAMERA" /&gt; &lt;uses-feature android:name="android.hardware.camera.AUTOFOCUS" /&gt; &lt;application android:hardwareAccelerated="true" android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/Holo.Theme" android:name="org.holoeverywhere.app.Application"&gt; &lt;!-- Blank Activity --&gt; &lt;activity android:name=".BlankActivity" android:label="@string/app_name" android:screenOrientation="portrait" android:theme="@android:style/Theme.NoTitleBar"&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;!-- Access Activity --&gt; &lt;activity android:name=".AccessActivity" android:label="@string/title_activity_access" android:screenOrientation="portrait"&gt; &lt;/activity&gt; &lt;!-- Register Activity --&gt; &lt;activity android:name=".RegisterActivity" android:screenOrientation="portrait" android:label="@string/lbActRegister"&gt; &lt;/activity&gt; &lt;!-- Login Activity --&gt; &lt;activity android:name=".LoginActivity" android:screenOrientation="portrait" android:label="@string/lbActLogin"&gt; &lt;/activity&gt; &lt;!-- Recovery Activity --&gt; &lt;activity android:name=".RecoveryActivity" android:screenOrientation="portrait" android:label="@string/lbActRecovery"&gt; &lt;/activity&gt; &lt;!-- Dashboard Activity --&gt; &lt;activity android:name=".DashboardActivity" android:label="@string/app_name" android:launchMode="singleTop" android:screenOrientation="portrait" android:configChanges="orientation|keyboardHidden|screenSize"&gt; &lt;/activity&gt; &lt;!-- Edit Profile Activity --&gt; &lt;activity android:name=".EditProfileActivity" android:screenOrientation="portrait" android:label="@string/lbActEditProfile"&gt; &lt;/activity&gt; &lt;!-- Feedback Activity --&gt; &lt;activity android:name=".FeedbackActivity" android:screenOrientation="portrait" android:label="@string/lbActFeedback"&gt; &lt;/activity&gt; &lt;!-- TOSU Activity --&gt; &lt;activity android:name=".TOSUActivity" android:screenOrientation="portrait" android:label="@string/lbActTerms"&gt; &lt;/activity&gt; &lt;!-- About Activity --&gt; &lt;activity android:name=".AboutActivity" android:screenOrientation="portrait" android:label="@string/lbActAbout"&gt; &lt;/activity&gt; &lt;!-- Donation Activity --&gt; &lt;activity android:name=".DonationActivity" android:screenOrientation="portrait" android:label="@string/lbActDonation"&gt; &lt;/activity&gt; &lt;!-- Image Upload Activity --&gt; &lt;activity android:name=".photo.ImageUploadActivity" android:screenOrientation="portrait" android:label="@string/lbActUpload" android:configChanges="orientation|keyboardHidden|screenSize"&gt; &lt;/activity&gt; &lt;!-- Me Detail Activity --&gt; &lt;activity android:name=".photo.MeDetailActivity" android:label="@string/lbActCollection" android:parentActivityName=".DashboardActivity" android:configChanges="orientation|keyboardHidden|screenSize"&gt; &lt;meta-data android:name="android.support.PARENT_ACTIVITY" android:value=".DashboardActivity" /&gt; &lt;/activity&gt; &lt;!-- Explore Detail Activity --&gt; &lt;activity android:name=".photo.ExploreDetailActivity" android:label="@string/lbActExplore" android:parentActivityName=".DashboardActivity" android:uiOptions="splitActionBarWhenNarrow" android:configChanges="orientation|keyboardHidden|screenSize"&gt; &lt;meta-data android:name="android.support.PARENT_ACTIVITY" android:value=".DashboardActivity" /&gt; &lt;/activity&gt; &lt;!-- Liked Detail Activity --&gt; &lt;activity android:name=".photo.LikedDetailActivity" android:label="@string/lbActLikes" android:parentActivityName=".DashboardActivity" android:configChanges="orientation|keyboardHidden|screenSize"&gt; &lt;meta-data android:name="android.support.PARENT_ACTIVITY" android:value=".DashboardActivity" /&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