Skip to content Skip to sidebar Skip to footer

Unable To Import Parseimageview - Android

I am using Parse for my project. I am able to import all other classes from the parse library like import com.parse.ParseException; import com.parse.ParseFile; import com.parse.Pa

Solution 1:

Note that https://github.com/ParsePlatform/Parse-SDK-Android/releases

1.10.0

  • New: ParseImageView and ParseQueryAdapter are now part of ParseUI.

The solution is the following:

For example,

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    testCompile 'junit:junit:4.12'compile'com.android.support:appcompat-v7:23.0.1'compile'com.android.support:design:23.0.1'
    // Parse
    compile'com.parse.bolts:bolts-android:1.2.1'compile'com.parse:parse-android:1.10.3'compile project(':ParseUI-Widget')
}

Solution 2:

Parse is now available at Maven Central.

Recommended way to add it as a dependency for your Android project is:

dependencies { compile 'com.parse:parse-android:1.10.1' }

Solution 3:

I had the same problem. It seems the latest parse library doesn't have ParseImageView method. I solved it by inputting the old version of parse library 1.3.2 into libs folder and set the dependencies as

dependencies { compile fileTree(dir: 'libs', include: 'Parse-*.jar') }

You can get old library at their github examples.

Post a Comment for "Unable To Import Parseimageview - Android"