Android应用程序在Marshmallow及以上API版本上运行,但不会在它下面运行

时间:2017-09-22 19:47:32

标签: android xml

我正在制作一款Android应用。该应用程序在Android M及以上版本中工作正常,但我的API在M下面的android中不起作用

这是我的android清单文件。这有什么问题?

 <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
              xmlns:tool="http://schemas.android.com/apk/res-auto"
              package="com.milestonestudioz.adaalo"
              android:versionCode="1"
              android:versionName="1.0">

        <uses-sdk
                android:minSdkVersion="19"
                android:targetSdkVersion="25"/>

        <uses-permission android:name="android.permission.INTERNET"/>
    </manifest>

1 个答案:

答案 0 :(得分:1)

您需要在Android文件夹的Gradle文件中提供最小的SDK版本。当你给那里最小的Sdk,我认为它应该工作。如果有任何澄清,请问......