user8126471
user8126471

Reputation: 19

Android app runs on Marshmallow and above API versions, but doesn't run below it

I am making one Android app. The app is working fine in android M and above, but my API's are not working in android below M

Here is my android manifest file. What is wrong with that?

 <?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>

Upvotes: 1

Views: 60

Answers (1)

Chandan Suri
Chandan Suri

Reputation: 598

You need to give the min SDK version in the Gradle file of your Android folder. When you give there the min Sdk, I think it should work. In case of any more clarification do ask...

Upvotes: 1

Related Questions