android - App gets stuck on splash screen when running in the emulator -


when running in emulator splash screen gets stuck , never starts next activity. removed splash activity manifest file , made next activity launcher. still, when run app splash screen. have done restarting eclipse, made new avd don't know getting splash screen. don't know why happening.

this works fine when running on device, issue occurs when running in emulator.

<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.kaizen" android:versioncode="1" android:versionname="1.0" >  <uses-sdk     android:minsdkversion="8"     android:targetsdkversion="17" />  <uses-permission android:name="android.permission.internet" /> <uses-permission android:name="android.permission.write_external_storage" /> <uses-permission android:name="android.permission.access_fine_location" /> <uses-permission android:name="android.permission.read_phone_state" /> <uses-permission android:name="android.permission.access_network_state" />  <application     android:allowbackup="true"     android:icon="@drawable/ic_launcher"     android:label="@string/app_name"     android:theme="@style/apptheme" >     <activity         android:name="com.kaizen.login"         android:configchanges="keyboardhidden"         android:label="@string/app_name"         android:theme="@android:style/theme.notitlebar" >         <intent-filter>             <action android:name="android.intent.action.main" />             <category android:name="android.intent.category.launcher" />         </intent-filter>     </activity> 

you have uninstall jre 7 , install latest jre 6 (http://www.oracle.com/technetwork/java/javase/downloads/jre6downloads-1902815.html). fixed problem.

see this installation help


Popular posts from this blog