Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix(android): set minimum API level to 19 a.k.a. 4.4 Kit Kat (#1016)
fixes #1015
  • Loading branch information
elharo committed Apr 1, 2020
1 parent fd33073 commit b9a8023
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions google-http-client-android/AndroidManifest.xml
Expand Up @@ -5,7 +5,7 @@
android:versionName="1.0" >

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

</manifest>
</manifest>

0 comments on commit b9a8023

Please sign in to comment.