ParseUI-Android
ParseUI-Android copied to clipboard
ParseUI contains user interface libraries for building apps with the Parse Android SDK.
ParseImageView s always need to be re-set after state saving and restoration. A save / restore interface could be implemented, for instance, something like: - onSaveInstanceState : if file !=...
# **_ > Error:(29, 0) Cannot get property 'parse' on extra properties extension as it does not exist > And the error points to this line in dependency > dependencies...
Like so: ``` public Task loadInBackground() { if (file == null) { return Task.forResult(null); } final ParseFile loadingFile = file; return file.getDataInBackground().onSuccessTask(new Continuation() { @Override public Task then(Task task) throws...
Ask users for password confirmation in mobile app maybe consider a anti-pattern for some designers. I am one of them. My suggestion is create some way to hide or remove...
Hello, I am getting a fatal error when enabling local datastore: ``` Parse.enableLocalDatastore(this); Parse.initialize(this); ``` And setting cache policy on my ParseQuery object under ParseQueryAdapter: ``` public ServerAdapter(Context context) {...
I'm traying to compile my project and getting this error ``` Error:Execution failed for task ':app:transformClassesWithJarMergingForDebug'. > com.android.build.api.transform.TransformException: java.util.zip.ZipException: duplicate entry: com/parse/AbstractQueryController$1.class ``` my gradle file looks like this: ```...
In iOS, we have following callback which could be used to do some pre check : - (BOOL)signUpViewController:(PFSignUpViewController *)signUpController shouldBeginSignUp:(NSDictionary *)info Is there any similar one on Android SDK? The...
I have included compile 'com.parse:parseui-login-android:0.0.1' compile 'com.parse:parseui-widget-android:0.0.1' compile 'com.parse.bolts:bolts-android:1.2.1' compile 'com.facebook.android:facebook-android-sdk:4.0.1' compile 'com.parse:parse-android:1.10.1' but still get the error of: java.lang.NoClassDefFoundError: com.parse.TwitterAuthenticationProvider at com.parse.ParseTwitterUtils.getAuthenticationProvider(ParseTwitterUtils.java:19) at com.parse.ParseTwitterUtils.initialize(ParseTwitterUtils.java:50)