Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/javascript/397.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
应用程序,内置于android studio,未安装在低于7.0版本的android中_Android_Android Studio_Gradle - Fatal编程技术网

应用程序,内置于android studio,未安装在低于7.0版本的android中

应用程序,内置于android studio,未安装在低于7.0版本的android中,android,android-studio,gradle,Android,Android Studio,Gradle,我无法在安卓7.0以上版本的设备上安装安卓studio内置的任何应用程序 我的身材是: apply plugin: 'com.android.application' android { compileSdkVersion 25 buildToolsVersion "25.0.2" defaultConfig { applicationId "com.tests.ahmadkhan.myapplication" minSdkVer

我无法在安卓7.0以上版本的设备上安装安卓studio内置的任何应用程序

我的身材是:

    apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.2"
    defaultConfig {
        applicationId "com.tests.ahmadkhan.myapplication"
        minSdkVersion 19
        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.2'
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:support-annotations:25.3.1'
}
该项目是一个简单的项目。。。
这甚至在hello world项目中也不起作用…

您已将minSdkVersion设置为19,这意味着您的应用程序将在api级别19及以上工作,即Android OS 4.4至7.1(假设7.1是迄今为止的最新版本)

以及您尝试安装它的内容/方式?您无法安装用于即时运行的apk。我尝试在android 6上安装它,但它没有在我的android 6设备上安装againi build and install。我尝试在android 6上安装它,但它没有再次安装