android - Can't resolve the dependency -
my other dependencies being resolved except-:
compile 'com.parse.bolts:bolts-android:1.2.1' compile 'com.parse:parse-android:1.+'
my build.gradle -:
apply plugin: 'com.android.application' android { compilesdkversion 23 buildtoolsversion "22.0.1" defaultconfig { applicationid "com.transenigma.iskconapp" minsdkversion 15 targetsdkversion 23 versioncode 1 versionname "1.0" //multidexenabled true } buildtypes { release { minifyenabled false proguardfiles getdefaultproguardfile('proguard-android.txt'), 'proguard-rules.pro' } } uselibrary 'org.apache.http.legacy' } dependencies { compile filetree(include: ['*.jar'], dir: 'libs') testcompile 'junit:junit:4.12' compile 'com.android.support:appcompat-v7:23.1.1' compile 'com.android.support:recyclerview-v7:23.1.1' compile 'com.android.support:design:23.1.1' compile 'com.jakewharton:butterknife:7.0.1' compile 'com.parse.bolts:bolts-android:1.2.1' compile 'com.parse:parse-android:1.+' compile 'joda-time:joda-time:2.9.1' compile 'com.google.android.gms:play-services-maps:8.4.0' compile 'com.android.support:cardview-v7:23.1.1' compile 'com.squareup.picasso:picasso:2.5.2' compile 'com.makeramen:roundedimageview:1.5.0' compile 'com.readystatesoftware.systembartint:systembartint:1.0.3' compile 'com.nineoldandroids:library:2.4.0' } there no problem in other libraries. made project using internet without proxy , have changed internet of proxy. although have made changes in settings still these 2 dependencies not being resolved. other dependencies being resolved meaning internet working properly. issue.
you can use
buildtoolsversion "23.0.1"use
compile 'com.parse:parse-android:1.12.0'instead of yours .
actually compile 'com.parse:parse-android:1.+' not suitable (old ) dependencies & it's exact version .
Comments
Post a Comment