我已通过USB连接手机以在我的手机上运行应用程序。但在运行时,Android Monitor会显示错误
无法在生产设备上运行!
清单文件:
ACCOUNT_SIGNUP_FORM_CLASS
构建Gradle:
<?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>
答案 0 :(得分:0)
您可能实际上并未通过签名向导签署APK的发布版本。您可以使用以下命令从命令行构建发行版APK:
./gradlew assembleRelease
或者您可以从Build Variants视图中选择发布变体,并从GUI构建它。
或者在Build Gradle文件中定义debug buildtype
。