From f7589ceee22f64f42ec2af3cf314b72ea53cd83f Mon Sep 17 00:00:00 2001 From: Andrew Shu Date: Thu, 20 Nov 2014 12:18:35 -0800 Subject: [PATCH] gradle: fix demo build.gradle --- demo/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/demo/build.gradle b/demo/build.gradle index c8db67dba5..60dc9399d0 100644 --- a/demo/build.gradle +++ b/demo/build.gradle @@ -11,7 +11,7 @@ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. -apply plugin: 'android' +apply plugin: 'com.android.application' android { compileSdkVersion 19 @@ -23,7 +23,7 @@ android { } buildTypes { release { - runProguard false + minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' } }