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/08/01 14:40:19 UTC

svn commit: r1615083 - in /httpcomponents/httpclient-android/trunk: buildSrc/src/main/groovy/Utils.groovy src/main/resources/AndroidManifest.xml

Author: olegk
Date: Fri Aug  1 12:40:19 2014
New Revision: 1615083

URL: http://svn.apache.org/r1615083
Log:
Copy AndroidManifest.xml

Added:
    httpcomponents/httpclient-android/trunk/src/main/resources/AndroidManifest.xml   (with props)
Modified:
    httpcomponents/httpclient-android/trunk/buildSrc/src/main/groovy/Utils.groovy

Modified: httpcomponents/httpclient-android/trunk/buildSrc/src/main/groovy/Utils.groovy
URL: http://svn.apache.org/viewvc/httpcomponents/httpclient-android/trunk/buildSrc/src/main/groovy/Utils.groovy?rev=1615083&r1=1615082&r2=1615083&view=diff
==============================================================================
--- httpcomponents/httpclient-android/trunk/buildSrc/src/main/groovy/Utils.groovy (original)
+++ httpcomponents/httpclient-android/trunk/buildSrc/src/main/groovy/Utils.groovy Fri Aug  1 12:40:19 2014
@@ -89,6 +89,13 @@ class Utils {
                         "httpclient/tags/${clientVersion}/httpclient/src/main/java/org/apache/http/impl/${module}", -1)
                 commitEditor.closeDir()
             }
+
+            commitEditor.addFile(
+                    "httpclient-android/branches/${branchName}/src/main/AndroidManifest.xml",
+                    "httpclient-android/trunk/src/main/resources/AndroidManifest.xml", -1)
+            commitEditor.closeFile(
+                    "httpclient-android/branches/${branchName}/src/main/AndroidManifest.xml", null)
+
             commitEditor.closeDir()
             commitEditor.closeDir()
             commitEditor.closeDir()

Added: httpcomponents/httpclient-android/trunk/src/main/resources/AndroidManifest.xml
URL: http://svn.apache.org/viewvc/httpcomponents/httpclient-android/trunk/src/main/resources/AndroidManifest.xml?rev=1615083&view=auto
==============================================================================
--- httpcomponents/httpclient-android/trunk/src/main/resources/AndroidManifest.xml (added)
+++ httpcomponents/httpclient-android/trunk/src/main/resources/AndroidManifest.xml Fri Aug  1 12:40:19 2014
@@ -0,0 +1,33 @@
+<!--
+   ====================================================================
+   Licensed to the Apache Software Foundation (ASF) under one
+   or more contributor license agreements.  See the NOTICE file
+   distributed with this work for additional information
+   regarding copyright ownership.  The ASF licenses this file
+   to you under the Apache License, Version 2.0 (the
+   "License"); you may not use this file except in compliance
+   with the License.  You may obtain a copy of the License at
+
+     http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing,
+   software distributed under the License is distributed on an
+   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+   KIND, either express or implied.  See the License for the
+   specific language governing permissions and limitations
+   under the License.
+   ====================================================================
+
+   This software consists of voluntary contributions made by many
+   individuals on behalf of the Apache Software Foundation.  For more
+   information on the Apache Software Foundation, please see
+   <http://www.apache.org />.
+ -->
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+    package="org.apache.http"
+    android:versionCode="1"
+    android:versionName="1.0">
+
+    <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="8" />
+
+</manifest>

Propchange: httpcomponents/httpclient-android/trunk/src/main/resources/AndroidManifest.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpcomponents/httpclient-android/trunk/src/main/resources/AndroidManifest.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: httpcomponents/httpclient-android/trunk/src/main/resources/AndroidManifest.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml