Hi
I create simple application:
public class Hello extends Activity {
protected void onCreate(Bundle bundle) {
super.onCreate(bundle);
TextView tv = new TextView(this);
tv.setText("Hello, Android, from IntelliJ IDEA!");
setContentView(tv);
}
}
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="a.b.cccc">
<application android:icon="@drawable/icon">
<activity android:name="Hello" android:label="xxxxxxxxxx">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category
android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>
But can't start it with Idea Plugin "Android Support" v 0.3... :(
Logs:
Device connected.
Device is online.
Uploading file
local path: D:\projects\work\android.test.5\out\production
\android.test.5\android.test.5.apk
remote path: /data/local/tmp/a.b.cccc
Installing application.
Device is not ready. Waiting for 5 sec.
Device is not ready. Waiting for 5 sec.
Device is not ready. Waiting for 5 sec.
Device is not ready. Waiting for 5 sec.
Device is not ready. Waiting for 5 sec.
Error Type 1: Could not access the Package Manager!
usage:................
What can be wrong?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---