gradle - Issue while integrating the project with new android studio installation -
i have installed latest android studio on machine , trying run project building on machine. having gradle build fail , don't know thing causing problem.
apply plugin: 'com.android.application' android { compilesdkversion 24 buildtoolsversion "24.0.0" defaultconfig { applicationid "com.example.mudasir.login" minsdkversion 16 targetsdkversion 24 versioncode 1 versionname "1.0" multidexenabled true } buildtypes { release { minifyenabled false proguardfiles getdefaultproguardfile('proguard-android.txt'), 'proguard-rules.pro' } } packagingoptions{ exclude'meta-inf/notice.txt' exclude'meta-inf/notice' exclude'meta-inf/notice.txt' exclude'meta-inf/license.txt' exclude'meta-inf/license' exclude'meta-inf/license.txt' } dexoptions{ predexlibraries = false } } dependencies { compile filetree(dir: 'libs', include: ['*.jar']) testcompile 'junit:junit:4.12' compile 'com.android.support:appcompat-v7:24.2.0' compile 'com.android.support:design:24.2.0' compile 'com.android.support:support-v4:24.2.0' compile 'com.google.android.gms:play-services:9.4.0' compile 'com.android.support:multidex:1.0.0' }
Comments
Post a Comment