You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2014/12/30 14:18:44 UTC

svn commit: r1648525 - in /httpcomponents/httpclient-android/branches/4.3.5-android: build.gradle src/main/AndroidManifest.xml

Author: olegk
Date: Tue Dec 30 13:18:44 2014
New Revision: 1648525

URL: http://svn.apache.org/r1648525
Log:
Upgraded build script to the latest release of gradle support (1.0.0); changed target SDK version to 17

Modified:
    httpcomponents/httpclient-android/branches/4.3.5-android/build.gradle
    httpcomponents/httpclient-android/branches/4.3.5-android/src/main/AndroidManifest.xml

Modified: httpcomponents/httpclient-android/branches/4.3.5-android/build.gradle
URL: http://svn.apache.org/viewvc/httpcomponents/httpclient-android/branches/4.3.5-android/build.gradle?rev=1648525&r1=1648524&r2=1648525&view=diff
==============================================================================
--- httpcomponents/httpclient-android/branches/4.3.5-android/build.gradle (original)
+++ httpcomponents/httpclient-android/branches/4.3.5-android/build.gradle Tue Dec 30 13:18:44 2014
@@ -30,7 +30,7 @@ buildscript {
         mavenCentral()
     }
     dependencies {
-        classpath 'com.android.tools.build:gradle:0.12.2'
+        classpath 'com.android.tools.build:gradle:1.0.0'
     }
 }
 
@@ -56,7 +56,7 @@ android {
 
     defaultConfig {
         minSdkVersion 8
-        targetSdkVersion 8
+        targetSdkVersion 17
     }
 
     compileOptions {

Modified: httpcomponents/httpclient-android/branches/4.3.5-android/src/main/AndroidManifest.xml
URL: http://svn.apache.org/viewvc/httpcomponents/httpclient-android/branches/4.3.5-android/src/main/AndroidManifest.xml?rev=1648525&r1=1648524&r2=1648525&view=diff
==============================================================================
--- httpcomponents/httpclient-android/branches/4.3.5-android/src/main/AndroidManifest.xml (original)
+++ httpcomponents/httpclient-android/branches/4.3.5-android/src/main/AndroidManifest.xml Tue Dec 30 13:18:44 2014
@@ -27,7 +27,4 @@
     package="org.apache.http"
     android:versionCode="1"
     android:versionName="1.0">
-
-    <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="8" />
-
 </manifest>