Using Hardware Device but cannot find installed app

user3413870

I followed the procedure on Using Hardware Device from google android's page, after having problems with emulator. After having followed everything provided on google's hardware page, i created a new project and ran it, it gave me the following,

[2014-03-17 18:35:18 - FirstAppProject] ------------------------------
[2014-03-17 18:35:18 - FirstAppProject] Android Launch!
[2014-03-17 18:35:18 - FirstAppProject] adb is running normally.
[2014-03-17 18:35:18 - FirstAppProject] No Launcher activity found!
[2014-03-17 18:35:18 - FirstAppProject] The launch will only sync the application package on the device!
[2014-03-17 18:35:18 - FirstAppProject] Performing sync
[2014-03-17 18:35:18 - FirstAppProject] Automatic Target Mode: using device '0123456789ABCDEF'
[2014-03-17 18:35:18 - FirstAppProject] Uploading FirstAppProject.apk onto device '0123456789ABCDEF'
[2014-03-17 18:35:19 - FirstAppProject] Installing FirstAppProject.apk...
[2014-03-17 18:35:25 - FirstAppProject] Success!
[2014-03-17 18:35:25 - FirstAppProject] \FirstAppProject\bin\FirstAppProject.apk installed on device
[2014-03-17 18:35:25 - FirstAppProject] Done!

Which seem to me that the app is installed on my device, but i cant seem to find the app on my device so that i can test it.

What to do ?

donfuxx

If that is your manifest:

<manifest xmlns:android="schemas.android.com/apk/res/android";    
  package="com.faizanchaki.firstappproject" android:versionCode="1" 
  android:versionName="1.0" > 
  <uses-sdk android:minSdkVersion="8"      
            android:targetSdkVersion="17" /> 
  <application android:allowBackup="true" 
      android:icon="@drawable/ic_launcher" android:label="@string/app_name" 
      android:theme="@style/AppTheme" > 
      <!-- no activities declared here -->
  </application> 
</manifest>

Then you are missing the declaration of a main activity like:

    <activity android:name=".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>

you should declare the main activity in your Manifest so that your app icon will appear in the android launcher and you will be able to actually start your app. Just put your Activity name and add it to the main manifest where I put the comment.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Cannot Install This Hardware - Android Hardware Device Setup

From Java

Cannot install signed apk to device manually, got error "App not installed"

From Dev

How do I find a specific installed app on the device?

From Dev

Find device by Hardware ID in Device Manager?

From Dev

Why two different app using aviary sdk not installed in same device?

From Dev

identify the hardware device using java

From Dev

Nvidia driver cannot be installed with jockey for old hardware

From Dev

Find driver (which is not automatically installed) for a specific hardware

From Java

"You cannot install this app because another user has already installed an incompatible version on this device"

From Dev

Using OpenGL, are the results dependent on hardware or drivers installed?

From Dev

How to find out how many applications is installed in my ios device from ios app

From Dev

Xcode cannot find installed library

From Dev

Module installed but Python cannot find it

From Dev

Xcode cannot find installed library

From Dev

ipad: app cannot be installed at this time

From Dev

Detect if some other is app installed on iOS device

From Dev

Check if a certain app is installed on device with React Native

From Dev

Start a service automatically when app installed to device

From Dev

Debugging on device with parallel installed app from store

From Dev

Start a service automatically when app installed to device

From Dev

How to find where an app was installed?

From Dev

Android Studio cannot find device

From Dev

ADB Cannot Find Android Device

From Dev

Cannot view app logs on device

From Dev

Android send notification message to device without client app installed on the device

From Dev

Android send notification message to device without client app installed on the device

From Dev

Getting Error Cannot find module 'q' on Build of multi device hybrid app in Visual Studio 2013 Update 3

From Dev

BOOT_COMPLETED not called if device restarted using hardware buttons

From Dev

Using multiple layer of kernel modules for interfacing a hardware device?

Related Related

  1. 1

    Cannot Install This Hardware - Android Hardware Device Setup

  2. 2

    Cannot install signed apk to device manually, got error "App not installed"

  3. 3

    How do I find a specific installed app on the device?

  4. 4

    Find device by Hardware ID in Device Manager?

  5. 5

    Why two different app using aviary sdk not installed in same device?

  6. 6

    identify the hardware device using java

  7. 7

    Nvidia driver cannot be installed with jockey for old hardware

  8. 8

    Find driver (which is not automatically installed) for a specific hardware

  9. 9

    "You cannot install this app because another user has already installed an incompatible version on this device"

  10. 10

    Using OpenGL, are the results dependent on hardware or drivers installed?

  11. 11

    How to find out how many applications is installed in my ios device from ios app

  12. 12

    Xcode cannot find installed library

  13. 13

    Module installed but Python cannot find it

  14. 14

    Xcode cannot find installed library

  15. 15

    ipad: app cannot be installed at this time

  16. 16

    Detect if some other is app installed on iOS device

  17. 17

    Check if a certain app is installed on device with React Native

  18. 18

    Start a service automatically when app installed to device

  19. 19

    Debugging on device with parallel installed app from store

  20. 20

    Start a service automatically when app installed to device

  21. 21

    How to find where an app was installed?

  22. 22

    Android Studio cannot find device

  23. 23

    ADB Cannot Find Android Device

  24. 24

    Cannot view app logs on device

  25. 25

    Android send notification message to device without client app installed on the device

  26. 26

    Android send notification message to device without client app installed on the device

  27. 27

    Getting Error Cannot find module 'q' on Build of multi device hybrid app in Visual Studio 2013 Update 3

  28. 28

    BOOT_COMPLETED not called if device restarted using hardware buttons

  29. 29

    Using multiple layer of kernel modules for interfacing a hardware device?

HotTag

Archive