How can I update my plugin in android studio? -


i building golf score card app android studio , last night before shut down laptop building fine, however, morning when run android studio got error "plugin old, please update more recent version, or set android_daily_override environment variable "aed79d567e57792ed352e708d2b7ca891ff897c6"" , app structure has altered , there no longer manifest folder.....image of app structure``

below gradle file:

    apply plugin: 'com.android.application'  android {     compilesdkversion 23     buildtoolsversion "21.1.2"      defaultconfig {         applicationid "com.example.biko.golfstroke"         minsdkversion 8         targetsdkversion 23         versioncode 1         versionname "1.0"     }     buildtypes {         release {             minifyenabled false             proguardfiles getdefaultproguardfile('proguard-android.txt'), 'proguard-rules.pro'         }     } }  dependencies {     compile filetree(dir: 'libs', include: ['*.jar'])     testcompile 'junit:junit:4.12'     compile 'com.android.support:appcompat-v7:23.1.1' } 

please if can frustrating!

plz update gradle plugin version in rooter gradle file following:

classpath 'com.android.tools.build:gradle:2.0.0-alpha6'

check newest version of android gradle plugin in here

i think android studio should fix version problem himself, it`s bad experience changing manually.


Comments

Popular posts from this blog

sql - VB.NET Operand type clash: date is incompatible with int error -

SVG stroke-linecap doesn't work for circles in Firefox? -

python - TypeError: Scalar value for argument 'color' is not numeric in openCV -