Note that there are some explanatory texts on larger screens.

plurals
  1. POApp working on my device but when I publish it to Google Play Store for Beta Testing not working
    primarykey
    data
    text
    <p>Yesterday I published my app on the Google Play Store as Beta Testing. When I run it from Eclipse on my device it works great, but when I download it from the Google Play Store it doesn't work. </p> <p>The first screen is an Splash Fragment which shows the Facebook Login button, when I click it it asks for the permissions and then it goes back to the Splash Fragment (It should hide the Fragment).</p> <p>I tested it on another device and it hides the Splash Fragment, enters to the MainActivity and it tells me that I am not online.</p> <p>I don't underestand why it does work when I run it from my Eclipse but it doesn't work when I run the version that I download from the Google Play Store.</p> <p>Here is my Manifest:</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.tokensapp.tokens" android:versionCode="1" android:versionName="1.0" &gt; &lt;uses-sdk android:minSdkVersion="7" android:targetSdkVersion="15" /&gt; &lt;permission android:name="com.tokensapp.tokens.permission.MAPS_RECEIVE" android:protectionLevel="signature" /&gt; &lt;uses-permission android:name="com.tokensapp.tokens.permission.MAPS_RECEIVE" /&gt; &lt;uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /&gt; &lt;uses-permission android:name="android.permission.INTERNET" /&gt; &lt;uses-permission android:name="android.permission.READ_CONTACTS" /&gt; &lt;uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /&gt; &lt;uses-permission android:name="android.permission.WAKE_LOCK" /&gt; &lt;uses-permission android:name="android.permission.VIBRATE" /&gt; &lt;uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /&gt; &lt;uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" /&gt; &lt;uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /&gt; &lt;uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /&gt; &lt;uses-permission android:name="android.permission.READ_PHONE_STATE" &gt; &lt;/uses-permission&gt; &lt;uses-permission android:name="android.permission.GET_TASKS" &gt; &lt;/uses-permission&gt; &lt;uses-permission android:name="android.permission.ACCESS_WIFI_STATE" &gt; &lt;/uses-permission&gt; &lt;uses-permission android:name="android.permission.BLUETOOTH" &gt; &lt;/uses-permission&gt; &lt;uses-feature android:glEsVersion="0x00020000" android:required="true" /&gt; &lt;application android:name=".ScrumptiousApplication" android:icon="@drawable/ic_launcher" android:label="@string/tokens" &gt; &lt;uses-library android:name="com.google.android.maps" android:required="true" /&gt; &lt;service android:name="com.tokensapp.tokens.NotificationService" /&gt; &lt;activity android:name="com.apphance.android.LauncherActivity" android:theme="@android:style/Theme.Translucent.NoTitleBar" &gt; &lt;/activity&gt; &lt;activity android:name="com.apphance.android.ui.LoginActivity" android:launchMode="singleInstance" &gt; &lt;/activity&gt; &lt;activity android:name="com.apphance.android.ui.TestCycleActivity" android:launchMode="singleInstance" &gt; &lt;/activity&gt; &lt;activity android:name="com.apphance.android.ui.ProblemActivity" android:configChanges="orientation" android:launchMode="singleInstance" &gt; &lt;/activity&gt; &lt;activity android:name="com.tokensapp.tokens.ActSplash" android:label="@string/tokens" android:noHistory="true" android:screenOrientation="portrait" android:theme="@android:style/Theme.NoTitleBar" &gt; &lt;/activity&gt; &lt;activity android:name="com.tokensapp.tokens.ActLoginFb" android:label="@string/tokens" android:screenOrientation="portrait" android:theme="@android:style/Theme.NoTitleBar" /&gt; &lt;activity android:name="com.tokensapp.tokens.ActWelcome" android:label="@string/tokens" android:noHistory="true" android:screenOrientation="portrait" android:theme="@android:style/Theme.NoTitleBar" /&gt; &lt;activity android:name="com.tokensapp.tokens.ActMain" android:label="@string/tokens" android:screenOrientation="portrait" android:theme="@android:style/Theme.NoTitleBar" /&gt; &lt;activity android:name="com.tokensapp.tokens.ActMain2" android:label="@string/tokens" android:screenOrientation="portrait" android:theme="@android:style/Theme.NoTitleBar" &gt; &lt;/activity&gt; &lt;activity android:name="com.tokensapp.tokens.ActProfile" android:label="@string/tokens" android:screenOrientation="portrait" android:theme="@android:style/Theme.NoTitleBar" &gt; &lt;/activity&gt; &lt;activity android:name="com.tokensapp.tokens.ActCompose" android:label="@string/tokens" android:screenOrientation="portrait" android:theme="@android:style/Theme.NoTitleBar" android:windowSoftInputMode="stateAlwaysHidden" /&gt; &lt;activity android:name="com.tokensapp.tokens.ActViewToken" android:label="@string/tokens" android:screenOrientation="portrait" android:theme="@android:style/Theme.NoTitleBar" /&gt; &lt;activity android:name="com.tokensapp.tokens.ActSettings" android:label="@string/tokens" android:screenOrientation="portrait" android:theme="@android:style/Theme.NoTitleBar" /&gt; &lt;activity android:name="com.tokensapp.tokens.ActFriendChooser" android:label="@string/tokens" android:screenOrientation="portrait" android:theme="@android:style/Theme.NoTitleBar" /&gt; &lt;activity android:name="com.tokensapp.tokens.BasicMapActivity" android:label="@string/title_activity_main" /&gt; &lt;receiver android:name="com.tokensapp.tokens.BootReceiver" &gt; &lt;intent-filter&gt; &lt;action android:name="android.intent.action.BOOT_COMPLETED" /&gt; &lt;action android:name="android.intent.action.QUICKBOOT_POWERON" /&gt; &lt;/intent-filter&gt; &lt;/receiver&gt; &lt;meta-data android:name="com.google.android.maps.v2.API_KEY" android:value="@string/maps_key" /&gt; &lt;meta-data android:name="com.facebook.sdk.ApplicationId" android:value="@string/app_id" /&gt; &lt;activity android:name="com.tokensapp.tokens.ActLoginFb2" android:label="@string/tokens" android:screenOrientation="portrait" android:theme="@android:style/Theme.NoTitleBar" &gt; &lt;/activity&gt; &lt;activity android:name="com.facebook.LoginActivity" android:label="@string/tokens" android:screenOrientation="portrait" android:theme="@android:style/Theme.NoTitleBar" &gt; &lt;/activity&gt; &lt;activity android:name="com.tokensapp.tokens.MainActivity" android:label="@string/tokens" android:screenOrientation="portrait" android:theme="@android:style/Theme.NoTitleBar" &gt; &lt;intent-filter&gt; &lt;action android:name="com.apphance.android.LAUNCH" &gt; &lt;/action&gt; &lt;category android:name="android.intent.category.DEFAULT" &gt; &lt;/category&gt; &lt;/intent-filter&gt; &lt;/activity&gt; &lt;activity android:name="PickerActivity" android:label="@string/app_name" /&gt; &lt;activity android:name="com.tokensapp.tokens.ActMyTokens" android:label="@string/tokens" android:screenOrientation="portrait" android:theme="@android:style/Theme.NoTitleBar" &gt; &lt;/activity&gt; &lt;activity-alias android:name=".ApphanceLauncherActivity" android:targetActivity="com.apphance.android.LauncherActivity" &gt; &lt;intent-filter&gt; &lt;action android:name="android.intent.action.MAIN" &gt; &lt;/action&gt; &lt;category android:name="android.intent.category.LAUNCHER" &gt; &lt;/category&gt; &lt;/intent-filter&gt; &lt;/activity-alias&gt; &lt;/application&gt; &lt;instrumentation android:name="com.apphance.android.ApphanceInstrumentation" android:targetPackage="com.tokensapp.tokens" &gt; &lt;/instrumentation&gt; </code></pre> <p></p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    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