gpt4 book ai didi

android - 无法在生产设备上运行!在USB连接的设备上运行应用程序时出错

转载 作者:行者123 更新时间:2023-12-03 18:06:49 25 4
gpt4 key购买 nike

我已通过USB连接手机,以在手机上运行该应用程序。但是在运行时,Android Monitor显示错误

Cannot run on production devices!



list 文件:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.roam12.demo">

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

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

构建Gradle:
apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "24.0.1"

defaultConfig {
applicationId "com.example.roam12.demo"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

最佳答案

您可能实际上并没有通过签名向导来签署APK的发布版本。您可以使用以下命令从命令行构建发行版APK:

./gradlew assembleRelease

或者,您可以从Build Variants View 中选择发行版本,然后从GUI进行构建。

或在Build Gradle文件中定义 debug buildtype

关于android - 无法在生产设备上运行!在USB连接的设备上运行应用程序时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38990096/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com