Ignoring warnings in AndroidManifests

This commit is contained in:
Aleksander Nowakowski
2017-11-02 11:12:09 +01:00
parent 7b4e952f23
commit c85dddc1d8
3 changed files with 13 additions and 5 deletions

View File

@@ -20,7 +20,9 @@
~ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
~ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="no.nordicsemi.android.nrftoolbox"
android:installLocation="auto">
@@ -41,7 +43,9 @@
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
android:theme="@style/AppTheme"
android:name=".ToolboxApplication"
tools:ignore="GoogleAppIndexingWarning" >
<meta-data
android:name="com.google.android.gms.version"

View File

@@ -20,9 +20,11 @@
~ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="no.nordicsemi.android.nrftoolbox.common">
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
</manifest>

View File

@@ -22,7 +22,8 @@
-->
<manifest package="no.nordicsemi.android.nrftoolbox"
xmlns:android="http://schemas.android.com/apk/res/android">
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<uses-feature android:name="android.hardware.type.watch"/>
@@ -36,7 +37,8 @@
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round"
android:label="@string/app_name"
android:theme="@android:style/Theme.DeviceDefault.Light">
android:theme="@android:style/Theme.DeviceDefault.Light"
tools:ignore="GoogleAppIndexingWarning">
<meta-data
android:name="com.google.android.wearable.standalone"