shekar
shekar

Reputation: 1271

Getting this error when added RxBinding

I am getting this error when added RxBinding

"Error:Execution failed for task ':app:processDebugManifest'.
Manifest merger failed : uses-sdk:minSdkVersion 14 cannot be smaller than version 15 declared in library /app/build/intermediates/exploded-aar/com.jakewharton.rxbinding/rxbinding/0.1.0/AndroidManifest.xml Suggestion: use tools:overrideLibrary="com.jakewharton.rxbinding" to force usage"

Should follow suggestion or upgrade my sdk:minSdkVersion to 15 or is there any better solution?

Upvotes: 0

Views: 261

Answers (1)

MyDogTom
MyDogTom

Reputation: 4606

I would say that upgrade sdk:minSdkVersion to 15 is a preferable solution.

  1. It is safer (you don't know are there any features of 15 used in RxBinding)
  2. It is simpler (you don't need to analyze RxBinding or remove RxBinding from your code)
  3. According to Android Dashboard there are less than 0.1% users with Skd 14

Upvotes: 1

Related Questions