为什么我的Android Studio项目中仍然有“无可调试应用程序”?

时间:2016-03-17 16:22:10

标签: android android-studio

我将android:debuggable="true"放在AndroidManifest.xml中:

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:debuggable="true"
    android:theme="@style/AppTheme">
    <activity android:name=".MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

我还将debuggable true放在build.gradle脚本中:

buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
    debug{
        debuggable true;
    }
}

0 个答案:

没有答案