Added versionName and versionCode to the Android client manifest.
authordswitkin <dswitkin@59b500cc-1b3d-0410-9834-0bbf25fbcc57>
Sat, 18 Oct 2008 19:27:43 +0000 (19:27 +0000)
committerdswitkin <dswitkin@59b500cc-1b3d-0410-9834-0bbf25fbcc57>
Sat, 18 Oct 2008 19:27:43 +0000 (19:27 +0000)
git-svn-id: http://zxing.googlecode.com/svn/trunk@626 59b500cc-1b3d-0410-9834-0bbf25fbcc57

android/AndroidManifest.xml

index 28b0bba..18abffe 100755 (executable)
  See the License for the specific language governing permissions and
  limitations under the License.
  -->
+
+<!-- versionCode is a monotonically increasing integer. I'm starting it at 6 because v2.3 is the 6th
+version to be published. The next versionCode will be 7, regardless of whether the user-visible
+versionName is 2.31, 2.4, or 3.0. -->
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
-          package="com.google.zxing.client.android">
+          package="com.google.zxing.client.android"
+          android:versionName="2.3"
+          android:versionCode="6">
   <application android:icon="@drawable/ic_launcher_barcodes"
                android:label="@string/app_name">
     <activity android:name=".BarcodesCaptureActivity"