From a1896bc86d7ac72ce85568ba1e8774e9771d2967 Mon Sep 17 00:00:00 2001 From: Karim Abou Zeid Date: Sat, 30 Jan 2016 16:15:39 +0100 Subject: [PATCH] Correctly showing the debug label on the launcher. Updated gradle plugin. --- app/build.gradle | 1 + app/src/main/AndroidManifest.xml | 6 ++---- build.gradle | 2 +- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 2788d84e..6cc429b7 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -79,6 +79,7 @@ android { applicationIdSuffix '.debug' versionNameSuffix ' DEBUG' manifestPlaceholders = [appName: "Phonograph DEBUG"] + signingConfig signingConfigs.debug } } diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 05cead43..ad414671 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -16,13 +16,11 @@ android:name=".App" android:allowBackup="true" android:icon="@drawable/ic_launcher" - android:label="@string/app_name" + android:label="${appName}" android:supportsRtl="true" android:theme="@style/Theme.Phonograph.Light" tools:ignore="UnusedAttribute"> - + diff --git a/build.gradle b/build.gradle index 4eb50de0..d57759c4 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ buildscript { jcenter() } dependencies { - classpath 'com.android.tools.build:gradle:2.0.0-alpha8' + classpath 'com.android.tools.build:gradle:2.0.0-alpha9' classpath 'com.github.triplet.gradle:play-publisher:1.1.3' } }