From c85dddc1d8f6c16bd03c42c26fa420d011825baa Mon Sep 17 00:00:00 2001 From: Aleksander Nowakowski Date: Thu, 2 Nov 2017 11:12:09 +0100 Subject: [PATCH] Ignoring warnings in AndroidManifests --- app/src/main/AndroidManifest.xml | 8 ++++++-- common/src/main/AndroidManifest.xml | 4 +++- wear/src/main/AndroidManifest.xml | 6 ++++-- 3 files changed, 13 insertions(+), 5 deletions(-) diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index ded3617d..f2fd86fe 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -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. --> - @@ -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" > - + diff --git a/wear/src/main/AndroidManifest.xml b/wear/src/main/AndroidManifest.xml index 3aff18c2..7fecc1bc 100644 --- a/wear/src/main/AndroidManifest.xml +++ b/wear/src/main/AndroidManifest.xml @@ -22,7 +22,8 @@ --> + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools"> @@ -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">