2015-08-27 114 views
1

我正在構建一個Android應用程序(使用Android Studio 1.1.0),我試圖測試我的應用程序的設備是三星筆記10.1 N8000(Api 16)。當我點擊錯誤按鈕時,一切都成功編譯,但在設備下的Android選項卡下,它表示沒有可調試的應用程序。我嘗試了各種解決方案,但都沒有工作。沒有可調試的應用程序

事件日誌中這樣說:

7:09:54 AM Session 'app': running 
7:11:25 AM Gradle build finished in 28 sec 

這裏是我的清單文件:

<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
    package="com.fatima.selfify" 
    android:launchMode="standard"> 

    <application> 

    <uses-sdk 
     android:minSdkVersion="8" 
     android:targetSdkVersion="17" /> 
    <uses-permission android:name="android.permission.INTERNET" /> 
    <uses-permission android:name="android.permission.SET_DEBUG_APP"></uses-permission> 
    <application 
     android:allowBackup="true" 
     android:icon="@drawable/ic_launcher" 
     android:label="@string/app_name" 
     android:theme="@style/AppTheme" 
     > 
     <activity 
      android:name=".MainActivity" 
      android:label="@string/app_name" > 

     </activity> 
    </application> 

    </application> 

</manifest> 

這是我的構建文件:

apply plugin: 'com.android.application' 

android { 
    compileSdkVersion 21 
    buildToolsVersion "21.1.2" 

    defaultConfig { 
     applicationId "com.fatima.selfify" 
     minSdkVersion 19 
     targetSdkVersion 21 
     versionCode 1 
     versionName "1.0" 
    } 

    buildTypes { 
     release { 
      minifyEnabled true 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 

     } 
     debug{ 

      debuggable true 
     } 
    } 
} 

dependencies { 
    compile fileTree(dir: 'libs', include: ['*.jar']) 
    compile 'com.android.support:appcompat-v7:22.0.0' 
} 

No apk changes detected. Skipping file upload, force stopping package instead. 
DEVICE SHELL COMMAND: am force-stop com.fatima.selfify 
Waiting for process: com.fatima.selfify 
+0

您是否正在運行AS或Eclipse的任何其他實例?您的設備是否顯示在Android監視器中? – Sufian

+0

你嘗試過其他設備(或兩個)嗎?有時設備被OEM(三星)修改並且有這個問題。 –

回答

0

你的清單文件嵌套在兩個標籤...可能是因爲它沒有編譯..

+0

在清單中看到您的應用程序標籤中有兩個應用程序標籤互相嵌套 –

+0

仍然無法工作 – puffles