I can't see apk on android phone -
the error show me, can't use apk , can't display apk on phone screen.
[2015-04-01 16:53:46 - bus] ------------------------------ [2015-04-01 16:53:46 - bus] android launch! [2015-04-01 16:53:46 - bus] adb running normally. [2015-04-01 16:53:46 - bus] no launcher activity found! [2015-04-01 16:53:46 - bus] launch sync application package on device! [2015-04-01 16:53:46 - bus] performing sync [2015-04-01 16:53:49 - bus] application deployed. no need reinstall. [2015-04-01 16:53:49 - bus] \bus\bin\bus.apk installed on device [2015-04-01 16:53:49 - bus] done!
you need add
<intent-filter> <action android:name="android.intent.action.main" /> <category android:name="android.intent.category.launcher" /> </intent-filter>
for example:
<activity android:name="main.startactivity" android:label="@string/app_name" > <intent-filter> <action android:name="android.intent.action.main" /> <category android:name="android.intent.category.launcher" /> </intent-filter> </activity>
Comments
Post a Comment