[and] Gradle needs <application> tag in manifest.

This commit is contained in:
d-kunin 2013-08-16 13:40:35 +03:00
parent 203589f8d8
commit 33de126047
3 changed files with 22 additions and 7 deletions

View file

@ -2,4 +2,7 @@
package="com.mapwithme.maps.api"
android:versionCode="1"
android:versionName="1.0" >
<application />
</manifest>

View file

@ -4,6 +4,10 @@
android:versionCode="2"
android:versionName="1.1" >
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="15"/>
<uses-sdk
android:minSdkVersion="4"
android:targetSdkVersion="15" />
<application />
</manifest>

View file

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2010 The Android Open Source Project
<!--
Copyright (C) 2010 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@ -16,9 +17,16 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.google.android.vending.licensing"
android:versionCode="2"
android:versionName="1.5">
android:versionName="1.5" >
<!-- Devices >= 3 have version of Android Market that supports licensing. -->
<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="15" />
<uses-sdk
android:minSdkVersion="3"
android:targetSdkVersion="15" />
<!-- Required permission to check licensing. -->
<uses-permission android:name="com.android.vending.CHECK_LICENSE" />
</manifest>
<uses-permission
android:name="com.android.vending.CHECK_LICENSE" />
<application />
</manifest>