为什么我的程序不能在电话上运行,而可以在Bluestacks上运行

时间:2019-06-04 10:21:02

标签: android crash settings

我创建了一个程序,它运行正常。我在bluestack中测试,不存在任何问题。当我尝试在手机上安装程序时,则未安装。我想这是SDK带来的问题,因此请尝试在其他具有API 24和26的手机上安装程序,但已安装APK,但是在运行程序时停止了。

我的程序gradle是:     -compileSdkVersion 25,     -buildToolsVersion“ 25.0.3”,     -minSdkVersion 14,     -targetSdkVersion 25

my bluestacks property is: 
-version: 4, 
-API: 25, 
-model: OnePlus A5000, 
-android: 7.1.1, 
-ram: 1500 M, 
-core: 2)

我猜问题不是来自程序,它来自Android Studio设置,因此,我创建了一个简单项目(默认项目:hello world),未进行任何更改,并且未在9中设置API。在电话里。 (在我看来,当停止运行后立即单击程序会运行该程序)

这是活动:

导入android.support.v7.app.AppCompatActivity;    导入android.os.Bundle;

公共类MainActivity扩展了AppCompatActivity {

 @Override
 protected void onCreate(Bundle savedInstanceState) {
   super.onCreate(savedInstanceState);
   setContentView(R.layout.activity_main);
 }

}

这是XML布局:

 <LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.example.behnam_pc.test1_hello_world.MainActivity">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!" />

</LinearLayout>

这是gradle:

  apply plugin: 'com.android.application'

         android {
             compileSdkVersion 25
             buildToolsVersion "25.0.3"
             defaultConfig {
                 applicationId "com.example.behnam_pc.test1_hello_world"
                 minSdkVersion 9
                 targetSdkVersion 25
                 versionCode 1
                 versionName "1.0"
                 testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
             }
             buildTypes {
                 release {
                     minifyEnabled false
                     proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
                 }
             }
         }

         dependencies {
             compile fileTree(dir: 'libs', include: ['*.jar'])
             androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
                 exclude group: 'com.android.support', module: 'support-annotations'
             })
             compile 'com.android.support:appcompat-v7:25.3.1'
             compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha7'
             testCompile 'junit:junit:4.12'
        }

任何人,请告诉我问题来自哪里?

0 个答案:

没有答案