Update: After I removed and reinstalled bundle problem only remains on emulator
I've just installed the android development bundle on my windows 8 laptop. I'm trying to install the first app "hello world" (http://developer.android.com/training/basics/firstapp/creating-project.html) to my Nexus 7 (2012) version 4.4.2 but its not working.
Using the logcat viewer (whilst the build is taking place) I can see it is reporting:
"Couldn't load memtrack module (No such file or directory)" followed by " failed to load memtrack module: -2 at run time."
manifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.myfirstapp"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="19" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.myfirstapp.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
Console output:
[2014-04-04 15:18:35 - myFirstApplication] Dx
trouble writing output: already prepared
[2014-04-04 15:18:43 - myFirstApplication] ------------------------------
[2014-04-04 15:18:43 - myFirstApplication] Android Launch!
[2014-04-04 15:18:43 - myFirstApplication] adb is running normally.
[2014-04-04 15:18:43 - myFirstApplication] No Launcher activity found!
[2014-04-04 15:18:43 - myFirstApplication] The launch will only sync the application package on the device!
[2014-04-04 15:18:43 - myFirstApplication] Performing sync
[2014-04-04 15:18:44 - myFirstApplication] Automatic Target Mode: using device 'mydeviceinfo'
[2014-04-04 15:18:44 - myFirstApplication] Uploading myFirstApplication.apk onto device 'mydeviceinfo'
[2014-04-04 15:18:44 - myFirstApplication] Installing myFirstApplication.apk...
[2014-04-04 15:18:47 - myFirstApplication] Success!
[2014-04-04 15:18:47 - myFirstApplication] \myFirstApplication\bin\myFirstApplication.apk installed on device
[2014-04-04 15:18:47 - myFirstApplication] Done!
"
I've started looking at a similar post Couldn't load memtrack module Logcat Error but i can't see what i would need to do for this situation