diff --git a/Android/AndroidManifest.xml b/Android/AndroidManifest.xml
deleted file mode 100644
index a1238a9..0000000
--- a/Android/AndroidManifest.xml
+++ /dev/null
@@ -1,67 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Android/README.md b/Android/README.md
new file mode 100644
index 0000000..52416db
--- /dev/null
+++ b/Android/README.md
@@ -0,0 +1,15 @@
+# Push Notifications on Android
+
+Setting up push notifications on Android is very straightforward. Simply follow the [Android Push Notifications QuickStart guide][quick-start] to connect your app to Parse. After following that guide, you will be able to send your first push notification to your Android device.
+
+Unlike iOS, Android push notifications do work from the emulator. Some Android emulators (the ones without Google API support) don't support GCM, so if you test your app in an emulator make sure to select an emulator image that has Google APIs installed.
+
+For more information on Push Notifications in Android, take a look at our [Push Guide][android-push-guide].
+
+# Troubleshooting Push Notifications
+
+Setting up Push Notifications is often a source of frustration for developers. The process is complicated and invites problems to happen along the way. If you run into issues, try some of [these troubleshooting tips][troubleshooting].
+
+[quick-start]: https://parse.com/apps/quickstart#parse_push/android/native/existing
+[android-push-guide]: https://parse.com/docs/android/guide#push-notifications
+[troubleshooting]: https://parse.com/docs/android/guide#push-notifications-troubleshooting
diff --git a/Android/ic_launcher-web.png b/Android/ic_launcher-web.png
deleted file mode 100644
index 9500cc0..0000000
Binary files a/Android/ic_launcher-web.png and /dev/null differ
diff --git a/Android/libs/Parse-1.4.3-javadoc/allclasses-frame.html b/Android/libs/Parse-1.4.3-javadoc/allclasses-frame.html
deleted file mode 100644
index b8a2808..0000000
--- a/Android/libs/Parse-1.4.3-javadoc/allclasses-frame.html
+++ /dev/null
@@ -1,103 +0,0 @@
-
-
-
-
-A CountCallback is used to run code after a ParseQuery is used to count objects matching
- a query in a background thread.
-
- The easiest way to use a GetCallback is through an anonymous inner class. Override the
- done function to specify what the callback should do after the count is complete.
- The done function will be run in the UI thread, while the count happens in a
- background thread. This ensures that the UI does not freeze while the fetch happens.
-
- For example, this sample code counts objects of class "MyClass". It calls a
- different function depending on whether the count succeeded or not.
-
-A DeleteCallback is used to run code after saving a ParseObject in a background thread.
-
- The easiest way to use a DeleteCallback is through an anonymous inner class. Override the
- done function to specify what the callback should do after the delete is complete.
- The done function will be run in the UI thread, while the delete happens in a
- background thread. This ensures that the UI does not freeze while the delete happens.
-
- For example, this sample code deletes the object myObject and calls a different
- function depending on whether the save succeeded or not.
-
-A FindCallback is used to run code after a ParseQuery is used to fetch a list of
- ParseObjects in a background thread.
-
- The easiest way to use a FindCallback is through an anonymous inner class. Override the
- done function to specify what the callback should do after the fetch is complete.
- The done function will be run in the UI thread, while the fetch happens in a
- background thread. This ensures that the UI does not freeze while the fetch happens.
-
- For example, this sample code fetches all objects of class "MyClass". It calls a
- different function depending on whether the fetch succeeded or not.
-
- The easiest way to use a FunctionCallback is through an anonymous inner class. Override the
- done function to specify what the callback should do after the cloud function is
- complete. The done function will be run in the UI thread, while the fetch happens in
- a background thread. This ensures that the UI does not freeze while the fetch happens.
-
- For example, this sample code calls a cloud function "MyFunction" with
- params and calls a different function depending on whether the function succeeded.
-
-A GetCallback is used to run code after a ParseQuery is used to fetch a
- ParseObject in a background thread.
-
- The easiest way to use a GetCallback is through an anonymous inner class. Override the
- done function to specify what the callback should do after the fetch is complete.
- The done function will be run in the UI thread, while the fetch happens in a
- background thread. This ensures that the UI does not freeze while the fetch happens.
-
- For example, this sample code fetches an object of class "MyClass" and id
- myId. It calls a different function depending on whether the fetch succeeded or not.
-
-
-
- ParseQuery<ParseObject> query = ParseQuery.getQuery("MyClass");
- query.getInBackground(myId, new GetCallback<ParseObject>() {
- public void done(ParseObject object, ParseException e) {
- if (e == null) {
- objectWasRetrievedSuccessfully(object);
- } else {
- objectRetrievalFailed();
- }
- }
- });
-
-A GetDataCallback is used to run code after a ParseFile fetches its data on a background
- thread.
-
- The easiest way to use a GetDataCallback is through an anonymous inner class. Override the
- done function to specify what the callback should do after the fetch is complete.
- The done function will be run in the UI thread, while the fetch happens in a
- background thread. This ensures that the UI does not freeze while the fetch happens.
-
-A LocationCallback is used to run code after a Location has been fetched by some
- LocationProvider.
-
- The easiest way to use a LocationCallback is through an anonymous inner class. Override the
- done function to specify what the callback should do after the location has been
- fetched. The done function will be run in the UI thread, while the location check
- happens in a background thread. This ensures that the UI does not freeze while the fetch happens.
-
- For example, this sample code defines a timeout for fetching the user's current location, and
- provides a callback. Within the callback, the success and failure cases are handled differently.
-
-
-
- ParseGeoPoint.getCurrentLocationAsync(1000, new LocationCallback() {
- public void done(ParseGeoPoint geoPoint, ParseException e) {
- if (e == null) {
- // do something with your new ParseGeoPoint
- } else {
- // handle your error
- e.printStackTrace();
- }
- }
- });
-
-A LogInCallback is used to run code after logging in a user.
-
- The easiest way to use a LogInCallback is through an anonymous inner class. Override the
- done function to specify what the callback should do after the login is complete.
- The done function will be run in the UI thread, while the login happens in a
- background thread. This ensures that the UI does not freeze while the save happens.
-
- For example, this sample code logs in a user and calls a different function depending on whether
- the login succeeded or not.
-
-
-
- ParseUser.logInInBackground("username", "password", new LogInCallback() {
- public void done(ParseUser user, ParseException e) {
- if (e == null && user != null) {
- loginSuccessful();
- } else if (user == null) {
- usernameOrPasswordIsInvalid();
- } else {
- somethingWentWrong();
- }
- }
- });
-
Authenticates this client as belonging to your application. This must be called before your
- application can use the Parse library. The recommended way is to put a call to
- Parse.initialize in each of your onCreate methods. An example:
-
-
context - The active Context for your application.
applicationId - The application id provided in the Parse dashboard.
clientKey - The client key provided in the Parse dashboard.
-
-
-
-
-
-setLogLevel
-
-public static void setLogLevel(int logLevel)
-
-
Sets the level of logging to display, where each level includes all those below it. The default
- level is Parse.LOG_LEVEL_ERROR. Please ensure this is set to Parse.LOG_LEVEL_ERROR
- or Parse.LOG_LEVEL_NONE before deploying your app to ensure no sensitive information is
- logged. The levels are:
-
-A ParseACL is used to control which users can access or modify a particular object. Each
- ParseObject can have its own ParseACL. You can grant read and write permissions
- separately to specific users, to groups of users that belong to roles, or you can grant
- permissions to "the public" so that, for example, any user could read a particular object but
- only a particular set of users could write to that object.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
ParseACL()
-
-
- Creates an ACL with no permissions granted.
-
-
-
ParseACL(ParseUser owner)
-
-
- Creates an ACL where only the provided user has access.
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
- boolean
-
getPublicReadAccess()
-
-
- Get whether the public is allowed to read this object.
-
-
-
- boolean
-
getPublicWriteAccess()
-
-
- Set whether the public is allowed to write this object.
-
-
-
- boolean
-
getReadAccess(ParseUser user)
-
-
- Get whether the given user id is *explicitly* allowed to read this object.
-
-
-
- boolean
-
getReadAccess(String userId)
-
-
- Get whether the given user id is *explicitly* allowed to read this object.
-
-
-
- boolean
-
getRoleReadAccess(ParseRole role)
-
-
- Get whether users belonging to the given role are allowed to read this object.
-
-
-
- boolean
-
getRoleReadAccess(String roleName)
-
-
- Get whether users belonging to the role with the given roleName are allowed to read this
- object.
-
-
-
- boolean
-
getRoleWriteAccess(ParseRole role)
-
-
- Get whether users belonging to the given role are allowed to write this object.
-
-
-
- boolean
-
getRoleWriteAccess(String roleName)
-
-
- Get whether users belonging to the role with the given roleName are allowed to write this
- object.
-
-
-
- boolean
-
getWriteAccess(ParseUser user)
-
-
- Get whether the given user id is *explicitly* allowed to write this object.
-
-
-
- boolean
-
getWriteAccess(String userId)
-
-
- Get whether the given user id is *explicitly* allowed to write this object.
-
-
-
-static void
-
setDefaultACL(ParseACL acl,
- boolean withAccessForCurrentUser)
-
-
- Sets a default ACL that will be applied to all ParseObjects when they are created.
-
-
-
- void
-
setPublicReadAccess(boolean allowed)
-
-
- Set whether the public is allowed to read this object.
-
-
-
- void
-
setPublicWriteAccess(boolean allowed)
-
-
- Set whether the public is allowed to write this object.
-
-
-
- void
-
setReadAccess(ParseUser user,
- boolean allowed)
-
-
- Set whether the given user is allowed to read this object.
-
-
-
- void
-
setReadAccess(String userId,
- boolean allowed)
-
-
- Set whether the given user id is allowed to read this object.
-
-
-
- void
-
setRoleReadAccess(ParseRole role,
- boolean allowed)
-
-
- Set whether users belonging to the given role are allowed to read this object.
-
-
-
- void
-
setRoleReadAccess(String roleName,
- boolean allowed)
-
-
- Set whether users belonging to the role with the given roleName are allowed to read this
- object.
-
-
-
- void
-
setRoleWriteAccess(ParseRole role,
- boolean allowed)
-
-
- Set whether users belonging to the given role are allowed to write this object.
-
-
-
- void
-
setRoleWriteAccess(String roleName,
- boolean allowed)
-
-
- Set whether users belonging to the role with the given roleName are allowed to write this
- object.
-
-
-
- void
-
setWriteAccess(ParseUser user,
- boolean allowed)
-
-
- Set whether the given user is allowed to write this object.
-
-
-
- void
-
setWriteAccess(String userId,
- boolean allowed)
-
-
- Set whether the given user id is allowed to write this object.
Get whether the given user id is *explicitly* allowed to read this object. Even if this returns
- false, the user may still be able to access it if getPublicReadAccess returns true or a role
- that the user belongs to has read access.
-
Get whether the given user id is *explicitly* allowed to write this object. Even if this
- returns false, the user may still be able to write it if getPublicWriteAccess returns true or a
- role that the user belongs to has write access.
-
Get whether the given user id is *explicitly* allowed to read this object. Even if this returns
- false, the user may still be able to access it if getPublicReadAccess returns true or a role
- that the user belongs to has read access.
-
Get whether the given user id is *explicitly* allowed to write this object. Even if this
- returns false, the user may still be able to write it if getPublicWriteAccess returns true or a
- role that the user belongs to has write access.
-
Get whether users belonging to the role with the given roleName are allowed to read this
- object. Even if this returns false, the role may still be able to read it if a parent
- role has read access.
-
-
-
Parameters:
roleName - The name of the role.
-
Returns:
true if the role has read access. false otherwise.
Get whether users belonging to the role with the given roleName are allowed to write this
- object. Even if this returns false, the role may still be able to write it if a parent
- role has write access.
-
-
-
Parameters:
roleName - The name of the role.
-
Returns:
true if the role has write access. false otherwise.
Get whether users belonging to the given role are allowed to read this object. Even if this
- returns false, the role may still be able to read it if a parent role has read access.
- The role must already be saved on the server and its data must have been fetched in order to
- use this method.
-
-
-
Parameters:
role - The role to check for access.
-
Returns:
true if the role has read access. false otherwise.
Set whether users belonging to the given role are allowed to read this object. The role must
- already be saved on the server and its data must have been fetched in order to use this method.
-
-
-
Parameters:
role - The role to assign access.
allowed - Whether the given role can read this object.
Get whether users belonging to the given role are allowed to write this object. Even if this
- returns false, the role may still be able to write it if a parent role has write
- access. The role must already be saved on the server and its data must have been fetched in
- order to use this method.
-
-
-
Parameters:
role - The role to check for access.
-
Returns:
true if the role has write access. false otherwise.
Set whether users belonging to the given role are allowed to write this object. The role must
- already be saved on the server and its data must have been fetched in order to use this method.
-
-
-
Parameters:
role - The role to assign access.
allowed - Whether the given role can write this object.
Sets a default ACL that will be applied to all ParseObjects when they are created.
-
-
-
Parameters:
acl - The ACL to use as a template for all ParseObjects created after setDefaultACL
- has been called. This value will be copied and used as a template for the creation of
- new ACLs, so changes to the instance after setDefaultACL() has been called will not be
- reflected in new ParseObjects.
withAccessForCurrentUser - If true, the ParseACL that is applied to newly-created ParseObjects will
- provide read and write access to the ParseUser.getCurrentUser() at the time of
- creation. If false, the provided ACL will be used without modification. If acl is
- null, this value is ignored.
-The ParseAnalytics class provides an interface to Parse's logging and analytics backend. Methods
- will return immediately and cache requests (+ timestamps) to be handled "eventually." That is,
- the request will be sent immediately if possible or the next time a network connection is
- available otherwise.
-
trackAppOpened(Intent intent)
-
-
- Tracks this application being launched (and if this happened as the result of the user opening
- a push notification, this method sends along information to correlate this open with that
- push).
-
-
-
-static void
-
trackEvent(String name)
-
-
- Tracks the occurrence of a custom event.
-
-
-
-static void
-
trackEvent(String name,
- Map<String,String> dimensions)
-
-
- Tracks the occurrence of a custom event with additional dimensions.
Tracks this application being launched (and if this happened as the result of the user opening
- a push notification, this method sends along information to correlate this open with that
- push).
-
-
-
Parameters:
intent - The Intent that started an Activity, if any. Can be null.
Tracks the occurrence of a custom event with additional dimensions. Parse will store a data
- point at the time of invocation with the given event name. Dimensions will allow segmentation
- of the occurrences of this custom event.
-
- To track a user signup along with additional metadata, consider the following:
-
-Provides utility functions for working with Anonymously logged-in users. Anonymous users have
- some unique characteristics:
-
-
Anonymous users don't need a user name or password.
-
Once logged out, an anonymous user cannot be recovered.
-
When the current user is anonymous, the following methods can be used to switch to a
- different user or convert the anonymous user into a regular one:
-
-
signUp converts an anonymous user to a standard user with the given username and password.
- Data associated with the anonymous user is retained.
-
logIn switches users without converting the anonymous user. Data associated with the
- anonymous user will be lost.
-
Service logIn (e.g. Facebook, Twitter) will attempt to convert the anonymous user into a
- standard user by linking it to the service. If a user already exists that is linked to the
- service, it will instead switch to the existing user.
-
Service linking (e.g. Facebook, Twitter) will convert the anonymous user into a standard user
- by linking it to the service.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-static boolean
-
isLinked(ParseUser user)
-
-
- Whether the user is logged in anonymously.
-The ParseCloud class defines provides methods for interacting with Parse Cloud Functions. A Cloud
- Function can be called with ParseCloud.callFunctionInBackground(String, Map, FunctionCallback)
- using a FunctionCallback. For example, this sample code calls the "validateGame" Cloud
- Function and calls processResponse if the call succeeded and handleError if it failed.
-
-
- ParseCloud.callFunctionInBackground("validateGame", parameters, new FunctionCallback
-
- Using the callback methods is usually preferred because the network operation will not block the
- calling thread. However, in some cases it may be easier to use the
- ParseCloud.callFunction(String, Map) call which do block the calling thread. For example, if your
- application has already spawned a background task to perform work, that background task could use
- the blocking calls and avoid the code complexity of callbacks.
-
params - The parameters to send to the cloud function. This map can contain anything that could
- be placed in a ParseObject except for ParseObjects themselves.
-
Returns:
The result of the cloud call. Result may be a @{link Map}< String, ?>,
- ParseObject, List<?>, or any type that can be set as a field in a
- ParseObject.
-
params - The parameters to send to the cloud function. This map can contain anything that could
- be placed in a ParseObject except for ParseObjects themselves.
callback - The callback that will be called when the cloud function has returned.
-A ParseException gets raised whenever a ParseObject issues an invalid request, such as
- deleting or editing an object that no longer exists on the server, or when there is a network
- failure preventing communication with the Parse server.
-
Error code indicating that something has gone wrong with the server. If you get this error
- code, it is Parse's fault. Contact us at https://parse.com/help
-
Error code indicating a missing or invalid classname. Classnames are case-sensitive. They must
- start with a letter, and a-zA-Z0-9_ are the only valid characters.
-
Error code indicating that badly formed JSON was received upstream. This either indicates you
- have done something unusual with modifying how things encode to JSON, or the network is failing
- badly.
-
Error code indicating an invalid channel name. A channel name is either an empty string (the
- broadcast channel) or contains only a-zA-Z0-9_ characters and starts with a letter.
-
Error code indicating that an invalid filename was used for ParseFile. A valid file name
- contains only a-zA-Z0-9_. characters and is between 1 and 128 characters.
-
link(ParseUser user,
- Collection<String> permissions,
- Activity activity,
- int activityCode,
- SaveCallback callback)
-
-
- Links a ParseUser to a Facebook account, allowing you to use Facebook for authentication, and
- providing access to Facebook data for the user.
link(ParseUser user,
- String facebookId,
- String accessToken,
- Date expirationDate,
- SaveCallback callback)
-
-
- Links a ParseUser to a Facebook account, allowing you to use Facebook for authentication, and
- providing access to Facebook data for the user.
logIn(String facebookId,
- String accessToken,
- Date expirationDate,
- LogInCallback callback)
-
-
- Logs in a ParseUser using Facebook for authentication.
Links a ParseUser to a Facebook account, allowing you to use Facebook for authentication, and
- providing access to Facebook data for the user. This method allows you to handle getting access
- tokens for the user yourself, rather than delegating to the Facebook SDK.
-
-
-
Parameters:
user - The user to link to a Facebook account.
facebookId - The facebook ID of the user being linked.
accessToken - The access token for the user.
expirationDate - The expiration date of the access token.
callback - Callback for notifying when the new authentication data has been saved to the user.
Links a ParseUser to a Facebook account, allowing you to use Facebook for authentication, and
- providing access to Facebook data for the user. This method delegates to the Facebook SDK's
- authenticate() method.
-
- IMPORTANT: Note that single sign-on authentication will not function correctly if you do
- not include a call to the finishAuthentication() method in your onActivityResult()
- function! Please see below for more information.
-
- From the Facebook SDK documentation:
-
- Starts either an Activity or a dialog which prompts the user to log in to Facebook and grant
- the requested permissions to the given application.
-
- This method will, when possible, use Facebook's single sign-on for Android to obtain an access
- token. This involves proxying a call through the Facebook for Android stand-alone application,
- which will handle the authentication flow, and return an OAuth access token for making API
- calls.
-
- Because this process will not be available for all users, if single sign-on is not possible,
- this method will automatically fall back to the OAuth 2.0 User-Agent flow. In this flow, the
- user credentials are handled by Facebook in an embedded WebView, not by the client application.
- As such, the dialog makes a network request and renders HTML content rather than a native UI.
- The access token is retrieved from a redirect to a special URL that the WebView handles.
-
-
-
Parameters:
user - The user to link to a Facebook account.
permissions - A list of permissions to be used when logging in. Many of these constants are defined
- here: ParseFacebookUtils.Permissions.
activity - The Android activity in which we want to display the authorization dialog.
activityCode - Single sign-on requires an activity result to be called back to the client application
- -- if you are waiting on other activities to return data, pass a custom activity code
- here to avoid collisions.
callback - Callback for notifying the calling application when the Facebook authentication has
- completed, failed, or been canceled.
Logs in a ParseUser using Facebook for authentication. If a user for the given Facebook
- credentials does not already exist, a new user will be created. This method allows you to
- handle getting access tokens for the user yourself, rather than delegating to the Facebook SDK.
-
-
-
Parameters:
facebookId - The facebook ID of the user being linked.
accessToken - The access token for the user.
expirationDate - The expiration date of the access token.
callback - Callback for notifying when the new authentication data has been saved to the user.
Logs in a ParseUser using Facebook for authentication. If a user for the given Facebook
- credentials does not already exist, a new user will be created. This method delegates to the
- Facebook SDK's authenticate() method.
-
- IMPORTANT: Note that single sign-on authentication will not function correctly if you do
- not include a call to the finishAuthentication() method in your onActivityResult()
- function! Please see below for more information.
-
- From the Facebook SDK documentation:
-
- Starts either an Activity or a dialog which prompts the user to log in to Facebook and grant
- the requested permissions to the given application.
-
- This method will, when possible, use Facebook's single sign-on for Android to obtain an access
- token. This involves proxying a call through the Facebook for Android stand-alone application,
- which will handle the authentication flow, and return an OAuth access token for making API
- calls.
-
- Because this process will not be available for all users, if single sign-on is not possible,
- this method will automatically fall back to the OAuth 2.0 User-Agent flow. In this flow, the
- user credentials are handled by Facebook in an embedded WebView, not by the client application.
- As such, the dialog makes a network request and renders HTML content rather than a native UI.
- The access token is retrieved from a redirect to a special URL that the WebView handles.
-
-
-
Parameters:
permissions - A list of permissions to be used when logging in. Many of these constants are defined
- here: ParseFacebookUtils.Permissions.
activity - The Android activity in which we want to display the authorization dialog.
activityCode - Single sign-on requires an activity result to be called back to the client application
- -- if you are waiting on other activities to return data, pass a custom activity code
- here to avoid collisions.
callback - Callback for notifying the calling application when the Facebook authentication has
- completed, failed, or been canceled.
Completes authentication after the Facebook app returns an activity result. IMPORTANT:
- This method must be invoked at the top of the calling activity's onActivityResult() function or
- Facebook authentication will not function properly!
-
- If your calling activity does not currently implement onActivityResult(), you must implement it
- and include a call to this method if you intend to use the
- ParseFacebookUtils.logIn(Activity, int, LogInCallback) or
- ParseFacebookUtils.link(ParseUser, Activity, int, SaveCallback) methods in ParseFacebookUtilities
- . For more information, see http://developer.android.com/reference/android/app/
- Activity.html#onActivityResult(int, int, android.content.Intent)
-
Creates a new file from a byte array, file name, and content type. Content type will be used
- instead of auto-detection by file extension.
-
-
-
Parameters:
name - The file's name, ideally with extension. The file name must begin with an alphanumeric
- character, and consist of alphanumeric characters, periods, spaces, underscores, or
- dashes.
Creates a new file from a byte array and a name. Giving a name with a proper file extension
- (e.g. ".png") is ideal because it allows Parse to deduce the content type of the file and set
- appropriate HTTP headers when it is fetched.
-
-
-
Parameters:
name - The file's name, ideally with extension. The file name must begin with an alphanumeric
- character, and consist of alphanumeric characters, periods, spaces, underscores, or
- dashes.
The filename. Before save is called, this is just the filename given by the user (if any).
- After save is called, that name gets prefixed with a unique identifier.
-
-ParseGeoPoint represents a latitude / longitude point that may be associated with a key in a
- ParseObject or used as a reference point for geo queries. This allows proximity based queries on
- the key.
-
- Only one key in a class may contain a GeoPoint.
-
- Example:
- ParseGeoPoint point = new ParseGeoPoint(30.0, -20.0);
- ParseObject object = new ParseObject("PlaceObject");
- object.put("location", point);
- object.save();
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
ParseGeoPoint()
-
-
- Creates a new default point with latitude and longitude set to 0.0.
-
-
-
ParseGeoPoint(double latitude,
- double longitude)
-
-
- Creates a new point with the specified latitude and longitude.
getCurrentLocationInBackground(long timeout,
- LocationCallback callback)
-
-
- Fetches the user's current location and returns a new ParseGeoPoint via the provided
- LocationCallback.
Fetches the user's current location and returns a new ParseGeoPoint via the provided
- LocationCallback. Defaults to a Location Criteria with no accuracy or power requirements.
-
-
-
Parameters:
timeout - The number of milliseconds to allow before timing out.
callback - callback.done(geoPoint, error) is called when a location is found.
-A specialized ImageView that downloads and displays remote images stored on Parse's
- servers.
-
- Given a ParseFile storing an image, a ParseImageView works seamlessly to fetch
- the file data and display it in the background. See below for an example:
-
-
- ParseImageView imageView = (ParseImageView) findViewById(android.R.id.icon);
- // The placeholder will be used before and during the fetch, to be replaced by the fetched image
- // data.
- imageView.setPlaceholder(getResources().getDrawable(R.drawable.placeholder));
- imageView.setParseFile(file);
- imageView.loadInBackground(new GetDataCallback() {
- @Override
- public void done(byte[] data, ParseException e) {
- Log.i("ParseImageView",
- "Fetched! Data length: " + data.length + ", or exception: " + e.getMessage());
- }
- });
-
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-
-
Nested classes/interfaces inherited from class android.widget.ImageView
Sets the placeholder to be used while waiting for an image to be loaded.
-
-
-
Parameters:
placeholder - A Drawable to be displayed while the remote image data is being fetched. This
- value can be null, and this ImageView will simply be blank while data is
- fetched.
Kick off downloading of remote image. When the download is finished, the image data will be
- displayed and the completionCallback will be triggered.
-
-
-
Parameters:
completionCallback - A custom GetDataCallback to be called after the image data is fetched and this
- ImageView displays the image.
getQuery()
-
-
- Constructs a query for ParseInstallations.
-
-
-
- void
-
put(String key,
- Object value)
-
-
- Add a key-value pair to this object.
-
-
-
- void
-
remove(String key)
-
-
- Removes a key from this object's data if it exists.
-
-
-
- void
-
saveEventually(SaveCallback callback)
-
-
- Saves this object to the server at some unspecified time in the future, even if Parse is
- currently inaccessible.
-
-
-
-
-
-
Methods inherited from class com.parse.ParseObject
Saves this object to the server at some unspecified time in the future, even if Parse is
- currently inaccessible. Use this when you may not have a solid network connection, and don't
- need to know when the save completes. If there is some problem with the object such that it
- can't be saved, it will be silently discarded. Objects saved with this method will be stored
- locally in an on-disk cache until they can be delivered to Parse. They will be sent immediately
- if possible. Otherwise, they will be sent the next time a network connection is available.
- Objects saved this way will persist even after the app is closed, in which case they will be
- sent the next time the app is opened. If more than 10MB of data is waiting to be sent,
- subsequent calls to saveEventually or deleteEventually will cause old saves to be silently
- discarded until the connection can be re-established, and the queued objects can be saved.
-
-The ParseObject is a local representation of data that can be saved and retrieved from the Parse
- cloud.
-
- The basic workflow for creating new data is to construct a new ParseObject, use put() to fill it
- with data, and then use save() to persist to the database.
-
- The basic workflow for accessing existing data is to use a ParseQuery to specify which
- existing data to retrieve.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-protected
-
ParseObject()
-
-
- The base class constructor to call in subclasses.
-
-
-
-
-
ParseObject(String theClassName)
-
-
- Constructs a new ParseObject with no data in it.
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
- void
-
add(String key,
- Object value)
-
-
- Atomically adds an object to the end of the array associated with a given key.
-
-
-
- void
-
addAll(String key,
- Collection<?> values)
-
-
- Atomically adds the objects contained in a Collection to the end of the array
- associated with a given key.
-
-
-
- void
-
addAllUnique(String key,
- Collection<?> values)
-
-
- Atomically adds the objects contained in a Collection to the array associated with a
- given key, only adding elements which are not already present in the array.
-
-
-
- void
-
addUnique(String key,
- Object value)
-
-
- Atomically adds an object to the array associated with a given key, only if it is not already
- present in the array.
-
-
-
- boolean
-
containsKey(String key)
-
-
- Whether this object has a particular key.
createWithoutData(Class<T> subclass,
- String objectId)
-
-
- Creates a reference to an existing ParseObject for use in creating associations between
- ParseObjects.
createWithoutData(String className,
- String objectId)
-
-
- Creates a reference to an existing ParseObject for use in creating associations between
- ParseObjects.
deleteEventually()
-
-
- Deletes this object from the server at some unspecified time in the future, even if Parse is
- currently inaccessible.
-
-
-
- void
-
deleteEventually(DeleteCallback callback)
-
-
- Deletes this object from the server at some unspecified time in the future, even if Parse is
- currently inaccessible.
-
-
-
- void
-
deleteInBackground()
-
-
- Deletes this object on the server in a background thread.
getCreatedAt()
-
-
- This reports time as the server sees it, so that if you create a ParseObject, then wait a
- while, and then call save(), the creation time will be the time of the first save() call rather
- than the time the object was created locally.
getUpdatedAt()
-
-
- This reports time as the server sees it, so that if you make changes to a ParseObject, then
- wait a while, and then call save(), the updated time will be the time of the save() call rather
- than the time the object was changed locally.
-
-
-
- boolean
-
has(String key)
-
-
- Whether this object has a particular key.
registerSubclass(Class<? extends ParseObject> subclass)
-
-
- Registers a custom subclass type with the Parse SDK, enabling strong-typing of those
- ParseObjects whenever they appear.
-
-
-
- void
-
remove(String key)
-
-
- Removes a key from this object's data if it exists.
-
-
-
- void
-
removeAll(String key,
- Collection<?> values)
-
-
- Atomically removes all instances of the objects contained in a Collection from the
- array associated with a given key.
saveEventually()
-
-
- Saves this object to the server at some unspecified time in the future, even if Parse is
- currently inaccessible.
-
-
-
- void
-
saveEventually(SaveCallback callback)
-
-
- Saves this object to the server at some unspecified time in the future, even if Parse is
- currently inaccessible.
-
-
-
- void
-
saveInBackground()
-
-
- Saves this object to the server in a background thread.
Constructs a new ParseObject with no data in it. A ParseObject constructed in this way will not
- have an objectId and will not persist to the database until save() is called.
-
- Class names must be alphanumerical plus underscore, and start with a letter. It is recommended
- to name classes in CamelCaseLikeThis.
-
-
-
Parameters:
theClassName - The className for this ParseObject.
Creates a new ParseObject based upon a class name. If the class name is a special type (e.g.
- for ParseUser), then the appropriate type of ParseObject is returned.
-
-
-
Parameters:
className - The class of object to create.
-
Returns:
A new ParseObject for the given class name.
-
-
-
-
-
-create
-
-public static <T extends ParseObject> T create(Class<T> subclass)
-
-
Creates a new ParseObject based upon a subclass type. Note that the object will be created
- based upon the ParseClassName of the given subclass type. For example, calling
- create(ParseUser.class) may create an instance of a custom subclass of ParseUser.
-
-
-
Parameters:
subclass - The class of object to create.
-
Returns:
A new ParseObject based upon the class name of the given subclass type.
Registers a custom subclass type with the Parse SDK, enabling strong-typing of those
- ParseObjects whenever they appear. Subclasses must specify the ParseClassName
- annotation and have a default constructor.
-
Returns a set view of the keys contained in this object. This does not include createdAt,
- updatedAt, authData, or objectId. It does include things like username and ACL.
-
This reports time as the server sees it, so that if you make changes to a ParseObject, then
- wait a while, and then call save(), the updated time will be the time of the save() call rather
- than the time the object was changed locally.
-
-
-
-
Returns:
The last time this object was updated on the server.
This reports time as the server sees it, so that if you create a ParseObject, then wait a
- while, and then call save(), the creation time will be the time of the first save() call rather
- than the time the object was created locally.
-
-
-
-
Returns:
The first time this object was saved on the server.
-
-
-
-
-
-isDirty
-
-public boolean isDirty()
-
-
Whether any key-value pair in this object (or its children) has been added/updated/removed
- and not saved yet.
-
-
-
-
Returns:
Returns whether this object has been altered and not saved yet.
Accessor to the object id. An object id is assigned as soon as an object is saved to the
- server. The combination of a className and an objectId uniquely identifies an object in your
- application.
-
Setter for the object id. In general you do not need to use this. However, in some cases this
- can be convenient. For example, if you are serializing a ParseObject yourself and wish to
- recreate it, you can use this to recreate the ParseObject exactly.
-
ParseException - Throws an exception if the server is inaccessible.
-
-
-
-
-
-saveInBackground
-
-public final void saveInBackground(SaveCallback callback)
-
-
Saves this object to the server in a background thread. This is preferable to using save(),
- unless your code is already running from a background thread.
-
-
-
Parameters:
callback - callback.done(e) is called when the save completes.
-
-
-
-
-
-saveInBackground
-
-public final void saveInBackground()
-
-
Saves this object to the server in a background thread. Use this when you do not have code to
- run on completion of the push.
-
-
-
-
-
-
-
-
-saveEventually
-
-public final void saveEventually()
-
-
Saves this object to the server at some unspecified time in the future, even if Parse is
- currently inaccessible. Use this when you may not have a solid network connection, and don't
- need to know when the save completes. If there is some problem with the object such that it
- can't be saved, it will be silently discarded. Objects saved with this method will be stored
- locally in an on-disk cache until they can be delivered to Parse. They will be sent immediately
- if possible. Otherwise, they will be sent the next time a network connection is available.
- Objects saved this way will persist even after the app is closed, in which case they will be
- sent the next time the app is opened. If more than 10MB of data is waiting to be sent,
- subsequent calls to saveEventually or deleteEventually will cause old saves to be silently
- discarded until the connection can be re-established, and the queued objects can be saved.
-
Saves this object to the server at some unspecified time in the future, even if Parse is
- currently inaccessible. Use this when you may not have a solid network connection, and don't
- need to know when the save completes. If there is some problem with the object such that it
- can't be saved, it will be silently discarded. Objects saved with this method will be stored
- locally in an on-disk cache until they can be delivered to Parse. They will be sent immediately
- if possible. Otherwise, they will be sent the next time a network connection is available.
- Objects saved this way will persist even after the app is closed, in which case they will be
- sent the next time the app is opened. If more than 10MB of data is waiting to be sent,
- subsequent calls to saveEventually or deleteEventually will cause old saves to be silently
- discarded until the connection can be re-established, and the queued objects can be saved.
-
-
-
Parameters:
callback - - A callback which will be called if the save completes before the app exits.
-
-
-
-
-
-deleteEventually
-
-public final void deleteEventually()
-
-
Deletes this object from the server at some unspecified time in the future, even if Parse is
- currently inaccessible. Use this when you may not have a solid network connection, and don't
- need to know when the delete completes. If there is some problem with the object such that it
- can't be deleted, the request will be silently discarded. Delete requests made with this method
- will be stored locally in an on-disk cache until they can be transmitted to Parse. They will be
- sent immediately if possible. Otherwise, they will be sent the next time a network connection
- is available. Delete instructions saved this way will persist even after the app is closed, in
- which case they will be sent the next time the app is opened. If more than 10MB of commands are
- waiting to be sent, subsequent calls to deleteEventually or saveEventually will cause old
- instructions to be silently discarded until the connection can be re-established, and the
- queued objects can be saved.
-
-
-
-
-
-
-
-
-deleteEventually
-
-public final void deleteEventually(DeleteCallback callback)
-
-
Deletes this object from the server at some unspecified time in the future, even if Parse is
- currently inaccessible. Use this when you may not have a solid network connection, and don't
- need to know when the delete completes. If there is some problem with the object such that it
- can't be deleted, the request will be silently discarded. Delete requests made with this method
- will be stored locally in an on-disk cache until they can be transmitted to Parse. They will be
- sent immediately if possible. Otherwise, they will be sent the next time a network connection
- is available. Delete instructions saved this way will persist even after the app is closed, in
- which case they will be sent the next time the app is opened. If more than 10MB of commands are
- waiting to be sent, subsequent calls to deleteEventually or saveEventually will cause old
- instructions to be silently discarded until the connection can be re-established, and the
- queued objects can be saved.
-
-
-
Parameters:
callback - - A callback which will be called if the delete completes before the app exits.
Refreshes this object with the data from the server. Call this whenever you want the state of
- the object to reflect exactly what is on the server.
-
-
-
-
Throws:
-
ParseException - Throws an exception if the server is inaccessible.
-
-
-
-
-
-refreshInBackground
-
-public final void refreshInBackground(RefreshCallback callback)
-
-
Refreshes this object with the data from the server in a background thread. This is preferable
- to using refresh(), unless your code is already running from a background thread.
-
-
-
Parameters:
callback - callback.done(object, e) is called when the refresh completes.
Fetches this object with the data from the server in a background thread. This is preferable to
- using fetch(), unless your code is already running from a background thread.
-
-
-
Parameters:
callback - callback.done(object, e) is called when the fetch completes.
If this ParseObject has not been fetched (i.e. ParseObject.isDataAvailable() returns false),
- fetches this object with the data from the server.
-
-
-
-
Returns:
The fetched ParseObject.
-
Throws:
-
ParseException - Throws an exception if the server is inaccessible.
-
-
-
-
-
-fetchIfNeededInBackground
-
-public final <T extends ParseObject> void fetchIfNeededInBackground(GetCallback<T> callback)
-
-
If this ParseObject has not been fetched (i.e. ParseObject.isDataAvailable() returns false),
- fetches this object with the data from the server in a background thread. This is preferable to
- using ParseObject.fetchIfNeeded(), unless your code is already running from a background thread.
-
-
-
Parameters:
callback - callback.done(object, e) is called when the fetch completes.
Deletes this object on the server. This does not delete or destroy the object locally.
-
-
-
-
Throws:
-
ParseException - Throws an error if the object does not exist or if the internet fails.
-
-
-
-
-
-deleteInBackground
-
-public final void deleteInBackground(DeleteCallback callback)
-
-
Deletes this object on the server in a background thread. This is preferable to using delete(),
- unless your code is already running from a background thread.
-
-
-
Parameters:
callback - callback.done(e) is called when the save completes.
-
-
-
-
-
-deleteInBackground
-
-public final void deleteInBackground()
-
-
Deletes this object on the server in a background thread. Does nothing in particular when the
- save completes. Use this when you don't care if the delete works.
-
Saves each object in the provided list to the server in a background thread. This is preferable
- to using saveAll, unless your code is already running from a background thread.
-
-
-
Parameters:
objects - The objects to save.
callback - callback.done(e) is called when the save completes.
Saves each object to the server in a background thread. Does nothing in particular when the
- save completes. Use this when you don't care if the save works.
-
Atomically adds an object to the array associated with a given key, only if it is not already
- present in the array. The position of the insert is not guaranteed.
-
Atomically adds the objects contained in a Collection to the array associated with a
- given key, only adding elements which are not already present in the array. The position of the
- insert is not guaranteed.
-
Atomically removes all instances of the objects contained in a Collection from the
- array associated with a given key. To maintain consistency with the Java Collection API, there
- is no method removing all instances of a single object. Instead, you can call
- parseObject.removeAll(key, Arrays.asList(value)).
-
Access a ParseFile value. This function will not perform a network request. Unless the
- ParseFile has been downloaded (e.g. by calling ParseFile.getData()),
- ParseFile.isDataAvailable() will return false.
-
-
-
Parameters:
key - The key to access the value for.
-
Returns:
Returns null if there is no such key or if it is not a ParseFile.
-The ParsePush is a local representation of data that can be sent as a push notification.
-
- The typical workflow for sending a push notification from the client is to construct a new
- ParsePush, use the setter functions to fill it with data, and then use
- ParsePush.sendInBackground() to send it.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
ParsePush()
-
-
- Creates a new push notification.
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
- void
-
clearExpiration()
-
-
- Clears both expiration values, indicating that the notification should never expire.
-
-
-
- void
-
send()
-
-
- Sends this push notification while blocking this thread until the push notification has
- successfully reached the Parse servers.
A helper method to concisely send a push message to a query. This method is equivalent to
- ParsePush push = new ParsePush(); push.setMessage(message); push.setQuery(query);
- push.sendInBackground();
-
-
-
Parameters:
message - The message that will be shown in the notification.
query - A ParseInstallation query which specifies the recipients of a push.
A helper method to concisely send a push message to a query. This method is equivalent to
- ParsePush push = new ParsePush(); push.setMessage(message); push.setQuery(query);
- push.sendInBackground(callback);
-
-
-
Parameters:
message - The message that will be shown in the notification.
query - A ParseInstallation query which specifies the recipients of a push.
callback - callback.done(e) is called when the send completes.
A helper method to concisely send a push to a query. This method is equivalent to ParsePush
- push = new ParsePush(); push.setData(data); push.setQuery(query); push.sendInBackground();
-
-
-
Parameters:
data - The entire data of the push message. See the push guide for more details on the data
- format.
query - A ParseInstallation query which specifies the recipients of a push.
A helper method to concisely send a push to a query. This method is equivalent to ParsePush
- push = new ParsePush(); push.setData(data); push.setQuery(query);
- push.sendInBackground(callback);
-
-
-
Parameters:
data - The entire data of the push message. See the push guide for more details on the data
- format.
query - A ParseInstallation query which specifies the recipients of a push.
callback - callback.done(e) is called when the send completes.
Sets the channel on which this push notification will be sent. The channel name must start with
- a letter and contain only letters, numbers, dashes, and underscores. A push can either have
- channels or a query. Setting this will unset the query.
-
Sets the collection of channels on which this push notification will be sent. Each channel name
- must start with a letter and contain only letters, numbers, dashes, and underscores. A push can
- either have channels or a query. Setting this will unset the query.
-
Sets the query for this push for which this push notification will be sent. This query will be
- executed in the Parse cloud; this push notification will be sent to Installations which this
- query yields. A push can either have channels or a query. Setting this will unset the channels.
-
-
-
Parameters:
query - A query to which this push should target. This must be a ParseInstallation query.
-
-
-
-
-
-setExpirationTime
-
-public void setExpirationTime(long time)
-
-
Sets a UNIX epoch timestamp at which this notification should expire, in seconds (UTC). This
- notification will be sent to devices which are either online at the time the notification is
- sent, or which come online before the expiration time is reached. Because device clocks are not
- guaranteed to be accurate, most applications should instead use
- ParsePush.setExpirationTimeInterval(long).
-
Sets the time interval after which this notification should expire, in seconds. This
- notification will be sent to devices which are either online at the time the notification is
- sent, or which come online within the given number of seconds of the notification being
- received by Parse's server. An interval which is less than or equal to zero indicates that the
- message should only be sent to devices which are currently online.
-
-
-
-
-
-
-
-
-clearExpiration
-
-public void clearExpiration()
-
-
Clears both expiration values, indicating that the notification should never expire.
-
Sets the entire data of the push message. See the push guide for more details on the data
- format. This will overwrite any data specified in ParsePush.setMessage(String).
-
Sends this push notification while blocking this thread until the push notification has
- successfully reached the Parse servers. Typically, you should use ParsePush.sendInBackground()
- instead of this, unless you are managing your own threading.
-
-
-
-
Throws:
-
ParseException - Throws an exception if the server is inaccessible.
Sends this push notification in a background thread. This is preferable to using
- send(), unless your code is already running from a background thread.
-
-
-
Parameters:
callback - callback.done(e) is called when the send completes.
-
-
-
-
-
-sendInBackground
-
-public void sendInBackground()
-
-
Sends this push notification in a background thread. Use this when you do not have code to run
- on completion of the push.
-
Returns an array containing the constants of this enum type, in
-the order they are declared. This method may be used to iterate
-over the constants as follows:
-
-for (ParseQuery.CachePolicy c : ParseQuery.CachePolicy.values())
- System.out.println(c);
-
-
-
-
-
Returns:
an array containing the constants of this enum type, in
-the order they are declared
Returns the enum constant of this type with the specified name.
-The string must match exactly an identifier used to declare an
-enum constant in this type. (Extraneous whitespace characters are
-not permitted.)
-
-
-
Parameters:
name - the name of the enum constant to be returned.
-
-The ParseQuery class defines a query that is used to fetch ParseObjects. The most common use case
- is finding all objects that match a query through the findInBackground
- method, using a FindCallback. For example, this sample code fetches all objects of class
- "MyClass". It calls a different function depending on whether the fetch succeeded or
- not.
-
-
-
- A ParseQuery can also be used to retrieve a single object whose id is known, through the
- getInBackground method, using a GetCallback. For example, this
- sample code fetches an object of class "MyClass" and id myId. It calls
- a different function depending on whether the fetch succeeded or not.
-
-
- ParseQuery<ParseObject> query = ParseQuery.getQuery("MyClass");
- query.getInBackground(myId, new GetCallback<ParseObject>() {
- public void done(ParseObject object, ParseException e) {
- if (e == null) {
- objectWasRetrievedSuccessfully(object);
- } else {
- objectRetrievalFailed();
- }
- }
- }
-
-
- A ParseQuery can also be used to count the number of objects that match the query without
- retrieving all of those objects. For example, this sample code counts the number of objects of
- the class "MyClass".
-
-
-
- Using the callback methods is usually preferred because the network operation will not block the
- calling thread. However, in some cases it may be easier to use the find,
- get or count calls, which do block the calling thread. For example,
- if your application has already spawned a background task to perform work, that background task
- could use the blocking calls and avoid the code complexity of callbacks.
-
getFirst()
-
-
- Retrieves at most one ParseObject that satisfies this query.
-
-
-
- void
-
getFirstInBackground(GetCallback<T> callback)
-
-
- Retrieves at most one ParseObject that satisfies this query from the server in a background
- thread.
-
-
-
- void
-
getInBackground(String objectId,
- GetCallback<T> callback)
-
-
- Constructs a ParseObject whose id is already known by fetching data from the server in a
- background thread.
whereContainedIn(String key,
- Collection<? extends Object> values)
-
-
- Add a constraint to the query that requires a particular key's value to be contained in the
- provided list of values.
whereContainsAll(String key,
- Collection<?> values)
-
-
- Add a constraint to the query that requires a particular key's value match another ParseQuery.
whereDoesNotMatchKeyInQuery(String key,
- String keyInQuery,
- ParseQuery<?> query)
-
-
- Add a constraint to the query that requires a particular key's value does not match any value
- for a key in the results of another ParseQuery.
whereDoesNotMatchQuery(String key,
- ParseQuery<?> query)
-
-
- Add a constraint to the query that requires a particular key's value does not match another
- ParseQuery.
whereEqualTo(String key,
- Object value)
-
-
- Add a constraint to the query that requires a particular key's value to be equal to the
- provided value.
whereGreaterThan(String key,
- Object value)
-
-
- Add a constraint to the query that requires a particular key's value to be greater than the
- provided value.
whereGreaterThanOrEqualTo(String key,
- Object value)
-
-
- Add a constraint to the query that requires a particular key's value to be greater than or
- equal to the provided value.
whereLessThan(String key,
- Object value)
-
-
- Add a constraint to the query that requires a particular key's value to be less than the
- provided value.
whereLessThanOrEqualTo(String key,
- Object value)
-
-
- Add a constraint to the query that requires a particular key's value to be less than or equal
- to the provided value.
whereMatches(String key,
- String regex)
-
-
- Add a regular expression constraint for finding string values that match the provided regular
- expression.
whereMatchesKeyInQuery(String key,
- String keyInQuery,
- ParseQuery<?> query)
-
-
- Add a constraint to the query that requires a particular key's value matches a value for a key
- in the results of another ParseQuery
whereMatchesQuery(String key,
- ParseQuery<?> query)
-
-
- Add a constraint to the query that requires a particular key's value match another ParseQuery.
whereNotContainedIn(String key,
- Collection<? extends Object> values)
-
-
- Add a constraint to the query that requires a particular key's value not be contained in the
- provided list of values.
whereNotEqualTo(String key,
- Object value)
-
-
- Add a constraint to the query that requires a particular key's value to be not equal to the
- provided value.
whereWithinGeoBox(String key,
- ParseGeoPoint southwest,
- ParseGeoPoint northeast)
-
-
- Add a constraint to the query that requires a particular key's coordinates be contained within
- a given rectangular geographic bounding box.
whereWithinKilometers(String key,
- ParseGeoPoint point,
- double maxDistance)
-
-
- Add a proximity based constraint for finding objects with key point values near the point given
- and within the maximum distance given.
whereWithinMiles(String key,
- ParseGeoPoint point,
- double maxDistance)
-
-
- Add a proximity based constraint for finding objects with key point values near the point given
- and within the maximum distance given.
whereWithinRadians(String key,
- ParseGeoPoint point,
- double maxDistance)
-
-
- Add a proximity based constraint for finding objects with key point values near the point given
- and within the maximum distance given.
Constructs a query for a ParseObject subclass type. A default query with no further parameters
- will retrieve all ParseObjects of the provided class.
-
-
-
Parameters:
subclass - The ParseObject subclass type to retrieve.
Creates a new query for the given ParseObject subclass type. A default query with no further
- parameters will retrieve all ParseObjects of the provided class.
-
-
-
Parameters:
subclass - The ParseObject subclass type to retrieve.
-
Creates a new query for the given class name. A default query with no further parameters will
- retrieve all ParseObjects of the provided class name.
-
-
-
Parameters:
className - The name of the class to retrieve ParseObjects for.
-
Retrieves at most one ParseObject that satisfies this query. Uses the network and/or the cache,
- depending on the cache policy. This mutates the ParseQuery.
-
-
-
-
Returns:
A ParseObject obeying the conditions set in this query, or null if none found.
-
Throws:
-
ParseException - Throws a ParseException if no object is found.
Retrieves a list of ParseObjects that satisfy this query from the server in a background
- thread. This is preferable to using find(), unless your code is already running in a background
- thread.
-
-
-
Parameters:
callback - callback.done(objectList, e) is called when the find completes.
Retrieves at most one ParseObject that satisfies this query from the server in a background
- thread. This is preferable to using getFirst(), unless your code is already running in a
- background thread. This mutates the ParseQuery.
-
-
-
Parameters:
callback - callback.done(object, e) is called when the find completes.
Constructs a ParseObject whose id is already known by fetching data from the server. This
- mutates the ParseQuery.
-
-
-
Parameters:
objectId - Object id of the ParseObject to fetch.
-
Throws:
-
ParseException - Throws an exception when there is no such object or when the network connection
- fails.
-
-
-
-
-
-hasCachedResult
-
-public boolean hasCachedResult()
-
-
Returns whether or not this query has a cached result.
-
-
-
-
-
-
-
-
-clearCachedResult
-
-public void clearCachedResult()
-
-
Removes the previously cached result for this query, forcing the next find() to hit the
- network. If there is no cached result for this query, then this is a no-op.
-
Constructs a ParseObject whose id is already known by fetching data from the server in a
- background thread. This does not use caching. This is preferable to using the
- ParseObject(className, objectId) constructor, unless your code is already running in a
- background thread.
-
-
-
Parameters:
objectId - Object id of the ParseObject to fetch.
callback - callback.done(object, e) will be called when the fetch completes.
Add a constraint to the query that requires a particular key's value match another ParseQuery.
- This only works on keys whose values are ParseObjects or lists of ParseObjects. Add a
- constraint to the query that requires a particular key's value to contain every one of the
- provided list of values.
-
-
-
Parameters:
key - The key to check. This key's value must be an array.
Add a constraint to the query that requires a particular key's value match another ParseQuery.
- This only works on keys whose values are ParseObjects or lists of ParseObjects.
-
Add a constraint to the query that requires a particular key's value does not match another
- ParseQuery. This only works on keys whose values are ParseObjects or lists of ParseObjects.
-
-
-
Parameters:
key - The key to check.
query - The query that the value should not match
-
Add a proximity based constraint for finding objects with key point values near the point given
- and within the maximum distance given. Radius of earth used is 3958.8 miles.
-
-
-
Parameters:
key - The key that the ParseGeoPoint is stored in.
point - The reference ParseGeoPoint that is used.
maxDistance - Maximum distance (in miles) of results to return.
-
Add a proximity based constraint for finding objects with key point values near the point given
- and within the maximum distance given. Radius of earth used is 6371.0 kilometers.
-
-
-
Parameters:
key - The key that the ParseGeoPoint is stored in.
point - The reference ParseGeoPoint that is used.
maxDistance - Maximum distance (in kilometers) of results to return.
-
Add a constraint for finding string values that start with a provided string. This query will
- use the backend index, so it will be fast even for large datasets.
-
-
-
Parameters:
key - The key that the string to match is stored in.
prefix - The substring that the value must start with.
-
Restrict the fields of returned ParseObjects to only include the provided keys. If this is
- called multiple times, then all of the keys specified in each of the calls will be included.
-
Also sorts the results in descending order by the given key. The previous sort keys have
- precedence over this key.
-
-
-
Parameters:
key - The key to order by
-
Returns:
Returns the query so you can chain this call.
-
-
-
-
-
-setLimit
-
-public void setLimit(int newLimit)
-
-
Controls the maximum number of results that are returned. Setting a negative limit denotes
- retrieval without a limit. The default limit is 100, with a maximum of 1000 results being
- returned at a time.
-
-
-
Parameters:
newLimit -
-
-
-
-
-
-setTrace
-
-public void setTrace(boolean shouldTrace)
-
-
Turn on performance tracing of finds. If performance tracing is already turned on this does
- nothing. In general you don't need to call trace.
-
-
-
-
-
-
-
-
-getLimit
-
-public int getLimit()
-
-
Accessor for the limit.
-
-
-
-
-
-
-
-
-setSkip
-
-public void setSkip(int newSkip)
-
-
Controls the number of results to skip before returning any results. This is useful for
- pagination. Default is to skip zero results.
-
-A ParseQueryAdapter handles the fetching of objects by page, and displaying objects as views in a
- ListView.
-
- This class is highly configurable, but also intended to be easy to get started with. See below
- for an example of using a ParseQueryAdapter inside an Activity's onCreate:
-
-
- final ParseQueryAdapter adapter = new ParseQueryAdapter(this, "TestObject");
- adapter.setTextKey("name");
-
- ListView listView = (ListView) findViewById(R.id.listview);
- listView.setAdapter(adapter);
-
-
- Below, an example showing off the level of configuration available with this class:
-
-
- // Instantiate a QueryFactory to define the ParseQuery to be used for fetching items in this
- // Adapter.
- ParseQueryAdapter.QueryFactory<ParseObject> factory =
- new ParseQueryAdapter.QueryFactory<ParseObject>() {
- public ParseQuery create() {
- ParseQuery query = new ParseQuery("Customer");
- query.whereEqualTo("activated", true);
- query.orderByDescending("moneySpent");
- return query;
- }
- };
-
- // Pass the factory into the ParseQueryAdapter's constructor.
- ParseQueryAdapter<ParseObject> adapter = new ParseQueryAdapter<ParseObject>(this, factory);
- adapter.setTextKey("name");
-
- // Perhaps set a callback to be fired upon successful loading of a new set of ParseObjects.
- adapter.addOnQueryLoadListener(new OnQueryLoadListener<ParseObject>() {
- public void onLoading() {
- // Trigger any "loading" UI
- }
-
- public void onLoaded(List<ParseObject> objects, ParseException e) {
- // Execute any post-loading logic, hide "loading" UI
- }
- });
-
- // Attach it to your ListView, as in the example above
- ListView listView = (ListView) findViewById(R.id.listview);
- listView.setAdapter(adapter);
-
getNextPageView(View v,
- ViewGroup parent)
-
-
- Override this method to customize the "Load Next Page" cell, visible when pagination is turned
- on and there may be more results to display.
getView(int position,
- View convertView,
- ViewGroup parent)
-
-
- The base class, Adapter, defines a getView method intended to display data at
- the specified position in the data set.
Constructs a ParseQueryAdapter. Given a ParseObject subclass, this adapter will fetch and
- display all ParseObjects of the specified class, ordered by creation time.
-
-
-
Parameters:
context - The activity utilizing this adapter.
clazz - The ParseObject subclass type to fetch and display.
Constructs a ParseQueryAdapter. Given a ParseObject subclass, this adapter will fetch and
- display all ParseObjects of the specified class, ordered by creation time.
-
-
-
Parameters:
context - The activity utilizing this adapter.
className - The name of the Parse class of ParseObjects to display.
Constructs a ParseQueryAdapter. Given a ParseObject subclass, this adapter will fetch and
- display all ParseObjects of the specified class, ordered by creation time.
-
-
-
Parameters:
context - The activity utilizing this adapter.
clazz - The ParseObject subclass type to fetch and display.
itemViewResource - A resource id that represents the layout for an item in the AdapterView.
-
-
-
-
-ParseQueryAdapter
-
-public ParseQueryAdapter(Context context,
- String className,
- int itemViewResource)
-
-
Constructs a ParseQueryAdapter. Given a ParseObject subclass, this adapter will fetch and
- display all ParseObjects of the specified class, ordered by creation time.
-
-
-
Parameters:
context - The activity utilizing this adapter.
className - The name of the Parse class of ParseObjects to display.
itemViewResource - A resource id that represents the layout for an item in the AdapterView.
Clears the table and loads the first page of objects asynchronously. This method is called
- automatically when this Adapter is attached to an AdapterView.
-
- loadObjects() should only need to be called if ParseQueryAdapter.setAutoload(boolean) is set to
- false.
-
-
-
-
-
-
-
-
-loadNextPage
-
-public void loadNextPage()
-
-
Loads the next page of objects, appends to table, and notifies the UI that the model has
- changed.
-
-
-
-
-
-
-
-
-getCount
-
-public int getCount()
-
-
Overrides Adapter's ParseQueryAdapter.getCount() method to return the number of cells to
- display. If pagination is turned on, this count will include an extra +1 count for the
- pagination cell row.
-
-
-
-
Returns:
The number of cells to be displayed by the ListView.
Override this method to customize each cell given a ParseObject.
-
- If a view is not provided, a default view will be created based upon
- android.R.layout.activity_list_item.
-
- This method expects a TextView with id android.R.id.text1 in your object views.
- If ParseQueryAdapter.setImageKey(String) was used, this method also expects an ImageView with id
- android.R.id.icon.
-
- This method displays the text value specified by the text key (set via
- ParseQueryAdapter.setTextKey(String)) and an image (described by a ParseFile, under the key set
- via ParseQueryAdapter.setImageKey(String)) if applicable. If the text key is not set, the value for
- ParseObject.getObjectId() will be displayed instead.
-
-
-
Parameters:
object - The ParseObject associated with this item.
v - The View associated with this row. This view, if non-null, is being recycled
- and intended to be used for displaying this item.
parent - The parent that this view will eventually be attached to
-
Returns:
The customized view displaying the ParseObject's information.
Override this method to customize the "Load Next Page" cell, visible when pagination is turned
- on and there may be more results to display.
-
- This method expects a TextView with id android.R.id.text1.
-
-
-
Parameters:
v - The view object associated with this row + type (a "Next Page" view, instead of an
- "Item" view).
parent - The parent that this view will eventually be attached to
-
Returns:
The view object that allows the user to paginate.
-
-
-
-
-
-getView
-
-public final ViewgetView(int position,
- View convertView,
- ViewGroup parent)
Sets a placeholder image to be used when fetching data for each item in the AdapterView
- . Will not be used if ParseQueryAdapter.setImageKey(String) was not used to define which images to
- display.
-
-
-
Parameters:
placeholder - A Drawable to be displayed while the remote image data is being fetched. This
- value can be null, and ImageViews in this AdapterView will simply be blank
- while data is being fetched.
-
-
-
-
-
-setAutoload
-
-public void setAutoload(boolean autoload)
-
-
Enable or disable the automatic loading of results upon attachment to an AdapterView.
- Defaults to true.
-
-A class that is used to access all of the children of a many-to-many relationship. Each instance
- of Parse.Relation is associated with a particular parent object and key.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
- void
-
add(T object)
-
-
- Adds an object to this relation.
-Represents a Role on the Parse server. ParseRoles represent groupings of
- ParseUsers for the purposes of granting permissions (e.g. specifying a ParseACL
- for a ParseObject). Roles are specified by their sets of child users and child roles, all
- of which are granted any permissions that the parent role has.
-
- Roles must have a name (which cannot be changed after creation of the role), and must specify an
- ACL.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
ParseRole(String name)
-
-
- Constructs a new ParseRole with the given name.
-
-
-
ParseRole(String name,
- ParseACL acl)
-
-
- Constructs a new ParseRole with the given name.
Sets the name for a role. This value must be set before the role has been saved to the server,
- and cannot be set once the role has been saved.
-
- A role's name can only contain alphanumeric characters, _, -, and spaces.
-
Gets the ParseRelation for the ParseUsers that are direct children of this
- role. These users are granted any privileges that this role has been granted (e.g. read or
- write access through ACLs). You can add or remove users from the role through this relation.
-
-
-
-
Returns:
the relation for the users belonging to this role.
Gets the ParseRelation for the ParseRoles that are direct children of this
- role. These roles' users are granted any privileges that this role has been granted (e.g. read
- or write access through ACLs). You can add or remove child roles from this role through this
- relation.
-
-
-
-
Returns:
the relation for the roles belonging to this role.
link(ParseUser user,
- Context context,
- SaveCallback callback)
-
-
- Links a ParseUser to a Twitter account, allowing you to use Twitter for authentication, and
- providing access to Twitter data for the user.
link(ParseUser user,
- String twitterId,
- String screenName,
- String authToken,
- String authTokenSecret,
- SaveCallback callback)
-
-
- Links a ParseUser to a Twitter account, allowing you to use Twitter for authentication, and
- providing access to Twitter data for the user.
-
-
-
-static void
-
logIn(Context context,
- LogInCallback callback)
-
-
- Logs in a ParseUser using Twitter for authentication.
-
-
-
-static void
-
logIn(String twitterId,
- String screenName,
- String authToken,
- String authTokenSecret,
- LogInCallback callback)
-
-
- Logs in a ParseUser using Twitter for authentication.
-
-
-
-static void
-
unlink(ParseUser user)
-
-
- Unlinks a user from a Twitter account.
Links a ParseUser to a Twitter account, allowing you to use Twitter for authentication, and
- providing access to Twitter data for the user. A dialog will be shown to the user for Twitter
- authentication.
-
-
-
Parameters:
user - The user to link to a Twitter account.
context - An Android context from which the login dialog can be launched.
callback - Callback for notifying the calling application when the Twitter authentication has
- completed, failed, or been canceled.
Links a ParseUser to a Twitter account, allowing you to use Twitter for authentication, and
- providing access to Twitter data for the user. This method allows you to handle getting the
- auth tokens for your users, rather than delegating to the provided dialog log-in.
-
-
-
Parameters:
user - The user to link to a Twitter account.
twitterId - The user's Twitter ID.
screenName - The user's Twitter screen name.
authToken - The auth token for the session.
authTokenSecret - The auth token secret for the session.
callback - Callback for notifying that the authentication data has been saved to the ParseUser.
Logs in a ParseUser using Twitter for authentication. If a user for the given Twitter
- credentials does not already exist, a new user will be created. This method allows you to
- handle getting the auth tokens for your users, rather than delegating to the provided dialog
- log-in.
-
-
-
Parameters:
twitterId - The user's Twitter ID.
screenName - The user's Twitter screen name.
authToken - The auth token for the session.
authTokenSecret - The auth token secret for the session.
callback - Callback for notifying that the authentication data has been saved to the ParseUser.
Logs in a ParseUser using Twitter for authentication. If a user for the given Twitter
- credentials does not already exist, a new user will be created. A dialog will be shown to the
- user for Twitter authentication.
-
-
-
Parameters:
context - An Android context from which the login dialog can be launched.
callback - Callback for notifying the calling application when the Twitter authentication has
- completed, failed, or been canceled.
isAuthenticated()
-
-
- Whether the ParseUser has been authenticated on this device.
-
-
-
- boolean
-
isNew()
-
-
- Indicates whether this ParseUser was created during this session through a call to
- ParseUser.signUp() or by logging in with a linked service such as Facebook.
Constructs a new ParseUser with no data in it. A ParseUser constructed in this way will not
- have an objectId and will not persist to the database until ParseUser.signUp() is called.
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-isAuthenticated
-
-public boolean isAuthenticated()
-
-
Whether the ParseUser has been authenticated on this device. This will be true if the ParseUser
- was obtained via a logIn or signUp method. Only an authenticated ParseUser can be saved (with
- altered attributes) and deleted.
-
Signs up a new user. You should call this instead of ParseObject.save() for new ParseUsers. This
- will create a new ParseUser on the server, and also persist the session on disk so that you can
- access the user using ParseUser.getCurrentUser().
-
- A username and password must be set before calling signUp.
-
Signs up a new user. You should call this instead of ParseObject.save() for new ParseUsers. This
- will create a new ParseUser on the server, and also persist the session on disk so that you can
- access the user using ParseUser.getCurrentUser().
-
- A username and password must be set before calling signUp.
-
-
- This is preferable to using ParseUser.signUp(), unless your code is already running from a
- background thread.
-
-
-
Parameters:
callback - callback.done(user, e) is called when the signUp completes.
-
Throws:
-
ParseException - Throws an exception if the server is inaccessible, or if the username has already
- been taken.
Logs in a user with a username and password. On success, this saves the session to disk, so you
- can retrieve the currently logged in user using ParseUser.getCurrentUser()
-
Logs in a user with a username and password. On success, this saves the session to disk, so you
- can retrieve the currently logged in user using ParseUser.getCurrentUser()
-
Authorize a user with a session token. On success, this saves the session to disk, so you
- can retrieve the currently logged in user using ParseUser.getCurrentUser()
-
Authorize a user with a session token. On success, this saves the session to disk, so you
- can retrieve the currently logged in user using ParseUser.getCurrentUser()
-
This retrieves the currently logged in ParseUser with a valid session, either from memory or
- disk if necessary.
-
-
-
-
Returns:
The currently logged in ParseUser
-
-
-
-
-
-logOut
-
-public static void logOut()
-
-
Logs out the currently logged in user session. This will remove the session from disk, log out
- of linked services, and future calls to ParseUser.getCurrentUser() will return null.
-
Requests a password reset email to be sent to the specified email address associated with the
- user account. This email allows the user to securely reset their password on the Parse site.
-
Requests a password reset email to be sent in a background thread to the specified email
- address associated with the user account. This email allows the user to securely reset their
- password on the Parse site.
-
- This is preferable to using requestPasswordReset(), unless your code is already running from a
- background thread.
-
-
-
-
Parameters:
email - The email address associated with the user that forgot their password.
callback - callback.done(e) is called when the request completes.
ParseException - Throws an exception if the server is inaccessible.
-
-
-
-
-
-isNew
-
-public boolean isNew()
-
-
Indicates whether this ParseUser was created during this session through a call to
- ParseUser.signUp() or by logging in with a linked service such as Facebook.
-
-
-
-
-
-
-
-
-enableAutomaticUser
-
-public static void enableAutomaticUser()
-
-
Enables automatic creation of anonymous users. After calling this method,
- ParseUser.getCurrentUser() will always have a value. The user will only be created on
- the server once the user has been saved, or once an object with a relation to that user or an
- ACL that refers to the user has been saved. Note: saveEventually will not work if an item being
- saved has a relation to an automatic user that has never been saved.
-
-A service to listen for push notifications. This operates in the same process as the parent
- application.
-
- The PushService can listen to pushes from two different sources: Google Cloud Messaging (GCM) or
- the Parse Push Notification Service (PPNS). Parse will inspect your application's manifest at
- runtime and determine which service to use for push. We recommend using GCM for push on devices
- that have Google Play Store support. PPNS support is provided for apps that want to avoid a
- dependency on the Google Play Store, and for devices (like Kindles) which do not have Play Store
- support.
-
- To configure the PushService for GCM, ensure these permission declarations are present in your
- AndroidManifest.xml as children of the <manifest> element:
-
-
-
- Replace YOUR_PACKAGE_NAME in the declarations above with your application's package name. Also,
- make sure that com.parse.GcmBroadcastReceiver and com.parse.PushService are declared as children
- of the <application> element:
-
-
-
- Again, replace YOUR_PACKAGE_NAME with your application's package name.
-
- To configure the PushService for PPNS, ensure these permission declarations are present in your
- AndroidManifest.xml as children of the <manifest> element:
-
-
-
- Also, make sure that com.parse.ParseBroadcastReceiver and com.parse.PushService are declared as
- children of the <application> element:
-
- <service android:name="com.parse.PushService" />
- <receiver android:name="com.parse.ParseBroadcastReceiver">
- <intent-filter>
- <action android:name="android.intent.action.BOOT_COMPLETED" />
- <action android:name="android.intent.action.USER_PRESENT" />
- </intent-filter>
- </receiver>
-
- Note that you can configure the push service for both GCM and PPNS by adding all the declarations
- above to your application's manifest. In this case, Parse will use GCM on devices with Play
- Store support and fall back to using PPNS on devices without Play Store support.
-
- Once push notifications are configured in the manifest, you can subscribe to a push channel by
- calling:
-
-
-
- When the client receives a push message, a notification will appear in the system tray. When the
- user taps the notification, they will enter the application through a new instance of
- YourActivity.
-
subscribe(Context context,
- String channel,
- Class<? extends Activity> cls)
-
-
- Helper function to subscribe to push notifications with the default application icon.
-
-
-
-static void
-
subscribe(Context context,
- String channel,
- Class<? extends Activity> cls,
- int icon)
-
-
- Call this function when the user should be subscribed to a new push channel.
Helper function to subscribe to push notifications with the default application icon.
-
-
-
Parameters:
context - This is used to access local storage to cache the subscription, so it must currently
- be a viable context.
channel - A string identifier that determines which messages will cause a push notification to
- be sent to this client. The channel name must start with a letter and contain only
- letters, numbers, dashes, and underscores.
cls - This should be a subclass of Activity. An instance of this Activity is started when
- the user responds to this push notification. If you are not sure what to use here,
- just use your application's main Activity subclass.
-
Call this function when the user should be subscribed to a new push channel. When push
- notifications are sent out on this channel subsequently, this device will display a "toast"
- notification in the system tray. This function returns immediately, even when there is no
- internet access. In that case the subscription is cached and when internet access is next
- available the client will inform the server of its subscription. This starts a PushService
- running in the background that will not permanently terminate as long as the user is subscribed
- to some channel, unless the application is uninstalled.
-
-
-
Parameters:
context - This is used to access local storage to cache the subscription, so it must currently
- be a viable context.
channel - A string identifier that determines which messages will cause a push notification to
- be sent to this client. The channel name must start with a letter and contain only
- letters, numbers, dashes, and underscores.
cls - This should be a subclass of Activity. An instance of this Activity is started when
- the user responds to this push notification. If you are not sure what to use here,
- just use your application's main Activity subclass.
Cancels a previous call to subscribe. If the user is not subscribed to this channel, this is a
- no-op. This call does not require internet access. It returns without blocking.
-
-
-
Parameters:
context - A currently viable Context.
channel - The string defining the channel to unsubscribe from.
Provides a default Activity class to handle pushes. Setting a default allows your program to
- handle pushes that aren't registered with a subscribe call. This can happen when your
- application changes its subscriptions directly through the ParseInstallation or via
- push-to-query.
-
-
-
Parameters:
context - This is used to access local storage to cache the subscription, so it must currently
- be a viable context.
cls - This should be a subclass of Activity. An instance of this Activity is started when
- the user responds to this push notification. If you are not sure what to use here,
- just use your application's main Activity subclass.
Provides a default Activity class to handle pushes. Setting a default allows your program to
- handle pushes that aren't registered with a subscribe call. This can happen when your
- application changes its subscriptions directly through the ParseInstallation or via
- push-to-query.
-
-
-
Parameters:
context - This is used to access local storage to cache the subscription, so it must currently
- be a viable context.
cls - This should be a subclass of Activity. An instance of this Activity is started when
- the user responds to this push notification. If you are not sure what to use here,
- just use your application's main Activity subclass.
Accesses the current set of channels for which the current installation is subscribed. It is
- important to remember that the device may receive pushes by means other than channels. This
- method returns the local cache, so it returns without blocking on network IO. In rare
- circumstances this may be stale, but only after the installation was edited via the REST API
- using the master key.
-
-
-
Parameters:
context - A currently viable Context.
-
Returns:
A set containing all of the channels this application is currently subscribed to.
-A RefreshCallback is used to run code after refresh is used to update a ParseObject in a
- background thread.
-
- The easiest way to use a RefreshCallback is through an anonymous inner class. Override the
- done function to specify what the callback should do after the refresh is complete.
- The done function will be run in the UI thread, while the refresh happens in a
- background thread. This ensures that the UI does not freeze while the refresh happens.
-
- For example, this sample code refreshes an object of class "MyClass" and id
- myId. It calls a different function depending on whether the refresh succeeded or
- not.
-
-A RequestPasswordResetCallback is used to run code requesting a password reset for a user.
-
- The easiest way to use a RequestPasswordResetCallback is through an anonymous inner class.
- Override the done function to specify what the callback should do after the request
- is complete. The done function will be run in the UI thread, while the request
- happens in a background thread. This ensures that the UI does not freeze while the request
- happens.
-
- For example, this sample code requests a password reset for a user and calls a different function
- depending on whether the request succeeded or not.
-
-
-
- ParseUser.requestPasswordResetInBackground("forgetful@example.com",
- new RequestPasswordResetCallback() {
- public void done(ParseException e) {
- if (e == null) {
- requestedSuccessfully();
- } else {
- requestDidNotSucceed();
- }
- }
- });
-
-A SaveCallback is used to run code after saving a ParseObject in a background thread.
-
- The easiest way to use a SaveCallback is through an anonymous inner class. Override the
- done function to specify what the callback should do after the save is complete. The
- done function will be run in the UI thread, while the save happens in a background
- thread. This ensures that the UI does not freeze while the save happens.
-
- For example, this sample code saves the object myObject and calls a different
- function depending on whether the save succeeded or not.
-
-A SendCallback is used to run code after sending a ParsePush in a background thread.
-
- The easiest way to use a SendCallback is through an anonymous inner class. Override the
- done function to specify what the callback should do after the send is complete. The
- done function will be run in the UI thread, while the send happens in a background
- thread. This ensures that the UI does not freeze while the send happens.
-
- For example, this sample code sends the message "Hello world" on the
- "hello" channel and logs whether the send succeeded.
-
-A SignUpCallback is used to run code after signing up a ParseUser in a background thread.
-
- The easiest way to use a SignUpCallback is through an anonymous inner class. Override the
- done function to specify what the callback should do after the save is complete. The
- done function will be run in the UI thread, while the signup happens in a background
- thread. This ensures that the UI does not freeze while the signup happens.
-
- For example, this sample code signs up the object myUser and calls a different
- function depending on whether the signup succeeded or not.
-
ParseObject.deleteEventually(DeleteCallback callback)
-
-
- Deletes this object from the server at some unspecified time in the future, even if Parse is
- currently inaccessible.
ParseObject.fetchAllInBackground(List<T> objects,
- FindCallback<T> callback)
-
-
- Fetches all the objects in the provided list in the background
-
-
-
- void
-
ParseQuery.findInBackground(FindCallback<T> callback)
-
-
- Retrieves a list of ParseObjects that satisfy this query from the server in a background
- thread.
ParseObject.fetchInBackground(GetCallback<T> callback)
-
-
- Fetches this object with the data from the server in a background thread.
-
-
-
- void
-
ParseQuery.getFirstInBackground(GetCallback<T> callback)
-
-
- Retrieves at most one ParseObject that satisfies this query from the server in a background
- thread.
-
-
-
- void
-
ParseQuery.getInBackground(String objectId,
- GetCallback<T> callback)
-
-
- Constructs a ParseObject whose id is already known by fetching data from the server in a
- background thread.
ParseGeoPoint.getCurrentLocationInBackground(long timeout,
- Criteria criteria,
- LocationCallback callback)
-
-
- Fetches the user's current location and returns a new ParseGeoPoint via the provided
- LocationCallback.
-
-
-
-static void
-
ParseGeoPoint.getCurrentLocationInBackground(long timeout,
- LocationCallback callback)
-
-
- Fetches the user's current location and returns a new ParseGeoPoint via the provided
- LocationCallback.
ParseFacebookUtils.logIn(Collection<String> permissions,
- Activity activity,
- int activityCode,
- LogInCallback callback)
-
-
- Logs in a ParseUser using Facebook for authentication.
-
-
-
-static void
-
ParseFacebookUtils.logIn(Collection<String> permissions,
- Activity activity,
- LogInCallback callback)
-
-
- Logs in a user using the default activity code if single sign-on is enabled.
-
-
-
-static void
-
ParseTwitterUtils.logIn(Context context,
- LogInCallback callback)
-
-
- Logs in a ParseUser using Twitter for authentication.
-
-
-
-static void
-
ParseAnonymousUtils.logIn(LogInCallback callback)
-
-
- Creates an anonymous user.
-
-
-
-static void
-
ParseFacebookUtils.logIn(String facebookId,
- String accessToken,
- Date expirationDate,
- LogInCallback callback)
-
-
- Logs in a ParseUser using Facebook for authentication.
-
-
-
-static void
-
ParseTwitterUtils.logIn(String twitterId,
- String screenName,
- String authToken,
- String authTokenSecret,
- LogInCallback callback)
-
-
- Logs in a ParseUser using Twitter for authentication.
ParseObject.setACL(ParseACL acl)
-
-
- Set the ParseACL governing this object.
-
-
-
-static void
-
ParseACL.setDefaultACL(ParseACL acl,
- boolean withAccessForCurrentUser)
-
-
- Sets a default ACL that will be applied to all ParseObjects when they are created.
CountCallback.done(int count,
- ParseException e)
-
-
- Override this function with the code you want to run after the count is complete.
-
-
-
-abstract void
-
FindCallback.done(List<T> objects,
- ParseException e)
-
-
- Override this function with the code you want to run after the fetch is complete.
-
-
-
-abstract void
-
SignUpCallback.done(ParseException e)
-
-
- Override this function with the code you want to run after the signUp is complete.
-
-
-
-abstract void
-
SendCallback.done(ParseException e)
-
-
- Override this function with the code you want to run after the send is complete.
-
-
-
-abstract void
-
SaveCallback.done(ParseException e)
-
-
- Override this function with the code you want to run after the save is complete.
-
-
-
-abstract void
-
RequestPasswordResetCallback.done(ParseException e)
-
-
- Override this function with the code you want to run after the request is complete.
-
-
-
-abstract void
-
DeleteCallback.done(ParseException e)
-
-
- Override this function with the code you want to run after the delete is complete.
-
-
-
-abstract void
-
LocationCallback.done(ParseGeoPoint geoPoint,
- ParseException e)
-
-
- Override this function with the code you want to run after the location fetch is complete.
-
-
-
-abstract void
-
RefreshCallback.done(ParseObject object,
- ParseException e)
-
-
- Override this function with the code you want to run after the save is complete.
-
-
-
-abstract void
-
LogInCallback.done(ParseUser user,
- ParseException e)
-
-
- Override this function with the code you want to run after the save is complete.
-
-
-
-abstract void
-
GetCallback.done(T object,
- ParseException e)
-
-
- Override this function with the code you want to run after the fetch is complete.
-
-
-
-abstract void
-
FunctionCallback.done(T object,
- ParseException e)
-
-
- Override this function with the code you want to run after the cloud function is complete.
ParseUser.logIn(String username,
- String password)
-
-
- Logs in a user with a username and password.
-
-
-
- void
-
ParseObject.refresh()
-
-
- Refreshes this object with the data from the server.
-
-
-
-static void
-
ParseUser.requestPasswordReset(String email)
-
-
- Requests a password reset email to be sent to the specified email address associated with the
- user account.
-
-
-
- void
-
ParseObject.save()
-
-
- Saves this object to the server.
-
-
-
- void
-
ParseFile.save()
-
-
- Saves the file to the Parse cloud synchronously.
-
-
-
-static void
-
ParseObject.saveAll(List<ParseObject> objects)
-
-
- Saves each object in the provided list.
-
-
-
- void
-
ParsePush.send()
-
-
- Sends this push notification while blocking this thread until the push notification has
- successfully reached the Parse servers.
LocationCallback.done(ParseGeoPoint geoPoint,
- ParseException e)
-
-
- Override this function with the code you want to run after the location fetch is complete.
ParseQuery.whereNear(String key,
- ParseGeoPoint point)
-
-
- Add a proximity based constraint for finding objects with key point values near the point
- given.
ParseQuery.whereWithinGeoBox(String key,
- ParseGeoPoint southwest,
- ParseGeoPoint northeast)
-
-
- Add a constraint to the query that requires a particular key's coordinates be contained within
- a given rectangular geographic bounding box.
ParseQuery.whereWithinKilometers(String key,
- ParseGeoPoint point,
- double maxDistance)
-
-
- Add a proximity based constraint for finding objects with key point values near the point given
- and within the maximum distance given.
ParseQuery.whereWithinMiles(String key,
- ParseGeoPoint point,
- double maxDistance)
-
-
- Add a proximity based constraint for finding objects with key point values near the point given
- and within the maximum distance given.
ParseQuery.whereWithinRadians(String key,
- ParseGeoPoint point,
- double maxDistance)
-
-
- Add a proximity based constraint for finding objects with key point values near the point given
- and within the maximum distance given.
ParseObject.createWithoutData(Class<T> subclass,
- String objectId)
-
-
- Creates a reference to an existing ParseObject for use in creating associations between
- ParseObjects.
ParseObject.createWithoutData(String className,
- String objectId)
-
-
- Creates a reference to an existing ParseObject for use in creating associations between
- ParseObjects.
ParseObject.fetchAll(List<ParseObject> objects)
-
-
- Fetches all the objects in the provided list.
-
-
-
-static void
-
ParseObject.registerSubclass(Class<? extends ParseObject> subclass)
-
-
- Registers a custom subclass type with the Parse SDK, enabling strong-typing of those
- ParseObjects whenever they appear.
-
-
-
-static void
-
ParseObject.saveAll(List<ParseObject> objects)
-
-
- Saves each object in the provided list.
ParseQuery.whereContainedIn(String key,
- Collection<? extends Object> values)
-
-
- Add a constraint to the query that requires a particular key's value to be contained in the
- provided list of values.
ParseQuery.whereContainsAll(String key,
- Collection<?> values)
-
-
- Add a constraint to the query that requires a particular key's value match another ParseQuery.
ParseQuery.whereDoesNotMatchKeyInQuery(String key,
- String keyInQuery,
- ParseQuery<?> query)
-
-
- Add a constraint to the query that requires a particular key's value does not match any value
- for a key in the results of another ParseQuery.
ParseQuery.whereDoesNotMatchQuery(String key,
- ParseQuery<?> query)
-
-
- Add a constraint to the query that requires a particular key's value does not match another
- ParseQuery.
ParseQuery.whereEqualTo(String key,
- Object value)
-
-
- Add a constraint to the query that requires a particular key's value to be equal to the
- provided value.
ParseQuery.whereGreaterThan(String key,
- Object value)
-
-
- Add a constraint to the query that requires a particular key's value to be greater than the
- provided value.
ParseQuery.whereGreaterThanOrEqualTo(String key,
- Object value)
-
-
- Add a constraint to the query that requires a particular key's value to be greater than or
- equal to the provided value.
ParseQuery.whereLessThan(String key,
- Object value)
-
-
- Add a constraint to the query that requires a particular key's value to be less than the
- provided value.
ParseQuery.whereLessThanOrEqualTo(String key,
- Object value)
-
-
- Add a constraint to the query that requires a particular key's value to be less than or equal
- to the provided value.
ParseQuery.whereMatches(String key,
- String regex)
-
-
- Add a regular expression constraint for finding string values that match the provided regular
- expression.
ParseQuery.whereMatchesKeyInQuery(String key,
- String keyInQuery,
- ParseQuery<?> query)
-
-
- Add a constraint to the query that requires a particular key's value matches a value for a key
- in the results of another ParseQuery
ParseQuery.whereMatchesQuery(String key,
- ParseQuery<?> query)
-
-
- Add a constraint to the query that requires a particular key's value match another ParseQuery.
ParseQuery.whereNear(String key,
- ParseGeoPoint point)
-
-
- Add a proximity based constraint for finding objects with key point values near the point
- given.
ParseQuery.whereNotContainedIn(String key,
- Collection<? extends Object> values)
-
-
- Add a constraint to the query that requires a particular key's value not be contained in the
- provided list of values.
ParseQuery.whereNotEqualTo(String key,
- Object value)
-
-
- Add a constraint to the query that requires a particular key's value to be not equal to the
- provided value.
ParseQuery.whereWithinGeoBox(String key,
- ParseGeoPoint southwest,
- ParseGeoPoint northeast)
-
-
- Add a constraint to the query that requires a particular key's coordinates be contained within
- a given rectangular geographic bounding box.
ParseQuery.whereWithinKilometers(String key,
- ParseGeoPoint point,
- double maxDistance)
-
-
- Add a proximity based constraint for finding objects with key point values near the point given
- and within the maximum distance given.
ParseQuery.whereWithinMiles(String key,
- ParseGeoPoint point,
- double maxDistance)
-
-
- Add a proximity based constraint for finding objects with key point values near the point given
- and within the maximum distance given.
ParseQuery.whereWithinRadians(String key,
- ParseGeoPoint point,
- double maxDistance)
-
-
- Add a proximity based constraint for finding objects with key point values near the point given
- and within the maximum distance given.
ParseQuery.whereDoesNotMatchKeyInQuery(String key,
- String keyInQuery,
- ParseQuery<?> query)
-
-
- Add a constraint to the query that requires a particular key's value does not match any value
- for a key in the results of another ParseQuery.
ParseQuery.whereDoesNotMatchQuery(String key,
- ParseQuery<?> query)
-
-
- Add a constraint to the query that requires a particular key's value does not match another
- ParseQuery.
ParseQuery.whereMatchesKeyInQuery(String key,
- String keyInQuery,
- ParseQuery<?> query)
-
-
- Add a constraint to the query that requires a particular key's value matches a value for a key
- in the results of another ParseQuery
ParseQuery.whereMatchesQuery(String key,
- ParseQuery<?> query)
-
-
- Add a constraint to the query that requires a particular key's value match another ParseQuery.
ParseFacebookUtils.link(ParseUser user,
- Collection<String> permissions,
- Activity activity,
- int activityCode,
- SaveCallback callback)
-
-
- Links a ParseUser to a Facebook account, allowing you to use Facebook for authentication, and
- providing access to Facebook data for the user.
-
-
-
-static void
-
ParseFacebookUtils.link(ParseUser user,
- Collection<String> permissions,
- Activity activity,
- SaveCallback callback)
-
-
- Links a user using the default activity code if single sign-on is enabled.
ParseTwitterUtils.link(ParseUser user,
- Context context,
- SaveCallback callback)
-
-
- Links a ParseUser to a Twitter account, allowing you to use Twitter for authentication, and
- providing access to Twitter data for the user.
ParseFacebookUtils.link(ParseUser user,
- String facebookId,
- String accessToken,
- Date expirationDate,
- SaveCallback callback)
-
-
- Links a ParseUser to a Facebook account, allowing you to use Facebook for authentication, and
- providing access to Facebook data for the user.
ParseTwitterUtils.link(ParseUser user,
- String twitterId,
- String screenName,
- String authToken,
- String authTokenSecret,
- SaveCallback callback)
-
-
- Links a ParseUser to a Twitter account, allowing you to use Twitter for authentication, and
- providing access to Twitter data for the user.
ParseFacebookUtils.link(ParseUser user,
- Collection<String> permissions,
- Activity activity,
- int activityCode,
- SaveCallback callback)
-
-
- Links a ParseUser to a Facebook account, allowing you to use Facebook for authentication, and
- providing access to Facebook data for the user.
-
-
-
-static void
-
ParseFacebookUtils.link(ParseUser user,
- Collection<String> permissions,
- Activity activity,
- SaveCallback callback)
-
-
- Links a user using the default activity code if single sign-on is enabled.
-
-
-
-static void
-
ParseTwitterUtils.link(ParseUser user,
- Context context,
- SaveCallback callback)
-
-
- Links a ParseUser to a Twitter account, allowing you to use Twitter for authentication, and
- providing access to Twitter data for the user.
-
-
-
-static void
-
ParseFacebookUtils.link(ParseUser user,
- String facebookId,
- String accessToken,
- Date expirationDate,
- SaveCallback callback)
-
-
- Links a ParseUser to a Facebook account, allowing you to use Facebook for authentication, and
- providing access to Facebook data for the user.
-
-
-
-static void
-
ParseTwitterUtils.link(ParseUser user,
- String twitterId,
- String screenName,
- String authToken,
- String authTokenSecret,
- SaveCallback callback)
-
-
- Links a ParseUser to a Twitter account, allowing you to use Twitter for authentication, and
- providing access to Twitter data for the user.
ParseObject.saveEventually(SaveCallback callback)
-
-
- Saves this object to the server at some unspecified time in the future, even if Parse is
- currently inaccessible.
ParseGeoPoint represents a latitude / longitude point that may be associated with a key in a
- ParseObject or used as a reference point for geo queries.
A ParseException gets raised whenever a ParseObject issues an invalid request, such as
- deleting or editing an object that no longer exists on the server, or when there is a network
- failure preventing communication with the Parse server.
GetDataCallback
-
-
- A GetDataCallback is used to run code after a ParseFile fetches its data on a background
- thread.
-
-
-
LocationCallback
-
-
- A LocationCallback is used to run code after a Location has been fetched by some
- LocationProvider.
-
-
-
LogInCallback
-
-
- A LogInCallback is used to run code after logging in a user.
-
-
-
ParseACL
-
-
- A ParseACL is used to control which users can access or modify a particular object.
-
-
-
ParseClassName
-
-
- Associates a class name for a subclass of ParseObject.
-
-
-
ParseException
-
-
- A ParseException gets raised whenever a ParseObject issues an invalid request, such as
- deleting or editing an object that no longer exists on the server, or when there is a network
- failure preventing communication with the Parse server.
-
-
-
ParseFile
-
-
- ParseFile is a local representation of a file that is saved to the Parse cloud.
-
-
-
ParseGeoPoint
-
-
- ParseGeoPoint represents a latitude / longitude point that may be associated with a key in a
- ParseObject or used as a reference point for geo queries.
-This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
-Package
-
-
-
-Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain four categories:
-
Interfaces (italic)
Classes
Enums
Exceptions
Errors
Annotation Types
-
-
-Class/Interface
-
-
-
-Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:
-
Class inheritance diagram
Direct Subclasses
All Known Subinterfaces
All Known Implementing Classes
Class/interface declaration
Class/interface description
-
-
Nested Class Summary
Field Summary
Constructor Summary
Method Summary
-
-
Field Detail
Constructor Detail
Method Detail
-Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.
-
-
-Annotation Type
-
-
-
-Each annotation type has its own separate page with the following sections:
-
Annotation Type declaration
Annotation Type description
Required Element Summary
Optional Element Summary
Element Detail
-
-
-
-Enum
-
-
-
-Each enum has its own separate page with the following sections:
-
Enum declaration
Enum description
Enum Constant Summary
Enum Constant Detail
-
-
-Use
-
-Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.
-
-Tree (Class Hierarchy)
-
-There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.
-
When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
-
-
-Deprecated API
-
-The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.
-
-Index
-
-The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.
-
-Prev/Next
-These links take you to the next or previous class, interface, package, or related page.
-Frames/No Frames
-These links show and hide the HTML frames. All pages are available with or without frames.
-
-
-Serialized Form
-Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.
-
Atomically adds the objects contained in a Collection to the array associated with a
- given key, only adding elements which are not already present in the array.
-
This reports time as the server sees it, so that if you create a ParseObject, then wait a
- while, and then call save(), the creation time will be the time of the first save() call rather
- than the time the object was created locally.
-
This reports time as the server sees it, so that if you make changes to a ParseObject, then
- wait a while, and then call save(), the updated time will be the time of the save() call rather
- than the time the object was changed locally.
-
Indicates whether this ParseUser was created during this session through a call to
- ParseUser.signUp() or by logging in with a linked service such as Facebook.
-
A ParseException gets raised whenever a ParseObject issues an invalid request, such as
- deleting or editing an object that no longer exists on the server, or when there is a network
- failure preventing communication with the Parse server.
ParseGeoPoint represents a latitude / longitude point that may be associated with a key in a
- ParseObject or used as a reference point for geo queries.
Tracks this application being launched (and if this happened as the result of the user opening
- a push notification, this method sends along information to correlate this open with that
- push).
-
-
-
-
-
-
-
-
diff --git a/Android/libs/Parse-1.4.3-javadoc/style.css b/Android/libs/Parse-1.4.3-javadoc/style.css
deleted file mode 100644
index 101d1ec..0000000
--- a/Android/libs/Parse-1.4.3-javadoc/style.css
+++ /dev/null
@@ -1,136 +0,0 @@
-/* Javadoc style sheet for Parse, by Christophe TAUZIET */
-
-html, body, frame {
- background-color: #FFFFFF;
- color:#000000;
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
- margin: 0px;
- padding: 10px;
-
-}
-
-h1, h2, h3 {
- color: #555555;
-}
-
-h1 {
- font-size: 145%;
-}
-
-a:link {
- line-height: 14px;
- font-weight: bold;
- text-decoration: none;
- color: #444444;
-}
-a:visited {
- color: #777777;
- text-decoration: none;
- font-weight: bold;
-}
-a:hover {
- border-bottom: 2px solid #666666;
-}
-hr{
- display: none;
-}
-
-table:nth-child(4) {
- margin: -20px 0 0 -20px;
-}
-
-/* Table colors */
-.TableHeadingColor {
- padding: 5px 0px;
- background-color: #1789BA;
- background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #1789BA), color-stop(100%, #0A67A0));
- background-image: -webkit-linear-gradient(#1789BA, #0A67A0);
- background-image: -moz-linear-gradient(#1789BA, #0A67A0);
- background-image: -o-linear-gradient(#1789BA, #0A67A0);
- background-image: -ms-linear-gradient(#1789BA, #0A67A0);
- background-image: linear-gradient(#1789BA, #0A67A0);
- -moz-box-shadow: rgba(255, 255, 255, 0.2) 0 1px 0px 0 inset, rgba(255, 255, 255, 0.2) 0 1px 0px 0;
- -webkit-box-shadow: rgba(255, 255, 255, 0.2) 0 1px 0px 0 inset, rgba(255, 255, 255, 0.2) 0 1px 0px 0;
- -o-box-shadow: rgba(255, 255, 255, 0.2) 0 1px 0px 0 inset, rgba(255, 255, 255, 0.2) 0 1px 0px 0;
- box-shadow: rgba(255, 255, 255, 0.2) 0 1px 0px 0 inset, rgba(255, 255, 255, 0.2) 0 1px 0px 0;
- color: white;
- text-shadow: rgba(0, 0, 0, 0.6) 0 -1px 0;
- font-size: 20px;
- text-align: center;
- font-weight: 200;
-}
-
-.TableHeadingColor b {
- font-weight: 200;
-}
-
-.TableHeadingColor th {
- padding-left: 15px;
-}
-
-.TableHeadingColor a:link, .TableHeadingColor a:visited {
- color: #bbbbbb;
-}
-.TableHeadingColor a:hover {
- border: none;
- background-color:#666666;
-}
-.TableSubHeadingColor {
- background: #EEEEEE;
- color:#000000;
-}
-.TableRowColor {
- background: #FFFFFF;
- color:#000000;
-}
-.FrameTitleFont {
- font-size: 100%;
- color: #000000;
-}
-.FrameHeadingFont {
- font-size: 90%;
- color:#000000;
-}
-.FrameItemFont {
- font-size: 90%;
- color:#000000;
-}
-
-.NavBarCell1 {
- padding: 10px 10px 10px 20px;
- background-color: #1789BA;
- background-image: -webkit-linear-gradient(#1789BA, #0A67A0);
- background-image: -moz-linear-gradient(#1789BA, #0A67A0);
- background-image: -o-linear-gradient(#1789BA, #0A67A0);
- background-image: -ms-linear-gradient(#1789BA, #0A67A0);
- background-image: linear-gradient(#1789BA, #0A67A0);
- -moz-box-shadow: rgba(255, 255, 255, 0.2) 0 1px 0px 0 inset, rgba(255, 255, 255, 0.2) 0 1px 0px 0;
- -webkit-box-shadow: rgba(255, 255, 255, 0.2) 0 1px 0px 0 inset, rgba(255, 255, 255, 0.2) 0 1px 0px 0;
- -o-box-shadow: rgba(255, 255, 255, 0.2) 0 1px 0px 0 inset, rgba(255, 255, 255, 0.2) 0 1px 0px 0;
- box-shadow: rgba(255, 255, 255, 0.2) 0 1px 0px 0 inset, rgba(255, 255, 255, 0.2) 0 1px 0px 0;
- border: 1px solid #363636;
- color: white;
- text-shadow: rgba(0, 0, 0, 0.6) 0 -1px 0;
- font-size: 20px;
-}
-
-.NavBarCell1 a:hover {
- border: none;
-}
-.NavBarCell1Rev {
- background-color: #0A67A0;
- background-image: -webkit-linear-gradient(#0A67A0, #1789BA);
- background-image: -moz-linear-gradient(#0A67A0, #1789BA);
- background-image: -o-linear-gradient(#0A67A0, #1789BA);
- background-image: -ms-linear-gradient(#0A67A0, #1789BA);
- background-image: linear-gradient(#0A67A0, #1789BA);
- border: 1px solid #363636;
- padding: 10px 10px 10px 10px;
-}
-.NavBarFont1, .NavBarFont1Rev {
- color:#FFFFFF;
-}
-.NavBarCell2, .NavBarCell3 {
- background-color:#FFFFFF;
- color:#000000;
-}
\ No newline at end of file
diff --git a/Android/libs/Parse-1.4.3.jar b/Android/libs/Parse-1.4.3.jar
deleted file mode 100644
index f01609e..0000000
Binary files a/Android/libs/Parse-1.4.3.jar and /dev/null differ
diff --git a/Android/libs/Parse-1.4.3.jar.properties b/Android/libs/Parse-1.4.3.jar.properties
deleted file mode 100644
index fc658a1..0000000
--- a/Android/libs/Parse-1.4.3.jar.properties
+++ /dev/null
@@ -1 +0,0 @@
-doc=Parse-1.4.3-javadoc
diff --git a/Android/libs/android-support-v4.jar b/Android/libs/android-support-v4.jar
deleted file mode 100644
index 65ebaf8..0000000
Binary files a/Android/libs/android-support-v4.jar and /dev/null differ
diff --git a/Android/libs/third_party_licenses.txt b/Android/libs/third_party_licenses.txt
deleted file mode 100644
index 234c642..0000000
--- a/Android/libs/third_party_licenses.txt
+++ /dev/null
@@ -1,622 +0,0 @@
-THE FOLLOWING SETS FORTH ATTRIBUTION NOTICES FOR THIRD PARTY SOFTWARE THAT MAY BE CONTAINED IN PORTIONS OF THE PARSE PRODUCT.
-
------
-
-The following software may be included in this product: Apache Jakarta Commons Codec. This software contains the following license and notice below:
-
-
- Apache License
- Version 2.0, January 2004
- http://www.apache.org/licenses/
-
-TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
-1. Definitions.
-
- "License" shall mean the terms and conditions for use, reproduction,
- and distribution as defined by Sections 1 through 9 of this document.
-
- "Licensor" shall mean the copyright owner or entity authorized by
- the copyright owner that is granting the License.
-
- "Legal Entity" shall mean the union of the acting entity and all
- other entities that control, are controlled by, or are under common
- control with that entity. For the purposes of this definition,
- "control" means (i) the power, direct or indirect, to cause the
- direction or management of such entity, whether by contract or
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
- outstanding shares, or (iii) beneficial ownership of such entity.
-
- "You" (or "Your") shall mean an individual or Legal Entity
- exercising permissions granted by this License.
-
- "Source" form shall mean the preferred form for making modifications,
- including but not limited to software source code, documentation
- source, and configuration files.
-
- "Object" form shall mean any form resulting from mechanical
- transformation or translation of a Source form, including but
- not limited to compiled object code, generated documentation,
- and conversions to other media types.
-
- "Work" shall mean the work of authorship, whether in Source or
- Object form, made available under the License, as indicated by a
- copyright notice that is included in or attached to the work
- (an example is provided in the Appendix below).
-
- "Derivative Works" shall mean any work, whether in Source or Object
- form, that is based on (or derived from) the Work and for which the
- editorial revisions, annotations, elaborations, or other modifications
- represent, as a whole, an original work of authorship. For the purposes
- of this License, Derivative Works shall not include works that remain
- separable from, or merely link (or bind by name) to the interfaces of,
- the Work and Derivative Works thereof.
-
- "Contribution" shall mean any work of authorship, including
- the original version of the Work and any modifications or additions
- to that Work or Derivative Works thereof, that is intentionally
- submitted to Licensor for inclusion in the Work by the copyright owner
- or by an individual or Legal Entity authorized to submit on behalf of
- the copyright owner. For the purposes of this definition, "submitted"
- means any form of electronic, verbal, or written communication sent
- to the Licensor or its representatives, including but not limited to
- communication on electronic mailing lists, source code control systems,
- and issue tracking systems that are managed by, or on behalf of, the
- Licensor for the purpose of discussing and improving the Work, but
- excluding communication that is conspicuously marked or otherwise
- designated in writing by the copyright owner as "Not a Contribution."
-
- "Contributor" shall mean Licensor and any individual or Legal Entity
- on behalf of whom a Contribution has been received by Licensor and
- subsequently incorporated within the Work.
-
-2. Grant of Copyright License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- copyright license to reproduce, prepare Derivative Works of,
- publicly display, publicly perform, sublicense, and distribute the
- Work and such Derivative Works in Source or Object form.
-
-3. Grant of Patent License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- (except as stated in this section) patent license to make, have made,
- use, offer to sell, sell, import, and otherwise transfer the Work,
- where such license applies only to those patent claims licensable
- by such Contributor that are necessarily infringed by their
- Contribution(s) alone or by combination of their Contribution(s)
- with the Work to which such Contribution(s) was submitted. If You
- institute patent litigation against any entity (including a
- cross-claim or counterclaim in a lawsuit) alleging that the Work
- or a Contribution incorporated within the Work constitutes direct
- or contributory patent infringement, then any patent licenses
- granted to You under this License for that Work shall terminate
- as of the date such litigation is filed.
-
-4. Redistribution. You may reproduce and distribute copies of the
- Work or Derivative Works thereof in any medium, with or without
- modifications, and in Source or Object form, provided that You
- meet the following conditions:
-
- (a) You must give any other recipients of the Work or
- Derivative Works a copy of this License; and
-
- (b) You must cause any modified files to carry prominent notices
- stating that You changed the files; and
-
- (c) You must retain, in the Source form of any Derivative Works
- that You distribute, all copyright, patent, trademark, and
- attribution notices from the Source form of the Work,
- excluding those notices that do not pertain to any part of
- the Derivative Works; and
-
- (d) If the Work includes a "NOTICE" text file as part of its
- distribution, then any Derivative Works that You distribute must
- include a readable copy of the attribution notices contained
- within such NOTICE file, excluding those notices that do not
- pertain to any part of the Derivative Works, in at least one
- of the following places: within a NOTICE text file distributed
- as part of the Derivative Works; within the Source form or
- documentation, if provided along with the Derivative Works; or,
- within a display generated by the Derivative Works, if and
- wherever such third-party notices normally appear. The contents
- of the NOTICE file are for informational purposes only and
- do not modify the License. You may add Your own attribution
- notices within Derivative Works that You distribute, alongside
- or as an addendum to the NOTICE text from the Work, provided
- that such additional attribution notices cannot be construed
- as modifying the License.
-
- You may add Your own copyright statement to Your modifications and
- may provide additional or different license terms and conditions
- for use, reproduction, or distribution of Your modifications, or
- for any such Derivative Works as a whole, provided Your use,
- reproduction, and distribution of the Work otherwise complies with
- the conditions stated in this License.
-
-5. Submission of Contributions. Unless You explicitly state otherwise,
- any Contribution intentionally submitted for inclusion in the Work
- by You to the Licensor shall be under the terms and conditions of
- this License, without any additional terms or conditions.
- Notwithstanding the above, nothing herein shall supersede or modify
- the terms of any separate license agreement you may have executed
- with Licensor regarding such Contributions.
-
-6. Trademarks. This License does not grant permission to use the trade
- names, trademarks, service marks, or product names of the Licensor,
- except as required for reasonable and customary use in describing the
- origin of the Work and reproducing the content of the NOTICE file.
-
-7. Disclaimer of Warranty. Unless required by applicable law or
- agreed to in writing, Licensor provides the Work (and each
- Contributor provides its Contributions) on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
- implied, including, without limitation, any warranties or conditions
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
- PARTICULAR PURPOSE. You are solely responsible for determining the
- appropriateness of using or redistributing the Work and assume any
- risks associated with Your exercise of permissions under this License.
-
-8. Limitation of Liability. In no event and under no legal theory,
- whether in tort (including negligence), contract, or otherwise,
- unless required by applicable law (such as deliberate and grossly
- negligent acts) or agreed to in writing, shall any Contributor be
- liable to You for damages, including any direct, indirect, special,
- incidental, or consequential damages of any character arising as a
- result of this License or out of the use or inability to use the
- Work (including but not limited to damages for loss of goodwill,
- work stoppage, computer failure or malfunction, or any and all
- other commercial damages or losses), even if such Contributor
- has been advised of the possibility of such damages.
-
-9. Accepting Warranty or Additional Liability. While redistributing
- the Work or Derivative Works thereof, You may choose to offer,
- and charge a fee for, acceptance of support, warranty, indemnity,
- or other liability obligations and/or rights consistent with this
- License. However, in accepting such obligations, You may act only
- on Your own behalf and on Your sole responsibility, not on behalf
- of any other Contributor, and only if You agree to indemnify,
- defend, and hold each Contributor harmless for any liability
- incurred by, or claims asserted against, such Contributor by reason
- of your accepting any such warranty or additional liability.
-
-END OF TERMS AND CONDITIONS
-
-APPENDIX: How to apply the Apache License to your work.
-
- To apply the Apache License to your work, attach the following
- boilerplate notice, with the fields enclosed by brackets "[]"
- replaced with your own identifying information. (Don't include
- the brackets!) The text should be enclosed in the appropriate
- comment syntax for the file format. We also recommend that a
- file or class name and description of purpose be included on the
- same "printed page" as the copyright notice for easier
- identification within third-party archives.
-
-Copyright [yyyy] [name of copyright owner]
-
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-
------
-
-The following software may be included in this product: oauth-signpost. This software contains the following license and notice below:
-
-
- Apache License
- Version 2.0, January 2004
- http://www.apache.org/licenses/
-
-TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
-1. Definitions.
-
- "License" shall mean the terms and conditions for use, reproduction,
- and distribution as defined by Sections 1 through 9 of this document.
-
- "Licensor" shall mean the copyright owner or entity authorized by
- the copyright owner that is granting the License.
-
- "Legal Entity" shall mean the union of the acting entity and all
- other entities that control, are controlled by, or are under common
- control with that entity. For the purposes of this definition,
- "control" means (i) the power, direct or indirect, to cause the
- direction or management of such entity, whether by contract or
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
- outstanding shares, or (iii) beneficial ownership of such entity.
-
- "You" (or "Your") shall mean an individual or Legal Entity
- exercising permissions granted by this License.
-
- "Source" form shall mean the preferred form for making modifications,
- including but not limited to software source code, documentation
- source, and configuration files.
-
- "Object" form shall mean any form resulting from mechanical
- transformation or translation of a Source form, including but
- not limited to compiled object code, generated documentation,
- and conversions to other media types.
-
- "Work" shall mean the work of authorship, whether in Source or
- Object form, made available under the License, as indicated by a
- copyright notice that is included in or attached to the work
- (an example is provided in the Appendix below).
-
- "Derivative Works" shall mean any work, whether in Source or Object
- form, that is based on (or derived from) the Work and for which the
- editorial revisions, annotations, elaborations, or other modifications
- represent, as a whole, an original work of authorship. For the purposes
- of this License, Derivative Works shall not include works that remain
- separable from, or merely link (or bind by name) to the interfaces of,
- the Work and Derivative Works thereof.
-
- "Contribution" shall mean any work of authorship, including
- the original version of the Work and any modifications or additions
- to that Work or Derivative Works thereof, that is intentionally
- submitted to Licensor for inclusion in the Work by the copyright owner
- or by an individual or Legal Entity authorized to submit on behalf of
- the copyright owner. For the purposes of this definition, "submitted"
- means any form of electronic, verbal, or written communication sent
- to the Licensor or its representatives, including but not limited to
- communication on electronic mailing lists, source code control systems,
- and issue tracking systems that are managed by, or on behalf of, the
- Licensor for the purpose of discussing and improving the Work, but
- excluding communication that is conspicuously marked or otherwise
- designated in writing by the copyright owner as "Not a Contribution."
-
- "Contributor" shall mean Licensor and any individual or Legal Entity
- on behalf of whom a Contribution has been received by Licensor and
- subsequently incorporated within the Work.
-
-2. Grant of Copyright License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- copyright license to reproduce, prepare Derivative Works of,
- publicly display, publicly perform, sublicense, and distribute the
- Work and such Derivative Works in Source or Object form.
-
-3. Grant of Patent License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- (except as stated in this section) patent license to make, have made,
- use, offer to sell, sell, import, and otherwise transfer the Work,
- where such license applies only to those patent claims licensable
- by such Contributor that are necessarily infringed by their
- Contribution(s) alone or by combination of their Contribution(s)
- with the Work to which such Contribution(s) was submitted. If You
- institute patent litigation against any entity (including a
- cross-claim or counterclaim in a lawsuit) alleging that the Work
- or a Contribution incorporated within the Work constitutes direct
- or contributory patent infringement, then any patent licenses
- granted to You under this License for that Work shall terminate
- as of the date such litigation is filed.
-
-4. Redistribution. You may reproduce and distribute copies of the
- Work or Derivative Works thereof in any medium, with or without
- modifications, and in Source or Object form, provided that You
- meet the following conditions:
-
- (a) You must give any other recipients of the Work or
- Derivative Works a copy of this License; and
-
- (b) You must cause any modified files to carry prominent notices
- stating that You changed the files; and
-
- (c) You must retain, in the Source form of any Derivative Works
- that You distribute, all copyright, patent, trademark, and
- attribution notices from the Source form of the Work,
- excluding those notices that do not pertain to any part of
- the Derivative Works; and
-
- (d) If the Work includes a "NOTICE" text file as part of its
- distribution, then any Derivative Works that You distribute must
- include a readable copy of the attribution notices contained
- within such NOTICE file, excluding those notices that do not
- pertain to any part of the Derivative Works, in at least one
- of the following places: within a NOTICE text file distributed
- as part of the Derivative Works; within the Source form or
- documentation, if provided along with the Derivative Works; or,
- within a display generated by the Derivative Works, if and
- wherever such third-party notices normally appear. The contents
- of the NOTICE file are for informational purposes only and
- do not modify the License. You may add Your own attribution
- notices within Derivative Works that You distribute, alongside
- or as an addendum to the NOTICE text from the Work, provided
- that such additional attribution notices cannot be construed
- as modifying the License.
-
- You may add Your own copyright statement to Your modifications and
- may provide additional or different license terms and conditions
- for use, reproduction, or distribution of Your modifications, or
- for any such Derivative Works as a whole, provided Your use,
- reproduction, and distribution of the Work otherwise complies with
- the conditions stated in this License.
-
-5. Submission of Contributions. Unless You explicitly state otherwise,
- any Contribution intentionally submitted for inclusion in the Work
- by You to the Licensor shall be under the terms and conditions of
- this License, without any additional terms or conditions.
- Notwithstanding the above, nothing herein shall supersede or modify
- the terms of any separate license agreement you may have executed
- with Licensor regarding such Contributions.
-
-6. Trademarks. This License does not grant permission to use the trade
- names, trademarks, service marks, or product names of the Licensor,
- except as required for reasonable and customary use in describing the
- origin of the Work and reproducing the content of the NOTICE file.
-
-7. Disclaimer of Warranty. Unless required by applicable law or
- agreed to in writing, Licensor provides the Work (and each
- Contributor provides its Contributions) on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
- implied, including, without limitation, any warranties or conditions
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
- PARTICULAR PURPOSE. You are solely responsible for determining the
- appropriateness of using or redistributing the Work and assume any
- risks associated with Your exercise of permissions under this License.
-
-8. Limitation of Liability. In no event and under no legal theory,
- whether in tort (including negligence), contract, or otherwise,
- unless required by applicable law (such as deliberate and grossly
- negligent acts) or agreed to in writing, shall any Contributor be
- liable to You for damages, including any direct, indirect, special,
- incidental, or consequential damages of any character arising as a
- result of this License or out of the use or inability to use the
- Work (including but not limited to damages for loss of goodwill,
- work stoppage, computer failure or malfunction, or any and all
- other commercial damages or losses), even if such Contributor
- has been advised of the possibility of such damages.
-
-9. Accepting Warranty or Additional Liability. While redistributing
- the Work or Derivative Works thereof, You may choose to offer,
- and charge a fee for, acceptance of support, warranty, indemnity,
- or other liability obligations and/or rights consistent with this
- License. However, in accepting such obligations, You may act only
- on Your own behalf and on Your sole responsibility, not on behalf
- of any other Contributor, and only if You agree to indemnify,
- defend, and hold each Contributor harmless for any liability
- incurred by, or claims asserted against, such Contributor by reason
- of your accepting any such warranty or additional liability.
-
-END OF TERMS AND CONDITIONS
-
-APPENDIX: How to apply the Apache License to your work.
-
- To apply the Apache License to your work, attach the following
- boilerplate notice, with the fields enclosed by brackets "[]"
- replaced with your own identifying information. (Don't include
- the brackets!) The text should be enclosed in the appropriate
- comment syntax for the file format. We also recommend that a
- file or class name and description of purpose be included on the
- same "printed page" as the copyright notice for easier
- identification within third-party archives.
-
-Copyright [yyyy] [name of copyright owner]
-
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-
------
-
-The following software may be included in this product: Apache Commons IO. This software contains the following license and notice below:
-
-
- Apache License
- Version 2.0, January 2004
- http://www.apache.org/licenses/
-
-TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
-1. Definitions.
-
- "License" shall mean the terms and conditions for use, reproduction,
- and distribution as defined by Sections 1 through 9 of this document.
-
- "Licensor" shall mean the copyright owner or entity authorized by
- the copyright owner that is granting the License.
-
- "Legal Entity" shall mean the union of the acting entity and all
- other entities that control, are controlled by, or are under common
- control with that entity. For the purposes of this definition,
- "control" means (i) the power, direct or indirect, to cause the
- direction or management of such entity, whether by contract or
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
- outstanding shares, or (iii) beneficial ownership of such entity.
-
- "You" (or "Your") shall mean an individual or Legal Entity
- exercising permissions granted by this License.
-
- "Source" form shall mean the preferred form for making modifications,
- including but not limited to software source code, documentation
- source, and configuration files.
-
- "Object" form shall mean any form resulting from mechanical
- transformation or translation of a Source form, including but
- not limited to compiled object code, generated documentation,
- and conversions to other media types.
-
- "Work" shall mean the work of authorship, whether in Source or
- Object form, made available under the License, as indicated by a
- copyright notice that is included in or attached to the work
- (an example is provided in the Appendix below).
-
- "Derivative Works" shall mean any work, whether in Source or Object
- form, that is based on (or derived from) the Work and for which the
- editorial revisions, annotations, elaborations, or other modifications
- represent, as a whole, an original work of authorship. For the purposes
- of this License, Derivative Works shall not include works that remain
- separable from, or merely link (or bind by name) to the interfaces of,
- the Work and Derivative Works thereof.
-
- "Contribution" shall mean any work of authorship, including
- the original version of the Work and any modifications or additions
- to that Work or Derivative Works thereof, that is intentionally
- submitted to Licensor for inclusion in the Work by the copyright owner
- or by an individual or Legal Entity authorized to submit on behalf of
- the copyright owner. For the purposes of this definition, "submitted"
- means any form of electronic, verbal, or written communication sent
- to the Licensor or its representatives, including but not limited to
- communication on electronic mailing lists, source code control systems,
- and issue tracking systems that are managed by, or on behalf of, the
- Licensor for the purpose of discussing and improving the Work, but
- excluding communication that is conspicuously marked or otherwise
- designated in writing by the copyright owner as "Not a Contribution."
-
- "Contributor" shall mean Licensor and any individual or Legal Entity
- on behalf of whom a Contribution has been received by Licensor and
- subsequently incorporated within the Work.
-
-2. Grant of Copyright License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- copyright license to reproduce, prepare Derivative Works of,
- publicly display, publicly perform, sublicense, and distribute the
- Work and such Derivative Works in Source or Object form.
-
-3. Grant of Patent License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- (except as stated in this section) patent license to make, have made,
- use, offer to sell, sell, import, and otherwise transfer the Work,
- where such license applies only to those patent claims licensable
- by such Contributor that are necessarily infringed by their
- Contribution(s) alone or by combination of their Contribution(s)
- with the Work to which such Contribution(s) was submitted. If You
- institute patent litigation against any entity (including a
- cross-claim or counterclaim in a lawsuit) alleging that the Work
- or a Contribution incorporated within the Work constitutes direct
- or contributory patent infringement, then any patent licenses
- granted to You under this License for that Work shall terminate
- as of the date such litigation is filed.
-
-4. Redistribution. You may reproduce and distribute copies of the
- Work or Derivative Works thereof in any medium, with or without
- modifications, and in Source or Object form, provided that You
- meet the following conditions:
-
- (a) You must give any other recipients of the Work or
- Derivative Works a copy of this License; and
-
- (b) You must cause any modified files to carry prominent notices
- stating that You changed the files; and
-
- (c) You must retain, in the Source form of any Derivative Works
- that You distribute, all copyright, patent, trademark, and
- attribution notices from the Source form of the Work,
- excluding those notices that do not pertain to any part of
- the Derivative Works; and
-
- (d) If the Work includes a "NOTICE" text file as part of its
- distribution, then any Derivative Works that You distribute must
- include a readable copy of the attribution notices contained
- within such NOTICE file, excluding those notices that do not
- pertain to any part of the Derivative Works, in at least one
- of the following places: within a NOTICE text file distributed
- as part of the Derivative Works; within the Source form or
- documentation, if provided along with the Derivative Works; or,
- within a display generated by the Derivative Works, if and
- wherever such third-party notices normally appear. The contents
- of the NOTICE file are for informational purposes only and
- do not modify the License. You may add Your own attribution
- notices within Derivative Works that You distribute, alongside
- or as an addendum to the NOTICE text from the Work, provided
- that such additional attribution notices cannot be construed
- as modifying the License.
-
- You may add Your own copyright statement to Your modifications and
- may provide additional or different license terms and conditions
- for use, reproduction, or distribution of Your modifications, or
- for any such Derivative Works as a whole, provided Your use,
- reproduction, and distribution of the Work otherwise complies with
- the conditions stated in this License.
-
-5. Submission of Contributions. Unless You explicitly state otherwise,
- any Contribution intentionally submitted for inclusion in the Work
- by You to the Licensor shall be under the terms and conditions of
- this License, without any additional terms or conditions.
- Notwithstanding the above, nothing herein shall supersede or modify
- the terms of any separate license agreement you may have executed
- with Licensor regarding such Contributions.
-
-6. Trademarks. This License does not grant permission to use the trade
- names, trademarks, service marks, or product names of the Licensor,
- except as required for reasonable and customary use in describing the
- origin of the Work and reproducing the content of the NOTICE file.
-
-7. Disclaimer of Warranty. Unless required by applicable law or
- agreed to in writing, Licensor provides the Work (and each
- Contributor provides its Contributions) on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
- implied, including, without limitation, any warranties or conditions
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
- PARTICULAR PURPOSE. You are solely responsible for determining the
- appropriateness of using or redistributing the Work and assume any
- risks associated with Your exercise of permissions under this License.
-
-8. Limitation of Liability. In no event and under no legal theory,
- whether in tort (including negligence), contract, or otherwise,
- unless required by applicable law (such as deliberate and grossly
- negligent acts) or agreed to in writing, shall any Contributor be
- liable to You for damages, including any direct, indirect, special,
- incidental, or consequential damages of any character arising as a
- result of this License or out of the use or inability to use the
- Work (including but not limited to damages for loss of goodwill,
- work stoppage, computer failure or malfunction, or any and all
- other commercial damages or losses), even if such Contributor
- has been advised of the possibility of such damages.
-
-9. Accepting Warranty or Additional Liability. While redistributing
- the Work or Derivative Works thereof, You may choose to offer,
- and charge a fee for, acceptance of support, warranty, indemnity,
- or other liability obligations and/or rights consistent with this
- License. However, in accepting such obligations, You may act only
- on Your own behalf and on Your sole responsibility, not on behalf
- of any other Contributor, and only if You agree to indemnify,
- defend, and hold each Contributor harmless for any liability
- incurred by, or claims asserted against, such Contributor by reason
- of your accepting any such warranty or additional liability.
-
-END OF TERMS AND CONDITIONS
-
-APPENDIX: How to apply the Apache License to your work.
-
- To apply the Apache License to your work, attach the following
- boilerplate notice, with the fields enclosed by brackets "[]"
- replaced with your own identifying information. (Don't include
- the brackets!) The text should be enclosed in the appropriate
- comment syntax for the file format. We also recommend that a
- file or class name and description of purpose be included on the
- same "printed page" as the copyright notice for easier
- identification within third-party archives.
-
-Copyright [yyyy] [name of copyright owner]
-
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
diff --git a/Android/proguard-project.txt b/Android/proguard-project.txt
deleted file mode 100644
index f2fe155..0000000
--- a/Android/proguard-project.txt
+++ /dev/null
@@ -1,20 +0,0 @@
-# To enable ProGuard in your project, edit project.properties
-# to define the proguard.config property as described in that file.
-#
-# Add project specific ProGuard rules here.
-# By default, the flags in this file are appended to flags specified
-# in ${sdk.dir}/tools/proguard/proguard-android.txt
-# You can edit the include path and order by changing the ProGuard
-# include property in project.properties.
-#
-# For more details, see
-# http://developer.android.com/guide/developing/tools/proguard.html
-
-# Add any project specific keep options here:
-
-# If your project uses WebView with JS, uncomment the following
-# and specify the fully qualified class name to the JavaScript interface
-# class:
-#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
-# public *;
-#}
diff --git a/Android/project.properties b/Android/project.properties
deleted file mode 100644
index 9b84a6b..0000000
--- a/Android/project.properties
+++ /dev/null
@@ -1,14 +0,0 @@
-# This file is automatically generated by Android Tools.
-# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
-#
-# This file must be checked in Version Control Systems.
-#
-# To customize properties used by the Ant build system edit
-# "ant.properties", and override values to adapt the script to your
-# project structure.
-#
-# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
-#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
-
-# Project target.
-target=android-16
diff --git a/Android/res/drawable-hdpi/ic_launcher.png b/Android/res/drawable-hdpi/ic_launcher.png
deleted file mode 100644
index bdd090a..0000000
Binary files a/Android/res/drawable-hdpi/ic_launcher.png and /dev/null differ
diff --git a/Android/res/drawable-mdpi/ic_launcher.png b/Android/res/drawable-mdpi/ic_launcher.png
deleted file mode 100644
index 9dbe8cf..0000000
Binary files a/Android/res/drawable-mdpi/ic_launcher.png and /dev/null differ
diff --git a/Android/res/drawable-xhdpi/ic_launcher.png b/Android/res/drawable-xhdpi/ic_launcher.png
deleted file mode 100644
index f335bd7..0000000
Binary files a/Android/res/drawable-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/Android/res/drawable-xxhdpi/ic_launcher.png b/Android/res/drawable-xxhdpi/ic_launcher.png
deleted file mode 100644
index 0ec21b4..0000000
Binary files a/Android/res/drawable-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/Android/res/layout/activity_main.xml b/Android/res/layout/activity_main.xml
deleted file mode 100644
index c1ae2e0..0000000
--- a/Android/res/layout/activity_main.xml
+++ /dev/null
@@ -1,78 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Android/res/menu/main.xml b/Android/res/menu/main.xml
deleted file mode 100644
index d227c49..0000000
--- a/Android/res/menu/main.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/Android/res/values-sw600dp/dimens.xml b/Android/res/values-sw600dp/dimens.xml
deleted file mode 100644
index 1ba777d..0000000
--- a/Android/res/values-sw600dp/dimens.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/Android/res/values-sw720dp-land/dimens.xml b/Android/res/values-sw720dp-land/dimens.xml
deleted file mode 100644
index eee741a..0000000
--- a/Android/res/values-sw720dp-land/dimens.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
- 128dp
-
-
\ No newline at end of file
diff --git a/Android/res/values-v11/styles.xml b/Android/res/values-v11/styles.xml
deleted file mode 100644
index 541752f..0000000
--- a/Android/res/values-v11/styles.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Android/res/values-v14/styles.xml b/Android/res/values-v14/styles.xml
deleted file mode 100644
index f20e015..0000000
--- a/Android/res/values-v14/styles.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Android/res/values/dimens.xml b/Android/res/values/dimens.xml
deleted file mode 100644
index a6dd140..0000000
--- a/Android/res/values/dimens.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
- 16dp
- 16dp
-
-
\ No newline at end of file
diff --git a/Android/res/values/strings.xml b/Android/res/values/strings.xml
deleted file mode 100644
index 7cd2b18..0000000
--- a/Android/res/values/strings.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
- Parse Push Notifications
- Settings
- Welcome! Tell us a bit more about yourself.
- Gender
- Age
- Interests
- Male
- Female
- Save
- Refresh
- OK
- Profile
- Saved!
- Failed with error.
-
\ No newline at end of file
diff --git a/Android/res/values/styles.xml b/Android/res/values/styles.xml
deleted file mode 100644
index 7843ae2..0000000
--- a/Android/res/values/styles.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Android/src/com/parse/tutorials/pushnotifications/Application.java b/Android/src/com/parse/tutorials/pushnotifications/Application.java
deleted file mode 100644
index d35e65a..0000000
--- a/Android/src/com/parse/tutorials/pushnotifications/Application.java
+++ /dev/null
@@ -1,22 +0,0 @@
-package com.parse.tutorials.pushnotifications;
-
-import com.parse.Parse;
-import com.parse.ParseInstallation;
-import com.parse.PushService;
-
-public class Application extends android.app.Application {
-
- public Application() {
- }
-
- @Override
- public void onCreate() {
- super.onCreate();
-
- // Initialize the Parse SDK.
- Parse.initialize(this, "YOUR_APP_ID", "YOUR_CLIENT_KEY");
-
- // Specify an Activity to handle all pushes by default.
- PushService.setDefaultPushCallback(this, MainActivity.class);
- }
-}
\ No newline at end of file
diff --git a/Android/src/com/parse/tutorials/pushnotifications/MainActivity.java b/Android/src/com/parse/tutorials/pushnotifications/MainActivity.java
deleted file mode 100644
index 765ee8a..0000000
--- a/Android/src/com/parse/tutorials/pushnotifications/MainActivity.java
+++ /dev/null
@@ -1,122 +0,0 @@
-package com.parse.tutorials.pushnotifications;
-
-import android.app.Activity;
-import android.app.AlertDialog;
-import android.content.Context;
-import android.content.DialogInterface;
-import android.os.Bundle;
-import android.view.View;
-import android.view.inputmethod.InputMethodManager;
-import android.widget.EditText;
-import android.widget.RadioButton;
-import android.widget.RadioGroup;
-import android.widget.Toast;
-
-import com.parse.ParseAnalytics;
-import com.parse.ParseException;
-import com.parse.ParseInstallation;
-import com.parse.ParseObject;
-import com.parse.RefreshCallback;
-import com.parse.SaveCallback;
-
-public class MainActivity extends Activity {
-
- private RadioButton genderFemaleButton;
- private RadioButton genderMaleButton;
- private EditText ageEditText;
- private RadioGroup genderRadioGroup;
-
- public static final String GENDER_MALE = "male";
- public static final String GENDER_FEMALE = "female";
-
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.activity_main);
-
- // Track app opens.
- ParseAnalytics.trackAppOpened(getIntent());
-
- // Set up our UI member properties.
- this.genderFemaleButton = (RadioButton) findViewById(R.id.gender_female_button);
- this.genderMaleButton = (RadioButton) findViewById(R.id.gender_male_button);
- this.ageEditText = (EditText) findViewById(R.id.age_edit_text);
- this.genderRadioGroup = (RadioGroup) findViewById(R.id.gender_radio_group);
- }
-
- @Override
- public void onStart() {
- super.onStart();
-
- // Display the current values for this user, such as their age and gender.
- displayUserProfile();
- refreshUserProfile();
- }
-
- // Save the user's profile to their installation.
- public void saveUserProfile(View view) {
- String ageTextString = ageEditText.getText().toString();
-
- if (ageTextString.length() > 0) {
- ParseInstallation.getCurrentInstallation().put("age", Integer.valueOf(ageTextString));
- }
-
- if (genderRadioGroup.getCheckedRadioButtonId() == genderFemaleButton.getId()) {
- ParseInstallation.getCurrentInstallation().put("gender", GENDER_FEMALE);
- } else if (genderRadioGroup.getCheckedRadioButtonId() == genderMaleButton.getId()) {
- ParseInstallation.getCurrentInstallation().put("gender", GENDER_MALE);
- } else {
- ParseInstallation.getCurrentInstallation().remove("gender");
- }
-
- InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
- imm.hideSoftInputFromWindow(ageEditText.getWindowToken(), 0);
-
- ParseInstallation.getCurrentInstallation().saveInBackground(new SaveCallback() {
- @Override
- public void done(ParseException e) {
- if (e == null) {
- Toast toast = Toast.makeText(getApplicationContext(), R.string.alert_dialog_success, Toast.LENGTH_SHORT);
- toast.show();
- } else {
- e.printStackTrace();
-
- Toast toast = Toast.makeText(getApplicationContext(), R.string.alert_dialog_failed, Toast.LENGTH_SHORT);
- toast.show();
- }
- }
- });
- }
-
- // Refresh the UI with the data obtained from the current ParseInstallation object.
- private void displayUserProfile() {
- String gender = ParseInstallation.getCurrentInstallation().getString("gender");
- int age = ParseInstallation.getCurrentInstallation().getInt("age");
-
- if (gender != null) {
- genderMaleButton.setChecked(gender.equalsIgnoreCase(GENDER_MALE));
- genderFemaleButton.setChecked(gender.equalsIgnoreCase(GENDER_FEMALE));
- } else {
- genderMaleButton.setChecked(false);
- genderFemaleButton.setChecked(false);
- }
-
- if (age > 0) {
- ageEditText.setText(Integer.valueOf(age).toString());
- }
-
- }
-
- // Get the latest values from the ParseInstallation object.
- private void refreshUserProfile() {
- ParseInstallation.getCurrentInstallation().refreshInBackground(new RefreshCallback() {
-
- @Override
- public void done(ParseObject object, ParseException e) {
- if (e == null) {
- displayUserProfile();
- }
- }
- });
- }
-}
diff --git a/Parse-Starter-Project-1.12.0-Push/.gradle/2.4/taskArtifacts/cache.properties b/Parse-Starter-Project-1.12.0-Push/.gradle/2.4/taskArtifacts/cache.properties
new file mode 100644
index 0000000..bd3551f
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/.gradle/2.4/taskArtifacts/cache.properties
@@ -0,0 +1 @@
+#Fri Jan 22 14:51:41 PST 2016
diff --git a/Parse-Starter-Project-1.12.0-Push/.gradle/2.4/taskArtifacts/cache.properties.lock b/Parse-Starter-Project-1.12.0-Push/.gradle/2.4/taskArtifacts/cache.properties.lock
new file mode 100644
index 0000000..fbca3f1
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/.gradle/2.4/taskArtifacts/cache.properties.lock differ
diff --git a/Parse-Starter-Project-1.12.0-Push/.gradle/2.4/taskArtifacts/fileHashes.bin b/Parse-Starter-Project-1.12.0-Push/.gradle/2.4/taskArtifacts/fileHashes.bin
new file mode 100644
index 0000000..1453c14
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/.gradle/2.4/taskArtifacts/fileHashes.bin differ
diff --git a/Parse-Starter-Project-1.12.0-Push/.gradle/2.4/taskArtifacts/fileSnapshots.bin b/Parse-Starter-Project-1.12.0-Push/.gradle/2.4/taskArtifacts/fileSnapshots.bin
new file mode 100644
index 0000000..8305d9d
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/.gradle/2.4/taskArtifacts/fileSnapshots.bin differ
diff --git a/Parse-Starter-Project-1.12.0-Push/.gradle/2.4/taskArtifacts/outputFileStates.bin b/Parse-Starter-Project-1.12.0-Push/.gradle/2.4/taskArtifacts/outputFileStates.bin
new file mode 100644
index 0000000..8285368
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/.gradle/2.4/taskArtifacts/outputFileStates.bin differ
diff --git a/Parse-Starter-Project-1.12.0-Push/.gradle/2.4/taskArtifacts/taskArtifacts.bin b/Parse-Starter-Project-1.12.0-Push/.gradle/2.4/taskArtifacts/taskArtifacts.bin
new file mode 100644
index 0000000..408602f
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/.gradle/2.4/taskArtifacts/taskArtifacts.bin differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build.gradle b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build.gradle
new file mode 100644
index 0000000..e42f386
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build.gradle
@@ -0,0 +1,27 @@
+apply plugin: 'com.android.application'
+
+android {
+ compileSdkVersion rootProject.ext.compileSdkVersion
+ buildToolsVersion rootProject.ext.buildToolsVersion
+
+ defaultConfig {
+ applicationId "com.parse.starter"
+ minSdkVersion rootProject.ext.minSdkVersion
+ targetSdkVersion rootProject.ext.targetSdkVersion
+ versionCode 1
+ versionName "1.0"
+ }
+ buildTypes {
+ release {
+ minifyEnabled false
+ proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
+ }
+ }
+}
+
+dependencies {
+ compile 'com.android.support:appcompat-v7:22.2.0'
+
+ compile 'com.parse.bolts:bolts-tasks:1.3.0'
+ compile 'com.parse:parse-android:1.12.0'
+}
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/generated/source/buildConfig/androidTest/debug/com/parse/starter/test/BuildConfig.java b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/generated/source/buildConfig/androidTest/debug/com/parse/starter/test/BuildConfig.java
new file mode 100644
index 0000000..9024190
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/generated/source/buildConfig/androidTest/debug/com/parse/starter/test/BuildConfig.java
@@ -0,0 +1,13 @@
+/**
+ * Automatically generated file. DO NOT MODIFY
+ */
+package com.parse.starter.test;
+
+public final class BuildConfig {
+ public static final boolean DEBUG = Boolean.parseBoolean("true");
+ public static final String APPLICATION_ID = "com.parse.starter.test";
+ public static final String BUILD_TYPE = "debug";
+ public static final String FLAVOR = "";
+ public static final int VERSION_CODE = 1;
+ public static final String VERSION_NAME = "1.0";
+}
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/generated/source/buildConfig/debug/com/parse/starter/BuildConfig.java b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/generated/source/buildConfig/debug/com/parse/starter/BuildConfig.java
new file mode 100644
index 0000000..d4ecba3
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/generated/source/buildConfig/debug/com/parse/starter/BuildConfig.java
@@ -0,0 +1,13 @@
+/**
+ * Automatically generated file. DO NOT MODIFY
+ */
+package com.parse.starter;
+
+public final class BuildConfig {
+ public static final boolean DEBUG = Boolean.parseBoolean("true");
+ public static final String APPLICATION_ID = "com.parse.starter";
+ public static final String BUILD_TYPE = "debug";
+ public static final String FLAVOR = "";
+ public static final int VERSION_CODE = 1;
+ public static final String VERSION_NAME = "1.0";
+}
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/generated/source/r/debug/android/support/v7/appcompat/R.java b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/generated/source/r/debug/android/support/v7/appcompat/R.java
new file mode 100644
index 0000000..5f7488a
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/generated/source/r/debug/android/support/v7/appcompat/R.java
@@ -0,0 +1,1195 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+package android.support.v7.appcompat;
+
+public final class R {
+ public static final class anim {
+ public static final int abc_fade_in = 0x7f050000;
+ public static final int abc_fade_out = 0x7f050001;
+ public static final int abc_grow_fade_in_from_bottom = 0x7f050002;
+ public static final int abc_popup_enter = 0x7f050003;
+ public static final int abc_popup_exit = 0x7f050004;
+ public static final int abc_shrink_fade_out_from_bottom = 0x7f050005;
+ public static final int abc_slide_in_bottom = 0x7f050006;
+ public static final int abc_slide_in_top = 0x7f050007;
+ public static final int abc_slide_out_bottom = 0x7f050008;
+ public static final int abc_slide_out_top = 0x7f050009;
+ }
+ public static final class attr {
+ public static final int actionBarDivider = 0x7f010064;
+ public static final int actionBarItemBackground = 0x7f010065;
+ public static final int actionBarPopupTheme = 0x7f01005e;
+ public static final int actionBarSize = 0x7f010063;
+ public static final int actionBarSplitStyle = 0x7f010060;
+ public static final int actionBarStyle = 0x7f01005f;
+ public static final int actionBarTabBarStyle = 0x7f01005a;
+ public static final int actionBarTabStyle = 0x7f010059;
+ public static final int actionBarTabTextStyle = 0x7f01005b;
+ public static final int actionBarTheme = 0x7f010061;
+ public static final int actionBarWidgetTheme = 0x7f010062;
+ public static final int actionButtonStyle = 0x7f01007e;
+ public static final int actionDropDownStyle = 0x7f01007a;
+ public static final int actionLayout = 0x7f010031;
+ public static final int actionMenuTextAppearance = 0x7f010066;
+ public static final int actionMenuTextColor = 0x7f010067;
+ public static final int actionModeBackground = 0x7f01006a;
+ public static final int actionModeCloseButtonStyle = 0x7f010069;
+ public static final int actionModeCloseDrawable = 0x7f01006c;
+ public static final int actionModeCopyDrawable = 0x7f01006e;
+ public static final int actionModeCutDrawable = 0x7f01006d;
+ public static final int actionModeFindDrawable = 0x7f010072;
+ public static final int actionModePasteDrawable = 0x7f01006f;
+ public static final int actionModePopupWindowStyle = 0x7f010074;
+ public static final int actionModeSelectAllDrawable = 0x7f010070;
+ public static final int actionModeShareDrawable = 0x7f010071;
+ public static final int actionModeSplitBackground = 0x7f01006b;
+ public static final int actionModeStyle = 0x7f010068;
+ public static final int actionModeWebSearchDrawable = 0x7f010073;
+ public static final int actionOverflowButtonStyle = 0x7f01005c;
+ public static final int actionOverflowMenuStyle = 0x7f01005d;
+ public static final int actionProviderClass = 0x7f010033;
+ public static final int actionViewClass = 0x7f010032;
+ public static final int activityChooserViewStyle = 0x7f010086;
+ public static final int alertDialogButtonGroupStyle = 0x7f0100a7;
+ public static final int alertDialogCenterButtons = 0x7f0100a8;
+ public static final int alertDialogStyle = 0x7f0100a6;
+ public static final int alertDialogTheme = 0x7f0100a9;
+ public static final int autoCompleteTextViewStyle = 0x7f0100ae;
+ public static final int background = 0x7f01000c;
+ public static final int backgroundSplit = 0x7f01000e;
+ public static final int backgroundStacked = 0x7f01000d;
+ public static final int backgroundTint = 0x7f0100c7;
+ public static final int backgroundTintMode = 0x7f0100c8;
+ public static final int barSize = 0x7f01002b;
+ public static final int borderlessButtonStyle = 0x7f010083;
+ public static final int buttonBarButtonStyle = 0x7f010080;
+ public static final int buttonBarNegativeButtonStyle = 0x7f0100ac;
+ public static final int buttonBarNeutralButtonStyle = 0x7f0100ad;
+ public static final int buttonBarPositiveButtonStyle = 0x7f0100ab;
+ public static final int buttonBarStyle = 0x7f01007f;
+ public static final int buttonPanelSideLayout = 0x7f01001f;
+ public static final int buttonStyle = 0x7f0100af;
+ public static final int buttonStyleSmall = 0x7f0100b0;
+ public static final int checkboxStyle = 0x7f0100b1;
+ public static final int checkedTextViewStyle = 0x7f0100b2;
+ public static final int closeIcon = 0x7f01003b;
+ public static final int closeItemLayout = 0x7f01001c;
+ public static final int collapseContentDescription = 0x7f0100c1;
+ public static final int collapseIcon = 0x7f0100c0;
+ public static final int color = 0x7f010025;
+ public static final int colorAccent = 0x7f0100a0;
+ public static final int colorButtonNormal = 0x7f0100a4;
+ public static final int colorControlActivated = 0x7f0100a2;
+ public static final int colorControlHighlight = 0x7f0100a3;
+ public static final int colorControlNormal = 0x7f0100a1;
+ public static final int colorPrimary = 0x7f01009e;
+ public static final int colorPrimaryDark = 0x7f01009f;
+ public static final int colorSwitchThumbNormal = 0x7f0100a5;
+ public static final int commitIcon = 0x7f010040;
+ public static final int contentInsetEnd = 0x7f010017;
+ public static final int contentInsetLeft = 0x7f010018;
+ public static final int contentInsetRight = 0x7f010019;
+ public static final int contentInsetStart = 0x7f010016;
+ public static final int customNavigationLayout = 0x7f01000f;
+ public static final int defaultQueryHint = 0x7f01003a;
+ public static final int dialogPreferredPadding = 0x7f010078;
+ public static final int dialogTheme = 0x7f010077;
+ public static final int disableChildrenWhenDisabled = 0x7f010047;
+ public static final int displayOptions = 0x7f010005;
+ public static final int divider = 0x7f01000b;
+ public static final int dividerHorizontal = 0x7f010085;
+ public static final int dividerPadding = 0x7f01002f;
+ public static final int dividerVertical = 0x7f010084;
+ public static final int drawableSize = 0x7f010027;
+ public static final int drawerArrowStyle = 0x7f010000;
+ public static final int dropDownListViewStyle = 0x7f010096;
+ public static final int dropdownListPreferredItemHeight = 0x7f01007b;
+ public static final int editTextBackground = 0x7f01008c;
+ public static final int editTextColor = 0x7f01008b;
+ public static final int editTextStyle = 0x7f0100b3;
+ public static final int elevation = 0x7f01001a;
+ public static final int expandActivityOverflowButtonDrawable = 0x7f01001e;
+ public static final int gapBetweenBars = 0x7f010028;
+ public static final int goIcon = 0x7f01003c;
+ public static final int height = 0x7f010001;
+ public static final int hideOnContentScroll = 0x7f010015;
+ public static final int homeAsUpIndicator = 0x7f01007d;
+ public static final int homeLayout = 0x7f010010;
+ public static final int icon = 0x7f010009;
+ public static final int iconifiedByDefault = 0x7f010038;
+ public static final int indeterminateProgressStyle = 0x7f010012;
+ public static final int initialActivityCount = 0x7f01001d;
+ public static final int isLightTheme = 0x7f010002;
+ public static final int itemPadding = 0x7f010014;
+ public static final int layout = 0x7f010037;
+ public static final int listChoiceBackgroundIndicator = 0x7f01009d;
+ public static final int listDividerAlertDialog = 0x7f010079;
+ public static final int listItemLayout = 0x7f010023;
+ public static final int listLayout = 0x7f010020;
+ public static final int listPopupWindowStyle = 0x7f010097;
+ public static final int listPreferredItemHeight = 0x7f010091;
+ public static final int listPreferredItemHeightLarge = 0x7f010093;
+ public static final int listPreferredItemHeightSmall = 0x7f010092;
+ public static final int listPreferredItemPaddingLeft = 0x7f010094;
+ public static final int listPreferredItemPaddingRight = 0x7f010095;
+ public static final int logo = 0x7f01000a;
+ public static final int maxButtonHeight = 0x7f0100bf;
+ public static final int measureWithLargestChild = 0x7f01002d;
+ public static final int middleBarArrowSize = 0x7f01002a;
+ public static final int multiChoiceItemLayout = 0x7f010021;
+ public static final int navigationContentDescription = 0x7f0100c3;
+ public static final int navigationIcon = 0x7f0100c2;
+ public static final int navigationMode = 0x7f010004;
+ public static final int overlapAnchor = 0x7f010035;
+ public static final int paddingEnd = 0x7f0100c5;
+ public static final int paddingStart = 0x7f0100c4;
+ public static final int panelBackground = 0x7f01009a;
+ public static final int panelMenuListTheme = 0x7f01009c;
+ public static final int panelMenuListWidth = 0x7f01009b;
+ public static final int popupMenuStyle = 0x7f010089;
+ public static final int popupPromptView = 0x7f010046;
+ public static final int popupTheme = 0x7f01001b;
+ public static final int popupWindowStyle = 0x7f01008a;
+ public static final int preserveIconSpacing = 0x7f010034;
+ public static final int progressBarPadding = 0x7f010013;
+ public static final int progressBarStyle = 0x7f010011;
+ public static final int prompt = 0x7f010044;
+ public static final int queryBackground = 0x7f010042;
+ public static final int queryHint = 0x7f010039;
+ public static final int radioButtonStyle = 0x7f0100b4;
+ public static final int ratingBarStyle = 0x7f0100b5;
+ public static final int searchHintIcon = 0x7f01003e;
+ public static final int searchIcon = 0x7f01003d;
+ public static final int searchViewStyle = 0x7f010090;
+ public static final int selectableItemBackground = 0x7f010081;
+ public static final int selectableItemBackgroundBorderless = 0x7f010082;
+ public static final int showAsAction = 0x7f010030;
+ public static final int showDividers = 0x7f01002e;
+ public static final int showText = 0x7f01004e;
+ public static final int singleChoiceItemLayout = 0x7f010022;
+ public static final int spinBars = 0x7f010026;
+ public static final int spinnerDropDownItemStyle = 0x7f01007c;
+ public static final int spinnerMode = 0x7f010045;
+ public static final int spinnerStyle = 0x7f0100b6;
+ public static final int splitTrack = 0x7f01004d;
+ public static final int state_above_anchor = 0x7f010036;
+ public static final int submitBackground = 0x7f010043;
+ public static final int subtitle = 0x7f010006;
+ public static final int subtitleTextAppearance = 0x7f0100b9;
+ public static final int subtitleTextStyle = 0x7f010008;
+ public static final int suggestionRowLayout = 0x7f010041;
+ public static final int switchMinWidth = 0x7f01004b;
+ public static final int switchPadding = 0x7f01004c;
+ public static final int switchStyle = 0x7f0100b7;
+ public static final int switchTextAppearance = 0x7f01004a;
+ public static final int textAllCaps = 0x7f010024;
+ public static final int textAppearanceLargePopupMenu = 0x7f010075;
+ public static final int textAppearanceListItem = 0x7f010098;
+ public static final int textAppearanceListItemSmall = 0x7f010099;
+ public static final int textAppearanceSearchResultSubtitle = 0x7f01008e;
+ public static final int textAppearanceSearchResultTitle = 0x7f01008d;
+ public static final int textAppearanceSmallPopupMenu = 0x7f010076;
+ public static final int textColorAlertDialogListItem = 0x7f0100aa;
+ public static final int textColorSearchUrl = 0x7f01008f;
+ public static final int theme = 0x7f0100c6;
+ public static final int thickness = 0x7f01002c;
+ public static final int thumbTextPadding = 0x7f010049;
+ public static final int title = 0x7f010003;
+ public static final int titleMarginBottom = 0x7f0100be;
+ public static final int titleMarginEnd = 0x7f0100bc;
+ public static final int titleMarginStart = 0x7f0100bb;
+ public static final int titleMarginTop = 0x7f0100bd;
+ public static final int titleMargins = 0x7f0100ba;
+ public static final int titleTextAppearance = 0x7f0100b8;
+ public static final int titleTextStyle = 0x7f010007;
+ public static final int toolbarNavigationButtonStyle = 0x7f010088;
+ public static final int toolbarStyle = 0x7f010087;
+ public static final int topBottomBarArrowSize = 0x7f010029;
+ public static final int track = 0x7f010048;
+ public static final int voiceIcon = 0x7f01003f;
+ public static final int windowActionBar = 0x7f01004f;
+ public static final int windowActionBarOverlay = 0x7f010051;
+ public static final int windowActionModeOverlay = 0x7f010052;
+ public static final int windowFixedHeightMajor = 0x7f010056;
+ public static final int windowFixedHeightMinor = 0x7f010054;
+ public static final int windowFixedWidthMajor = 0x7f010053;
+ public static final int windowFixedWidthMinor = 0x7f010055;
+ public static final int windowMinWidthMajor = 0x7f010057;
+ public static final int windowMinWidthMinor = 0x7f010058;
+ public static final int windowNoTitle = 0x7f010050;
+ }
+ public static final class bool {
+ public static final int abc_action_bar_embed_tabs = 0x7f090002;
+ public static final int abc_action_bar_embed_tabs_pre_jb = 0x7f090000;
+ public static final int abc_action_bar_expanded_action_views_exclusive = 0x7f090003;
+ public static final int abc_config_actionMenuItemAllCaps = 0x7f090004;
+ public static final int abc_config_allowActionMenuItemTextWithIcon = 0x7f090001;
+ public static final int abc_config_closeDialogWhenTouchOutside = 0x7f090005;
+ public static final int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f090006;
+ }
+ public static final class color {
+ public static final int abc_background_cache_hint_selector_material_dark = 0x7f0b0033;
+ public static final int abc_background_cache_hint_selector_material_light = 0x7f0b0034;
+ public static final int abc_input_method_navigation_guard = 0x7f0b0000;
+ public static final int abc_primary_text_disable_only_material_dark = 0x7f0b0035;
+ public static final int abc_primary_text_disable_only_material_light = 0x7f0b0036;
+ public static final int abc_primary_text_material_dark = 0x7f0b0037;
+ public static final int abc_primary_text_material_light = 0x7f0b0038;
+ public static final int abc_search_url_text = 0x7f0b0039;
+ public static final int abc_search_url_text_normal = 0x7f0b0001;
+ public static final int abc_search_url_text_pressed = 0x7f0b0002;
+ public static final int abc_search_url_text_selected = 0x7f0b0003;
+ public static final int abc_secondary_text_material_dark = 0x7f0b003a;
+ public static final int abc_secondary_text_material_light = 0x7f0b003b;
+ public static final int accent_material_dark = 0x7f0b0004;
+ public static final int accent_material_light = 0x7f0b0005;
+ public static final int background_floating_material_dark = 0x7f0b0006;
+ public static final int background_floating_material_light = 0x7f0b0007;
+ public static final int background_material_dark = 0x7f0b0008;
+ public static final int background_material_light = 0x7f0b0009;
+ public static final int bright_foreground_disabled_material_dark = 0x7f0b000a;
+ public static final int bright_foreground_disabled_material_light = 0x7f0b000b;
+ public static final int bright_foreground_inverse_material_dark = 0x7f0b000c;
+ public static final int bright_foreground_inverse_material_light = 0x7f0b000d;
+ public static final int bright_foreground_material_dark = 0x7f0b000e;
+ public static final int bright_foreground_material_light = 0x7f0b000f;
+ public static final int button_material_dark = 0x7f0b0010;
+ public static final int button_material_light = 0x7f0b0011;
+ public static final int dim_foreground_disabled_material_dark = 0x7f0b0012;
+ public static final int dim_foreground_disabled_material_light = 0x7f0b0013;
+ public static final int dim_foreground_material_dark = 0x7f0b0014;
+ public static final int dim_foreground_material_light = 0x7f0b0015;
+ public static final int highlighted_text_material_dark = 0x7f0b0016;
+ public static final int highlighted_text_material_light = 0x7f0b0017;
+ public static final int hint_foreground_material_dark = 0x7f0b0018;
+ public static final int hint_foreground_material_light = 0x7f0b0019;
+ public static final int link_text_material_dark = 0x7f0b001a;
+ public static final int link_text_material_light = 0x7f0b001b;
+ public static final int material_blue_grey_800 = 0x7f0b001c;
+ public static final int material_blue_grey_900 = 0x7f0b001d;
+ public static final int material_blue_grey_950 = 0x7f0b001e;
+ public static final int material_deep_teal_200 = 0x7f0b001f;
+ public static final int material_deep_teal_500 = 0x7f0b0020;
+ public static final int primary_dark_material_dark = 0x7f0b0021;
+ public static final int primary_dark_material_light = 0x7f0b0022;
+ public static final int primary_material_dark = 0x7f0b0023;
+ public static final int primary_material_light = 0x7f0b0024;
+ public static final int primary_text_default_material_dark = 0x7f0b0025;
+ public static final int primary_text_default_material_light = 0x7f0b0026;
+ public static final int primary_text_disabled_material_dark = 0x7f0b0027;
+ public static final int primary_text_disabled_material_light = 0x7f0b0028;
+ public static final int ripple_material_dark = 0x7f0b0029;
+ public static final int ripple_material_light = 0x7f0b002a;
+ public static final int secondary_text_default_material_dark = 0x7f0b002b;
+ public static final int secondary_text_default_material_light = 0x7f0b002c;
+ public static final int secondary_text_disabled_material_dark = 0x7f0b002d;
+ public static final int secondary_text_disabled_material_light = 0x7f0b002e;
+ public static final int switch_thumb_disabled_material_dark = 0x7f0b002f;
+ public static final int switch_thumb_disabled_material_light = 0x7f0b0030;
+ public static final int switch_thumb_material_dark = 0x7f0b003c;
+ public static final int switch_thumb_material_light = 0x7f0b003d;
+ public static final int switch_thumb_normal_material_dark = 0x7f0b0031;
+ public static final int switch_thumb_normal_material_light = 0x7f0b0032;
+ }
+ public static final class dimen {
+ public static final int abc_action_bar_content_inset_material = 0x7f07000c;
+ public static final int abc_action_bar_default_height_material = 0x7f070001;
+ public static final int abc_action_bar_default_padding_material = 0x7f070002;
+ public static final int abc_action_bar_icon_vertical_padding_material = 0x7f070011;
+ public static final int abc_action_bar_navigation_padding_start_material = 0x7f07000d;
+ public static final int abc_action_bar_overflow_padding_end_material = 0x7f07000e;
+ public static final int abc_action_bar_overflow_padding_start_material = 0x7f070012;
+ public static final int abc_action_bar_progress_bar_size = 0x7f070003;
+ public static final int abc_action_bar_stacked_max_height = 0x7f070013;
+ public static final int abc_action_bar_stacked_tab_max_width = 0x7f070014;
+ public static final int abc_action_bar_subtitle_bottom_margin_material = 0x7f070015;
+ public static final int abc_action_bar_subtitle_top_margin_material = 0x7f070016;
+ public static final int abc_action_button_min_height_material = 0x7f070017;
+ public static final int abc_action_button_min_width_material = 0x7f070018;
+ public static final int abc_action_button_min_width_overflow_material = 0x7f070019;
+ public static final int abc_alert_dialog_button_bar_height = 0x7f070000;
+ public static final int abc_button_inset_horizontal_material = 0x7f07001a;
+ public static final int abc_button_inset_vertical_material = 0x7f07001b;
+ public static final int abc_button_padding_horizontal_material = 0x7f07001c;
+ public static final int abc_button_padding_vertical_material = 0x7f07001d;
+ public static final int abc_config_prefDialogWidth = 0x7f070006;
+ public static final int abc_control_corner_material = 0x7f07001e;
+ public static final int abc_control_inset_material = 0x7f07001f;
+ public static final int abc_control_padding_material = 0x7f070020;
+ public static final int abc_dialog_list_padding_vertical_material = 0x7f070021;
+ public static final int abc_dialog_min_width_major = 0x7f070022;
+ public static final int abc_dialog_min_width_minor = 0x7f070023;
+ public static final int abc_dialog_padding_material = 0x7f070024;
+ public static final int abc_dialog_padding_top_material = 0x7f070025;
+ public static final int abc_disabled_alpha_material_dark = 0x7f070026;
+ public static final int abc_disabled_alpha_material_light = 0x7f070027;
+ public static final int abc_dropdownitem_icon_width = 0x7f070028;
+ public static final int abc_dropdownitem_text_padding_left = 0x7f070029;
+ public static final int abc_dropdownitem_text_padding_right = 0x7f07002a;
+ public static final int abc_edit_text_inset_bottom_material = 0x7f07002b;
+ public static final int abc_edit_text_inset_horizontal_material = 0x7f07002c;
+ public static final int abc_edit_text_inset_top_material = 0x7f07002d;
+ public static final int abc_floating_window_z = 0x7f07002e;
+ public static final int abc_list_item_padding_horizontal_material = 0x7f07002f;
+ public static final int abc_panel_menu_list_width = 0x7f070030;
+ public static final int abc_search_view_preferred_width = 0x7f070031;
+ public static final int abc_search_view_text_min_width = 0x7f070007;
+ public static final int abc_switch_padding = 0x7f07000f;
+ public static final int abc_text_size_body_1_material = 0x7f070032;
+ public static final int abc_text_size_body_2_material = 0x7f070033;
+ public static final int abc_text_size_button_material = 0x7f070034;
+ public static final int abc_text_size_caption_material = 0x7f070035;
+ public static final int abc_text_size_display_1_material = 0x7f070036;
+ public static final int abc_text_size_display_2_material = 0x7f070037;
+ public static final int abc_text_size_display_3_material = 0x7f070038;
+ public static final int abc_text_size_display_4_material = 0x7f070039;
+ public static final int abc_text_size_headline_material = 0x7f07003a;
+ public static final int abc_text_size_large_material = 0x7f07003b;
+ public static final int abc_text_size_medium_material = 0x7f07003c;
+ public static final int abc_text_size_menu_material = 0x7f07003d;
+ public static final int abc_text_size_small_material = 0x7f07003e;
+ public static final int abc_text_size_subhead_material = 0x7f07003f;
+ public static final int abc_text_size_subtitle_material_toolbar = 0x7f070004;
+ public static final int abc_text_size_title_material = 0x7f070040;
+ public static final int abc_text_size_title_material_toolbar = 0x7f070005;
+ public static final int dialog_fixed_height_major = 0x7f070008;
+ public static final int dialog_fixed_height_minor = 0x7f070009;
+ public static final int dialog_fixed_width_major = 0x7f07000a;
+ public static final int dialog_fixed_width_minor = 0x7f07000b;
+ public static final int disabled_alpha_material_dark = 0x7f070042;
+ public static final int disabled_alpha_material_light = 0x7f070043;
+ public static final int notification_large_icon_height = 0x7f070044;
+ public static final int notification_large_icon_width = 0x7f070045;
+ public static final int notification_subtext_size = 0x7f070046;
+ }
+ public static final class drawable {
+ public static final int abc_ab_share_pack_mtrl_alpha = 0x7f020000;
+ public static final int abc_btn_borderless_material = 0x7f020001;
+ public static final int abc_btn_check_material = 0x7f020002;
+ public static final int abc_btn_check_to_on_mtrl_000 = 0x7f020003;
+ public static final int abc_btn_check_to_on_mtrl_015 = 0x7f020004;
+ public static final int abc_btn_default_mtrl_shape = 0x7f020005;
+ public static final int abc_btn_radio_material = 0x7f020006;
+ public static final int abc_btn_radio_to_on_mtrl_000 = 0x7f020007;
+ public static final int abc_btn_radio_to_on_mtrl_015 = 0x7f020008;
+ public static final int abc_btn_rating_star_off_mtrl_alpha = 0x7f020009;
+ public static final int abc_btn_rating_star_on_mtrl_alpha = 0x7f02000a;
+ public static final int abc_btn_switch_to_on_mtrl_00001 = 0x7f02000b;
+ public static final int abc_btn_switch_to_on_mtrl_00012 = 0x7f02000c;
+ public static final int abc_cab_background_internal_bg = 0x7f02000d;
+ public static final int abc_cab_background_top_material = 0x7f02000e;
+ public static final int abc_cab_background_top_mtrl_alpha = 0x7f02000f;
+ public static final int abc_dialog_material_background_dark = 0x7f020010;
+ public static final int abc_dialog_material_background_light = 0x7f020011;
+ public static final int abc_edit_text_material = 0x7f020012;
+ public static final int abc_ic_ab_back_mtrl_am_alpha = 0x7f020013;
+ public static final int abc_ic_clear_mtrl_alpha = 0x7f020014;
+ public static final int abc_ic_commit_search_api_mtrl_alpha = 0x7f020015;
+ public static final int abc_ic_go_search_api_mtrl_alpha = 0x7f020016;
+ public static final int abc_ic_menu_copy_mtrl_am_alpha = 0x7f020017;
+ public static final int abc_ic_menu_cut_mtrl_alpha = 0x7f020018;
+ public static final int abc_ic_menu_moreoverflow_mtrl_alpha = 0x7f020019;
+ public static final int abc_ic_menu_paste_mtrl_am_alpha = 0x7f02001a;
+ public static final int abc_ic_menu_selectall_mtrl_alpha = 0x7f02001b;
+ public static final int abc_ic_menu_share_mtrl_alpha = 0x7f02001c;
+ public static final int abc_ic_search_api_mtrl_alpha = 0x7f02001d;
+ public static final int abc_ic_voice_search_api_mtrl_alpha = 0x7f02001e;
+ public static final int abc_item_background_holo_dark = 0x7f02001f;
+ public static final int abc_item_background_holo_light = 0x7f020020;
+ public static final int abc_list_divider_mtrl_alpha = 0x7f020021;
+ public static final int abc_list_focused_holo = 0x7f020022;
+ public static final int abc_list_longpressed_holo = 0x7f020023;
+ public static final int abc_list_pressed_holo_dark = 0x7f020024;
+ public static final int abc_list_pressed_holo_light = 0x7f020025;
+ public static final int abc_list_selector_background_transition_holo_dark = 0x7f020026;
+ public static final int abc_list_selector_background_transition_holo_light = 0x7f020027;
+ public static final int abc_list_selector_disabled_holo_dark = 0x7f020028;
+ public static final int abc_list_selector_disabled_holo_light = 0x7f020029;
+ public static final int abc_list_selector_holo_dark = 0x7f02002a;
+ public static final int abc_list_selector_holo_light = 0x7f02002b;
+ public static final int abc_menu_hardkey_panel_mtrl_mult = 0x7f02002c;
+ public static final int abc_popup_background_mtrl_mult = 0x7f02002d;
+ public static final int abc_ratingbar_full_material = 0x7f02002e;
+ public static final int abc_spinner_mtrl_am_alpha = 0x7f02002f;
+ public static final int abc_spinner_textfield_background_material = 0x7f020030;
+ public static final int abc_switch_thumb_material = 0x7f020031;
+ public static final int abc_switch_track_mtrl_alpha = 0x7f020032;
+ public static final int abc_tab_indicator_material = 0x7f020033;
+ public static final int abc_tab_indicator_mtrl_alpha = 0x7f020034;
+ public static final int abc_text_cursor_mtrl_alpha = 0x7f020035;
+ public static final int abc_textfield_activated_mtrl_alpha = 0x7f020036;
+ public static final int abc_textfield_default_mtrl_alpha = 0x7f020037;
+ public static final int abc_textfield_search_activated_mtrl_alpha = 0x7f020038;
+ public static final int abc_textfield_search_default_mtrl_alpha = 0x7f020039;
+ public static final int abc_textfield_search_material = 0x7f02003a;
+ public static final int notification_template_icon_bg = 0x7f02003b;
+ }
+ public static final class id {
+ public static final int action0 = 0x7f0c004f;
+ public static final int action_bar = 0x7f0c0040;
+ public static final int action_bar_activity_content = 0x7f0c0000;
+ public static final int action_bar_container = 0x7f0c003f;
+ public static final int action_bar_root = 0x7f0c003b;
+ public static final int action_bar_spinner = 0x7f0c0001;
+ public static final int action_bar_subtitle = 0x7f0c0024;
+ public static final int action_bar_title = 0x7f0c0023;
+ public static final int action_context_bar = 0x7f0c0041;
+ public static final int action_divider = 0x7f0c0053;
+ public static final int action_menu_divider = 0x7f0c0002;
+ public static final int action_menu_presenter = 0x7f0c0003;
+ public static final int action_mode_bar = 0x7f0c003d;
+ public static final int action_mode_bar_stub = 0x7f0c003c;
+ public static final int action_mode_close_button = 0x7f0c0025;
+ public static final int activity_chooser_view_content = 0x7f0c0026;
+ public static final int alertTitle = 0x7f0c0030;
+ public static final int always = 0x7f0c0016;
+ public static final int beginning = 0x7f0c0013;
+ public static final int buttonPanel = 0x7f0c0036;
+ public static final int cancel_action = 0x7f0c0050;
+ public static final int checkbox = 0x7f0c0038;
+ public static final int chronometer = 0x7f0c0056;
+ public static final int collapseActionView = 0x7f0c0017;
+ public static final int contentPanel = 0x7f0c0031;
+ public static final int custom = 0x7f0c0035;
+ public static final int customPanel = 0x7f0c0034;
+ public static final int decor_content_parent = 0x7f0c003e;
+ public static final int default_activity_button = 0x7f0c0029;
+ public static final int dialog = 0x7f0c001b;
+ public static final int disableHome = 0x7f0c000c;
+ public static final int dropdown = 0x7f0c001c;
+ public static final int edit_query = 0x7f0c0042;
+ public static final int end = 0x7f0c0014;
+ public static final int end_padder = 0x7f0c005b;
+ public static final int expand_activities_button = 0x7f0c0027;
+ public static final int expanded_menu = 0x7f0c0037;
+ public static final int home = 0x7f0c0004;
+ public static final int homeAsUp = 0x7f0c000d;
+ public static final int icon = 0x7f0c002b;
+ public static final int ifRoom = 0x7f0c0018;
+ public static final int image = 0x7f0c0028;
+ public static final int info = 0x7f0c005a;
+ public static final int line1 = 0x7f0c0054;
+ public static final int line3 = 0x7f0c0058;
+ public static final int listMode = 0x7f0c0009;
+ public static final int list_item = 0x7f0c002a;
+ public static final int media_actions = 0x7f0c0052;
+ public static final int middle = 0x7f0c0015;
+ public static final int multiply = 0x7f0c001e;
+ public static final int never = 0x7f0c0019;
+ public static final int none = 0x7f0c000e;
+ public static final int normal = 0x7f0c000a;
+ public static final int parentPanel = 0x7f0c002d;
+ public static final int progress_circular = 0x7f0c0005;
+ public static final int progress_horizontal = 0x7f0c0006;
+ public static final int radio = 0x7f0c003a;
+ public static final int screen = 0x7f0c001f;
+ public static final int scrollView = 0x7f0c0032;
+ public static final int search_badge = 0x7f0c0044;
+ public static final int search_bar = 0x7f0c0043;
+ public static final int search_button = 0x7f0c0045;
+ public static final int search_close_btn = 0x7f0c004a;
+ public static final int search_edit_frame = 0x7f0c0046;
+ public static final int search_go_btn = 0x7f0c004c;
+ public static final int search_mag_icon = 0x7f0c0047;
+ public static final int search_plate = 0x7f0c0048;
+ public static final int search_src_text = 0x7f0c0049;
+ public static final int search_voice_btn = 0x7f0c004d;
+ public static final int select_dialog_listview = 0x7f0c004e;
+ public static final int shortcut = 0x7f0c0039;
+ public static final int showCustom = 0x7f0c000f;
+ public static final int showHome = 0x7f0c0010;
+ public static final int showTitle = 0x7f0c0011;
+ public static final int split_action_bar = 0x7f0c0007;
+ public static final int src_atop = 0x7f0c0020;
+ public static final int src_in = 0x7f0c0021;
+ public static final int src_over = 0x7f0c0022;
+ public static final int status_bar_latest_event_content = 0x7f0c0051;
+ public static final int submit_area = 0x7f0c004b;
+ public static final int tabMode = 0x7f0c000b;
+ public static final int text = 0x7f0c0059;
+ public static final int text2 = 0x7f0c0057;
+ public static final int textSpacerNoButtons = 0x7f0c0033;
+ public static final int time = 0x7f0c0055;
+ public static final int title = 0x7f0c002c;
+ public static final int title_template = 0x7f0c002f;
+ public static final int topPanel = 0x7f0c002e;
+ public static final int up = 0x7f0c0008;
+ public static final int useLogo = 0x7f0c0012;
+ public static final int withText = 0x7f0c001a;
+ public static final int wrap_content = 0x7f0c001d;
+ }
+ public static final class integer {
+ public static final int abc_config_activityDefaultDur = 0x7f0a0001;
+ public static final int abc_config_activityShortDur = 0x7f0a0002;
+ public static final int abc_max_action_buttons = 0x7f0a0000;
+ public static final int cancel_button_image_alpha = 0x7f0a0003;
+ public static final int status_bar_notification_info_maxnum = 0x7f0a0004;
+ }
+ public static final class layout {
+ public static final int abc_action_bar_title_item = 0x7f040000;
+ public static final int abc_action_bar_up_container = 0x7f040001;
+ public static final int abc_action_bar_view_list_nav_layout = 0x7f040002;
+ public static final int abc_action_menu_item_layout = 0x7f040003;
+ public static final int abc_action_menu_layout = 0x7f040004;
+ public static final int abc_action_mode_bar = 0x7f040005;
+ public static final int abc_action_mode_close_item_material = 0x7f040006;
+ public static final int abc_activity_chooser_view = 0x7f040007;
+ public static final int abc_activity_chooser_view_list_item = 0x7f040008;
+ public static final int abc_alert_dialog_material = 0x7f040009;
+ public static final int abc_dialog_title_material = 0x7f04000a;
+ public static final int abc_expanded_menu_layout = 0x7f04000b;
+ public static final int abc_list_menu_item_checkbox = 0x7f04000c;
+ public static final int abc_list_menu_item_icon = 0x7f04000d;
+ public static final int abc_list_menu_item_layout = 0x7f04000e;
+ public static final int abc_list_menu_item_radio = 0x7f04000f;
+ public static final int abc_popup_menu_item_layout = 0x7f040010;
+ public static final int abc_screen_content_include = 0x7f040011;
+ public static final int abc_screen_simple = 0x7f040012;
+ public static final int abc_screen_simple_overlay_action_mode = 0x7f040013;
+ public static final int abc_screen_toolbar = 0x7f040014;
+ public static final int abc_search_dropdown_item_icons_2line = 0x7f040015;
+ public static final int abc_search_view = 0x7f040016;
+ public static final int abc_select_dialog_material = 0x7f040017;
+ public static final int abc_simple_dropdown_hint = 0x7f040018;
+ public static final int notification_media_action = 0x7f04001a;
+ public static final int notification_media_cancel_action = 0x7f04001b;
+ public static final int notification_template_big_media = 0x7f04001c;
+ public static final int notification_template_big_media_narrow = 0x7f04001d;
+ public static final int notification_template_lines = 0x7f04001e;
+ public static final int notification_template_media = 0x7f04001f;
+ public static final int notification_template_part_chronometer = 0x7f040020;
+ public static final int notification_template_part_time = 0x7f040021;
+ public static final int select_dialog_item_material = 0x7f040022;
+ public static final int select_dialog_multichoice_material = 0x7f040023;
+ public static final int select_dialog_singlechoice_material = 0x7f040024;
+ public static final int support_simple_spinner_dropdown_item = 0x7f040025;
+ }
+ public static final class string {
+ public static final int abc_action_bar_home_description = 0x7f060000;
+ public static final int abc_action_bar_home_description_format = 0x7f06000d;
+ public static final int abc_action_bar_home_subtitle_description_format = 0x7f06000e;
+ public static final int abc_action_bar_up_description = 0x7f060001;
+ public static final int abc_action_menu_overflow_description = 0x7f060002;
+ public static final int abc_action_mode_done = 0x7f060003;
+ public static final int abc_activity_chooser_view_see_all = 0x7f060004;
+ public static final int abc_activitychooserview_choose_application = 0x7f060005;
+ public static final int abc_search_hint = 0x7f06000f;
+ public static final int abc_searchview_description_clear = 0x7f060006;
+ public static final int abc_searchview_description_query = 0x7f060007;
+ public static final int abc_searchview_description_search = 0x7f060008;
+ public static final int abc_searchview_description_submit = 0x7f060009;
+ public static final int abc_searchview_description_voice = 0x7f06000a;
+ public static final int abc_shareactionprovider_share_with = 0x7f06000b;
+ public static final int abc_shareactionprovider_share_with_application = 0x7f06000c;
+ public static final int abc_toolbar_collapse_description = 0x7f060010;
+ public static final int status_bar_notification_info_overflow = 0x7f060016;
+ }
+ public static final class style {
+ public static final int AlertDialog_AppCompat = 0x7f080073;
+ public static final int AlertDialog_AppCompat_Light = 0x7f080074;
+ public static final int Animation_AppCompat_Dialog = 0x7f080075;
+ public static final int Animation_AppCompat_DropDownUp = 0x7f080076;
+ public static final int Base_AlertDialog_AppCompat = 0x7f080078;
+ public static final int Base_AlertDialog_AppCompat_Light = 0x7f080079;
+ public static final int Base_Animation_AppCompat_Dialog = 0x7f08007a;
+ public static final int Base_Animation_AppCompat_DropDownUp = 0x7f08007b;
+ public static final int Base_DialogWindowTitleBackground_AppCompat = 0x7f08007d;
+ public static final int Base_DialogWindowTitle_AppCompat = 0x7f08007c;
+ public static final int Base_TextAppearance_AppCompat = 0x7f08002e;
+ public static final int Base_TextAppearance_AppCompat_Body1 = 0x7f08002f;
+ public static final int Base_TextAppearance_AppCompat_Body2 = 0x7f080030;
+ public static final int Base_TextAppearance_AppCompat_Button = 0x7f080018;
+ public static final int Base_TextAppearance_AppCompat_Caption = 0x7f080031;
+ public static final int Base_TextAppearance_AppCompat_Display1 = 0x7f080032;
+ public static final int Base_TextAppearance_AppCompat_Display2 = 0x7f080033;
+ public static final int Base_TextAppearance_AppCompat_Display3 = 0x7f080034;
+ public static final int Base_TextAppearance_AppCompat_Display4 = 0x7f080035;
+ public static final int Base_TextAppearance_AppCompat_Headline = 0x7f080036;
+ public static final int Base_TextAppearance_AppCompat_Inverse = 0x7f080003;
+ public static final int Base_TextAppearance_AppCompat_Large = 0x7f080037;
+ public static final int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f080004;
+ public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f080038;
+ public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f080039;
+ public static final int Base_TextAppearance_AppCompat_Medium = 0x7f08003a;
+ public static final int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f080005;
+ public static final int Base_TextAppearance_AppCompat_Menu = 0x7f08003b;
+ public static final int Base_TextAppearance_AppCompat_SearchResult = 0x7f08007e;
+ public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f08003c;
+ public static final int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f08003d;
+ public static final int Base_TextAppearance_AppCompat_Small = 0x7f08003e;
+ public static final int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f080006;
+ public static final int Base_TextAppearance_AppCompat_Subhead = 0x7f08003f;
+ public static final int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f080007;
+ public static final int Base_TextAppearance_AppCompat_Title = 0x7f080040;
+ public static final int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f080008;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f080041;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f080042;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f080043;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f080044;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f080045;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f080046;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f080047;
+ public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f08007f;
+ public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f080048;
+ public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f080049;
+ public static final int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f08004a;
+ public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f08004b;
+ public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f080080;
+ public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f08004c;
+ public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f08004d;
+ public static final int Base_ThemeOverlay_AppCompat = 0x7f080089;
+ public static final int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f08008a;
+ public static final int Base_ThemeOverlay_AppCompat_Dark = 0x7f08008b;
+ public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f08008c;
+ public static final int Base_ThemeOverlay_AppCompat_Light = 0x7f08008d;
+ public static final int Base_Theme_AppCompat = 0x7f08004e;
+ public static final int Base_Theme_AppCompat_CompactMenu = 0x7f080081;
+ public static final int Base_Theme_AppCompat_Dialog = 0x7f080009;
+ public static final int Base_Theme_AppCompat_DialogWhenLarge = 0x7f080001;
+ public static final int Base_Theme_AppCompat_Dialog_Alert = 0x7f080082;
+ public static final int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f080083;
+ public static final int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f080084;
+ public static final int Base_Theme_AppCompat_Light = 0x7f08004f;
+ public static final int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f080085;
+ public static final int Base_Theme_AppCompat_Light_Dialog = 0x7f08000a;
+ public static final int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f080002;
+ public static final int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f080086;
+ public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f080087;
+ public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f080088;
+ public static final int Base_V11_Theme_AppCompat_Dialog = 0x7f08000b;
+ public static final int Base_V11_Theme_AppCompat_Light_Dialog = 0x7f08000c;
+ public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView = 0x7f080014;
+ public static final int Base_V12_Widget_AppCompat_EditText = 0x7f080015;
+ public static final int Base_V21_Theme_AppCompat = 0x7f080050;
+ public static final int Base_V21_Theme_AppCompat_Dialog = 0x7f080051;
+ public static final int Base_V21_Theme_AppCompat_Light = 0x7f080052;
+ public static final int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f080053;
+ public static final int Base_V7_Theme_AppCompat = 0x7f08008e;
+ public static final int Base_V7_Theme_AppCompat_Dialog = 0x7f08008f;
+ public static final int Base_V7_Theme_AppCompat_Light = 0x7f080090;
+ public static final int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f080091;
+ public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView = 0x7f080092;
+ public static final int Base_V7_Widget_AppCompat_EditText = 0x7f080093;
+ public static final int Base_Widget_AppCompat_ActionBar = 0x7f080094;
+ public static final int Base_Widget_AppCompat_ActionBar_Solid = 0x7f080095;
+ public static final int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f080096;
+ public static final int Base_Widget_AppCompat_ActionBar_TabText = 0x7f080054;
+ public static final int Base_Widget_AppCompat_ActionBar_TabView = 0x7f080055;
+ public static final int Base_Widget_AppCompat_ActionButton = 0x7f080056;
+ public static final int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f080057;
+ public static final int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f080058;
+ public static final int Base_Widget_AppCompat_ActionMode = 0x7f080097;
+ public static final int Base_Widget_AppCompat_ActivityChooserView = 0x7f080098;
+ public static final int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f080016;
+ public static final int Base_Widget_AppCompat_Button = 0x7f080059;
+ public static final int Base_Widget_AppCompat_ButtonBar = 0x7f08005d;
+ public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f08009a;
+ public static final int Base_Widget_AppCompat_Button_Borderless = 0x7f08005a;
+ public static final int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f08005b;
+ public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f080099;
+ public static final int Base_Widget_AppCompat_Button_Small = 0x7f08005c;
+ public static final int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f08005e;
+ public static final int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f08005f;
+ public static final int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f08009b;
+ public static final int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f080000;
+ public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f08009c;
+ public static final int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f080060;
+ public static final int Base_Widget_AppCompat_EditText = 0x7f080017;
+ public static final int Base_Widget_AppCompat_Light_ActionBar = 0x7f08009d;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f08009e;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f08009f;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f080061;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f080062;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f080063;
+ public static final int Base_Widget_AppCompat_Light_PopupMenu = 0x7f080064;
+ public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f080065;
+ public static final int Base_Widget_AppCompat_ListPopupWindow = 0x7f080066;
+ public static final int Base_Widget_AppCompat_ListView = 0x7f080067;
+ public static final int Base_Widget_AppCompat_ListView_DropDown = 0x7f080068;
+ public static final int Base_Widget_AppCompat_ListView_Menu = 0x7f080069;
+ public static final int Base_Widget_AppCompat_PopupMenu = 0x7f08006a;
+ public static final int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f08006b;
+ public static final int Base_Widget_AppCompat_PopupWindow = 0x7f0800a0;
+ public static final int Base_Widget_AppCompat_ProgressBar = 0x7f08000d;
+ public static final int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f08000e;
+ public static final int Base_Widget_AppCompat_RatingBar = 0x7f08006c;
+ public static final int Base_Widget_AppCompat_SearchView = 0x7f0800a1;
+ public static final int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f0800a2;
+ public static final int Base_Widget_AppCompat_Spinner = 0x7f08000f;
+ public static final int Base_Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f08006d;
+ public static final int Base_Widget_AppCompat_Spinner_Underlined = 0x7f08006e;
+ public static final int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f08006f;
+ public static final int Base_Widget_AppCompat_Toolbar = 0x7f0800a3;
+ public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f080070;
+ public static final int Platform_AppCompat = 0x7f080010;
+ public static final int Platform_AppCompat_Light = 0x7f080011;
+ public static final int Platform_ThemeOverlay_AppCompat_Dark = 0x7f080071;
+ public static final int Platform_ThemeOverlay_AppCompat_Light = 0x7f080072;
+ public static final int Platform_V11_AppCompat = 0x7f080012;
+ public static final int Platform_V11_AppCompat_Light = 0x7f080013;
+ public static final int Platform_V14_AppCompat = 0x7f080019;
+ public static final int Platform_V14_AppCompat_Light = 0x7f08001a;
+ public static final int RtlOverlay_DialogWindowTitle_AppCompat = 0x7f080020;
+ public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f080021;
+ public static final int RtlOverlay_Widget_AppCompat_ActionButton_Overflow = 0x7f080022;
+ public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 0x7f080023;
+ public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f080024;
+ public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f080025;
+ public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f080026;
+ public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f08002c;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f080027;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f080028;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f080029;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f08002a;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f08002b;
+ public static final int RtlOverlay_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f08002d;
+ public static final int TextAppearance_AppCompat = 0x7f0800a4;
+ public static final int TextAppearance_AppCompat_Body1 = 0x7f0800a5;
+ public static final int TextAppearance_AppCompat_Body2 = 0x7f0800a6;
+ public static final int TextAppearance_AppCompat_Button = 0x7f0800a7;
+ public static final int TextAppearance_AppCompat_Caption = 0x7f0800a8;
+ public static final int TextAppearance_AppCompat_Display1 = 0x7f0800a9;
+ public static final int TextAppearance_AppCompat_Display2 = 0x7f0800aa;
+ public static final int TextAppearance_AppCompat_Display3 = 0x7f0800ab;
+ public static final int TextAppearance_AppCompat_Display4 = 0x7f0800ac;
+ public static final int TextAppearance_AppCompat_Headline = 0x7f0800ad;
+ public static final int TextAppearance_AppCompat_Inverse = 0x7f0800ae;
+ public static final int TextAppearance_AppCompat_Large = 0x7f0800af;
+ public static final int TextAppearance_AppCompat_Large_Inverse = 0x7f0800b0;
+ public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0800b1;
+ public static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0800b2;
+ public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0800b3;
+ public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0800b4;
+ public static final int TextAppearance_AppCompat_Medium = 0x7f0800b5;
+ public static final int TextAppearance_AppCompat_Medium_Inverse = 0x7f0800b6;
+ public static final int TextAppearance_AppCompat_Menu = 0x7f0800b7;
+ public static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0800b8;
+ public static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f0800b9;
+ public static final int TextAppearance_AppCompat_Small = 0x7f0800ba;
+ public static final int TextAppearance_AppCompat_Small_Inverse = 0x7f0800bb;
+ public static final int TextAppearance_AppCompat_Subhead = 0x7f0800bc;
+ public static final int TextAppearance_AppCompat_Subhead_Inverse = 0x7f0800bd;
+ public static final int TextAppearance_AppCompat_Title = 0x7f0800be;
+ public static final int TextAppearance_AppCompat_Title_Inverse = 0x7f0800bf;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0800c0;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0800c1;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0800c2;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0800c3;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0800c4;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0800c5;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0800c6;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0800c7;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0800c8;
+ public static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0800c9;
+ public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0800ca;
+ public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0800cb;
+ public static final int TextAppearance_AppCompat_Widget_Switch = 0x7f0800cc;
+ public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0800cd;
+ public static final int TextAppearance_StatusBar_EventContent = 0x7f08001b;
+ public static final int TextAppearance_StatusBar_EventContent_Info = 0x7f08001c;
+ public static final int TextAppearance_StatusBar_EventContent_Line2 = 0x7f08001d;
+ public static final int TextAppearance_StatusBar_EventContent_Time = 0x7f08001e;
+ public static final int TextAppearance_StatusBar_EventContent_Title = 0x7f08001f;
+ public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0800ce;
+ public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0800cf;
+ public static final int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0800d0;
+ public static final int ThemeOverlay_AppCompat = 0x7f0800df;
+ public static final int ThemeOverlay_AppCompat_ActionBar = 0x7f0800e0;
+ public static final int ThemeOverlay_AppCompat_Dark = 0x7f0800e1;
+ public static final int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0800e2;
+ public static final int ThemeOverlay_AppCompat_Light = 0x7f0800e3;
+ public static final int Theme_AppCompat = 0x7f0800d1;
+ public static final int Theme_AppCompat_CompactMenu = 0x7f0800d2;
+ public static final int Theme_AppCompat_Dialog = 0x7f0800d3;
+ public static final int Theme_AppCompat_DialogWhenLarge = 0x7f0800d6;
+ public static final int Theme_AppCompat_Dialog_Alert = 0x7f0800d4;
+ public static final int Theme_AppCompat_Dialog_MinWidth = 0x7f0800d5;
+ public static final int Theme_AppCompat_Light = 0x7f0800d7;
+ public static final int Theme_AppCompat_Light_DarkActionBar = 0x7f0800d8;
+ public static final int Theme_AppCompat_Light_Dialog = 0x7f0800d9;
+ public static final int Theme_AppCompat_Light_DialogWhenLarge = 0x7f0800dc;
+ public static final int Theme_AppCompat_Light_Dialog_Alert = 0x7f0800da;
+ public static final int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0800db;
+ public static final int Theme_AppCompat_Light_NoActionBar = 0x7f0800dd;
+ public static final int Theme_AppCompat_NoActionBar = 0x7f0800de;
+ public static final int Widget_AppCompat_ActionBar = 0x7f0800e4;
+ public static final int Widget_AppCompat_ActionBar_Solid = 0x7f0800e5;
+ public static final int Widget_AppCompat_ActionBar_TabBar = 0x7f0800e6;
+ public static final int Widget_AppCompat_ActionBar_TabText = 0x7f0800e7;
+ public static final int Widget_AppCompat_ActionBar_TabView = 0x7f0800e8;
+ public static final int Widget_AppCompat_ActionButton = 0x7f0800e9;
+ public static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f0800ea;
+ public static final int Widget_AppCompat_ActionButton_Overflow = 0x7f0800eb;
+ public static final int Widget_AppCompat_ActionMode = 0x7f0800ec;
+ public static final int Widget_AppCompat_ActivityChooserView = 0x7f0800ed;
+ public static final int Widget_AppCompat_AutoCompleteTextView = 0x7f0800ee;
+ public static final int Widget_AppCompat_Button = 0x7f0800ef;
+ public static final int Widget_AppCompat_ButtonBar = 0x7f0800f4;
+ public static final int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0800f5;
+ public static final int Widget_AppCompat_Button_Borderless = 0x7f0800f0;
+ public static final int Widget_AppCompat_Button_Borderless_Colored = 0x7f0800f1;
+ public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0800f2;
+ public static final int Widget_AppCompat_Button_Small = 0x7f0800f3;
+ public static final int Widget_AppCompat_CompoundButton_CheckBox = 0x7f0800f6;
+ public static final int Widget_AppCompat_CompoundButton_RadioButton = 0x7f0800f7;
+ public static final int Widget_AppCompat_CompoundButton_Switch = 0x7f0800f8;
+ public static final int Widget_AppCompat_DrawerArrowToggle = 0x7f0800f9;
+ public static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f0800fa;
+ public static final int Widget_AppCompat_EditText = 0x7f0800fb;
+ public static final int Widget_AppCompat_Light_ActionBar = 0x7f0800fc;
+ public static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f0800fd;
+ public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f0800fe;
+ public static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0800ff;
+ public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f080100;
+ public static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f080101;
+ public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f080102;
+ public static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f080103;
+ public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f080104;
+ public static final int Widget_AppCompat_Light_ActionButton = 0x7f080105;
+ public static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f080106;
+ public static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f080107;
+ public static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f080108;
+ public static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f080109;
+ public static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f08010a;
+ public static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f08010b;
+ public static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f08010c;
+ public static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f08010d;
+ public static final int Widget_AppCompat_Light_PopupMenu = 0x7f08010e;
+ public static final int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f08010f;
+ public static final int Widget_AppCompat_Light_SearchView = 0x7f080110;
+ public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f080111;
+ public static final int Widget_AppCompat_ListPopupWindow = 0x7f080112;
+ public static final int Widget_AppCompat_ListView = 0x7f080113;
+ public static final int Widget_AppCompat_ListView_DropDown = 0x7f080114;
+ public static final int Widget_AppCompat_ListView_Menu = 0x7f080115;
+ public static final int Widget_AppCompat_PopupMenu = 0x7f080116;
+ public static final int Widget_AppCompat_PopupMenu_Overflow = 0x7f080117;
+ public static final int Widget_AppCompat_PopupWindow = 0x7f080118;
+ public static final int Widget_AppCompat_ProgressBar = 0x7f080119;
+ public static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f08011a;
+ public static final int Widget_AppCompat_RatingBar = 0x7f08011b;
+ public static final int Widget_AppCompat_SearchView = 0x7f08011c;
+ public static final int Widget_AppCompat_SearchView_ActionBar = 0x7f08011d;
+ public static final int Widget_AppCompat_Spinner = 0x7f08011e;
+ public static final int Widget_AppCompat_Spinner_DropDown = 0x7f08011f;
+ public static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f080120;
+ public static final int Widget_AppCompat_Spinner_Underlined = 0x7f080121;
+ public static final int Widget_AppCompat_TextView_SpinnerItem = 0x7f080122;
+ public static final int Widget_AppCompat_Toolbar = 0x7f080123;
+ public static final int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f080124;
+ }
+ public static final class styleable {
+ public static final int[] ActionBar = { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01007d };
+ public static final int[] ActionBarLayout = { 0x010100b3 };
+ public static final int ActionBarLayout_android_layout_gravity = 0;
+ public static final int ActionBar_background = 10;
+ public static final int ActionBar_backgroundSplit = 12;
+ public static final int ActionBar_backgroundStacked = 11;
+ public static final int ActionBar_contentInsetEnd = 21;
+ public static final int ActionBar_contentInsetLeft = 22;
+ public static final int ActionBar_contentInsetRight = 23;
+ public static final int ActionBar_contentInsetStart = 20;
+ public static final int ActionBar_customNavigationLayout = 13;
+ public static final int ActionBar_displayOptions = 3;
+ public static final int ActionBar_divider = 9;
+ public static final int ActionBar_elevation = 24;
+ public static final int ActionBar_height = 0;
+ public static final int ActionBar_hideOnContentScroll = 19;
+ public static final int ActionBar_homeAsUpIndicator = 26;
+ public static final int ActionBar_homeLayout = 14;
+ public static final int ActionBar_icon = 7;
+ public static final int ActionBar_indeterminateProgressStyle = 16;
+ public static final int ActionBar_itemPadding = 18;
+ public static final int ActionBar_logo = 8;
+ public static final int ActionBar_navigationMode = 2;
+ public static final int ActionBar_popupTheme = 25;
+ public static final int ActionBar_progressBarPadding = 17;
+ public static final int ActionBar_progressBarStyle = 15;
+ public static final int ActionBar_subtitle = 4;
+ public static final int ActionBar_subtitleTextStyle = 6;
+ public static final int ActionBar_title = 1;
+ public static final int ActionBar_titleTextStyle = 5;
+ public static final int[] ActionMenuItemView = { 0x0101013f };
+ public static final int ActionMenuItemView_android_minWidth = 0;
+ public static final int[] ActionMenuView = { };
+ public static final int[] ActionMode = { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c };
+ public static final int ActionMode_background = 3;
+ public static final int ActionMode_backgroundSplit = 4;
+ public static final int ActionMode_closeItemLayout = 5;
+ public static final int ActionMode_height = 0;
+ public static final int ActionMode_subtitleTextStyle = 2;
+ public static final int ActionMode_titleTextStyle = 1;
+ public static final int[] ActivityChooserView = { 0x7f01001d, 0x7f01001e };
+ public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
+ public static final int ActivityChooserView_initialActivityCount = 0;
+ public static final int[] AlertDialog = { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 };
+ public static final int AlertDialog_android_layout = 0;
+ public static final int AlertDialog_buttonPanelSideLayout = 1;
+ public static final int AlertDialog_listItemLayout = 5;
+ public static final int AlertDialog_listLayout = 2;
+ public static final int AlertDialog_multiChoiceItemLayout = 3;
+ public static final int AlertDialog_singleChoiceItemLayout = 4;
+ public static final int[] AppCompatTextView = { 0x01010034, 0x7f010024 };
+ public static final int AppCompatTextView_android_textAppearance = 0;
+ public static final int AppCompatTextView_textAllCaps = 1;
+ public static final int[] DrawerArrowToggle = { 0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c };
+ public static final int DrawerArrowToggle_barSize = 6;
+ public static final int DrawerArrowToggle_color = 0;
+ public static final int DrawerArrowToggle_drawableSize = 2;
+ public static final int DrawerArrowToggle_gapBetweenBars = 3;
+ public static final int DrawerArrowToggle_middleBarArrowSize = 5;
+ public static final int DrawerArrowToggle_spinBars = 1;
+ public static final int DrawerArrowToggle_thickness = 7;
+ public static final int DrawerArrowToggle_topBottomBarArrowSize = 4;
+ public static final int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f01002d, 0x7f01002e, 0x7f01002f };
+ public static final int[] LinearLayoutCompat_Layout = { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 };
+ public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0;
+ public static final int LinearLayoutCompat_Layout_android_layout_height = 2;
+ public static final int LinearLayoutCompat_Layout_android_layout_weight = 3;
+ public static final int LinearLayoutCompat_Layout_android_layout_width = 1;
+ public static final int LinearLayoutCompat_android_baselineAligned = 2;
+ public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
+ public static final int LinearLayoutCompat_android_gravity = 0;
+ public static final int LinearLayoutCompat_android_orientation = 1;
+ public static final int LinearLayoutCompat_android_weightSum = 4;
+ public static final int LinearLayoutCompat_divider = 5;
+ public static final int LinearLayoutCompat_dividerPadding = 8;
+ public static final int LinearLayoutCompat_measureWithLargestChild = 6;
+ public static final int LinearLayoutCompat_showDividers = 7;
+ public static final int[] ListPopupWindow = { 0x010102ac, 0x010102ad };
+ public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0;
+ public static final int ListPopupWindow_android_dropDownVerticalOffset = 1;
+ public static final int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 };
+ public static final int MenuGroup_android_checkableBehavior = 5;
+ public static final int MenuGroup_android_enabled = 0;
+ public static final int MenuGroup_android_id = 1;
+ public static final int MenuGroup_android_menuCategory = 3;
+ public static final int MenuGroup_android_orderInCategory = 4;
+ public static final int MenuGroup_android_visible = 2;
+ public static final int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033 };
+ public static final int MenuItem_actionLayout = 14;
+ public static final int MenuItem_actionProviderClass = 16;
+ public static final int MenuItem_actionViewClass = 15;
+ public static final int MenuItem_android_alphabeticShortcut = 9;
+ public static final int MenuItem_android_checkable = 11;
+ public static final int MenuItem_android_checked = 3;
+ public static final int MenuItem_android_enabled = 1;
+ public static final int MenuItem_android_icon = 0;
+ public static final int MenuItem_android_id = 2;
+ public static final int MenuItem_android_menuCategory = 5;
+ public static final int MenuItem_android_numericShortcut = 10;
+ public static final int MenuItem_android_onClick = 12;
+ public static final int MenuItem_android_orderInCategory = 6;
+ public static final int MenuItem_android_title = 7;
+ public static final int MenuItem_android_titleCondensed = 8;
+ public static final int MenuItem_android_visible = 4;
+ public static final int MenuItem_showAsAction = 13;
+ public static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f010034 };
+ public static final int MenuView_android_headerBackground = 4;
+ public static final int MenuView_android_horizontalDivider = 2;
+ public static final int MenuView_android_itemBackground = 5;
+ public static final int MenuView_android_itemIconDisabledAlpha = 6;
+ public static final int MenuView_android_itemTextAppearance = 1;
+ public static final int MenuView_android_verticalDivider = 3;
+ public static final int MenuView_android_windowAnimationStyle = 0;
+ public static final int MenuView_preserveIconSpacing = 7;
+ public static final int[] PopupWindow = { 0x01010176, 0x7f010035 };
+ public static final int[] PopupWindowBackgroundState = { 0x7f010036 };
+ public static final int PopupWindowBackgroundState_state_above_anchor = 0;
+ public static final int PopupWindow_android_popupBackground = 0;
+ public static final int PopupWindow_overlapAnchor = 1;
+ public static final int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043 };
+ public static final int SearchView_android_focusable = 0;
+ public static final int SearchView_android_imeOptions = 3;
+ public static final int SearchView_android_inputType = 2;
+ public static final int SearchView_android_maxWidth = 1;
+ public static final int SearchView_closeIcon = 8;
+ public static final int SearchView_commitIcon = 13;
+ public static final int SearchView_defaultQueryHint = 7;
+ public static final int SearchView_goIcon = 9;
+ public static final int SearchView_iconifiedByDefault = 5;
+ public static final int SearchView_layout = 4;
+ public static final int SearchView_queryBackground = 15;
+ public static final int SearchView_queryHint = 6;
+ public static final int SearchView_searchHintIcon = 11;
+ public static final int SearchView_searchIcon = 10;
+ public static final int SearchView_submitBackground = 16;
+ public static final int SearchView_suggestionRowLayout = 14;
+ public static final int SearchView_voiceIcon = 12;
+ public static final int[] Spinner = { 0x010100af, 0x010100d4, 0x01010175, 0x01010176, 0x01010262, 0x010102ac, 0x010102ad, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047 };
+ public static final int Spinner_android_background = 1;
+ public static final int Spinner_android_dropDownHorizontalOffset = 5;
+ public static final int Spinner_android_dropDownSelector = 2;
+ public static final int Spinner_android_dropDownVerticalOffset = 6;
+ public static final int Spinner_android_dropDownWidth = 4;
+ public static final int Spinner_android_gravity = 0;
+ public static final int Spinner_android_popupBackground = 3;
+ public static final int Spinner_disableChildrenWhenDisabled = 10;
+ public static final int Spinner_popupPromptView = 9;
+ public static final int Spinner_prompt = 7;
+ public static final int Spinner_spinnerMode = 8;
+ public static final int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e };
+ public static final int SwitchCompat_android_textOff = 1;
+ public static final int SwitchCompat_android_textOn = 0;
+ public static final int SwitchCompat_android_thumb = 2;
+ public static final int SwitchCompat_showText = 9;
+ public static final int SwitchCompat_splitTrack = 8;
+ public static final int SwitchCompat_switchMinWidth = 6;
+ public static final int SwitchCompat_switchPadding = 7;
+ public static final int SwitchCompat_switchTextAppearance = 5;
+ public static final int SwitchCompat_thumbTextPadding = 4;
+ public static final int SwitchCompat_track = 3;
+ public static final int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x7f010024 };
+ public static final int TextAppearance_android_textColor = 3;
+ public static final int TextAppearance_android_textSize = 0;
+ public static final int TextAppearance_android_textStyle = 2;
+ public static final int TextAppearance_android_typeface = 1;
+ public static final int TextAppearance_textAllCaps = 4;
+ public static final int[] Theme = { 0x01010057, 0x010100ae, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7 };
+ public static final int Theme_actionBarDivider = 23;
+ public static final int Theme_actionBarItemBackground = 24;
+ public static final int Theme_actionBarPopupTheme = 17;
+ public static final int Theme_actionBarSize = 22;
+ public static final int Theme_actionBarSplitStyle = 19;
+ public static final int Theme_actionBarStyle = 18;
+ public static final int Theme_actionBarTabBarStyle = 13;
+ public static final int Theme_actionBarTabStyle = 12;
+ public static final int Theme_actionBarTabTextStyle = 14;
+ public static final int Theme_actionBarTheme = 20;
+ public static final int Theme_actionBarWidgetTheme = 21;
+ public static final int Theme_actionButtonStyle = 49;
+ public static final int Theme_actionDropDownStyle = 45;
+ public static final int Theme_actionMenuTextAppearance = 25;
+ public static final int Theme_actionMenuTextColor = 26;
+ public static final int Theme_actionModeBackground = 29;
+ public static final int Theme_actionModeCloseButtonStyle = 28;
+ public static final int Theme_actionModeCloseDrawable = 31;
+ public static final int Theme_actionModeCopyDrawable = 33;
+ public static final int Theme_actionModeCutDrawable = 32;
+ public static final int Theme_actionModeFindDrawable = 37;
+ public static final int Theme_actionModePasteDrawable = 34;
+ public static final int Theme_actionModePopupWindowStyle = 39;
+ public static final int Theme_actionModeSelectAllDrawable = 35;
+ public static final int Theme_actionModeShareDrawable = 36;
+ public static final int Theme_actionModeSplitBackground = 30;
+ public static final int Theme_actionModeStyle = 27;
+ public static final int Theme_actionModeWebSearchDrawable = 38;
+ public static final int Theme_actionOverflowButtonStyle = 15;
+ public static final int Theme_actionOverflowMenuStyle = 16;
+ public static final int Theme_activityChooserViewStyle = 57;
+ public static final int Theme_alertDialogButtonGroupStyle = 90;
+ public static final int Theme_alertDialogCenterButtons = 91;
+ public static final int Theme_alertDialogStyle = 89;
+ public static final int Theme_alertDialogTheme = 92;
+ public static final int Theme_android_windowAnimationStyle = 1;
+ public static final int Theme_android_windowIsFloating = 0;
+ public static final int Theme_autoCompleteTextViewStyle = 97;
+ public static final int Theme_borderlessButtonStyle = 54;
+ public static final int Theme_buttonBarButtonStyle = 51;
+ public static final int Theme_buttonBarNegativeButtonStyle = 95;
+ public static final int Theme_buttonBarNeutralButtonStyle = 96;
+ public static final int Theme_buttonBarPositiveButtonStyle = 94;
+ public static final int Theme_buttonBarStyle = 50;
+ public static final int Theme_buttonStyle = 98;
+ public static final int Theme_buttonStyleSmall = 99;
+ public static final int Theme_checkboxStyle = 100;
+ public static final int Theme_checkedTextViewStyle = 101;
+ public static final int Theme_colorAccent = 83;
+ public static final int Theme_colorButtonNormal = 87;
+ public static final int Theme_colorControlActivated = 85;
+ public static final int Theme_colorControlHighlight = 86;
+ public static final int Theme_colorControlNormal = 84;
+ public static final int Theme_colorPrimary = 81;
+ public static final int Theme_colorPrimaryDark = 82;
+ public static final int Theme_colorSwitchThumbNormal = 88;
+ public static final int Theme_dialogPreferredPadding = 43;
+ public static final int Theme_dialogTheme = 42;
+ public static final int Theme_dividerHorizontal = 56;
+ public static final int Theme_dividerVertical = 55;
+ public static final int Theme_dropDownListViewStyle = 73;
+ public static final int Theme_dropdownListPreferredItemHeight = 46;
+ public static final int Theme_editTextBackground = 63;
+ public static final int Theme_editTextColor = 62;
+ public static final int Theme_editTextStyle = 102;
+ public static final int Theme_homeAsUpIndicator = 48;
+ public static final int Theme_listChoiceBackgroundIndicator = 80;
+ public static final int Theme_listDividerAlertDialog = 44;
+ public static final int Theme_listPopupWindowStyle = 74;
+ public static final int Theme_listPreferredItemHeight = 68;
+ public static final int Theme_listPreferredItemHeightLarge = 70;
+ public static final int Theme_listPreferredItemHeightSmall = 69;
+ public static final int Theme_listPreferredItemPaddingLeft = 71;
+ public static final int Theme_listPreferredItemPaddingRight = 72;
+ public static final int Theme_panelBackground = 77;
+ public static final int Theme_panelMenuListTheme = 79;
+ public static final int Theme_panelMenuListWidth = 78;
+ public static final int Theme_popupMenuStyle = 60;
+ public static final int Theme_popupWindowStyle = 61;
+ public static final int Theme_radioButtonStyle = 103;
+ public static final int Theme_ratingBarStyle = 104;
+ public static final int Theme_searchViewStyle = 67;
+ public static final int Theme_selectableItemBackground = 52;
+ public static final int Theme_selectableItemBackgroundBorderless = 53;
+ public static final int Theme_spinnerDropDownItemStyle = 47;
+ public static final int Theme_spinnerStyle = 105;
+ public static final int Theme_switchStyle = 106;
+ public static final int Theme_textAppearanceLargePopupMenu = 40;
+ public static final int Theme_textAppearanceListItem = 75;
+ public static final int Theme_textAppearanceListItemSmall = 76;
+ public static final int Theme_textAppearanceSearchResultSubtitle = 65;
+ public static final int Theme_textAppearanceSearchResultTitle = 64;
+ public static final int Theme_textAppearanceSmallPopupMenu = 41;
+ public static final int Theme_textColorAlertDialogListItem = 93;
+ public static final int Theme_textColorSearchUrl = 66;
+ public static final int Theme_toolbarNavigationButtonStyle = 59;
+ public static final int Theme_toolbarStyle = 58;
+ public static final int Theme_windowActionBar = 2;
+ public static final int Theme_windowActionBarOverlay = 4;
+ public static final int Theme_windowActionModeOverlay = 5;
+ public static final int Theme_windowFixedHeightMajor = 9;
+ public static final int Theme_windowFixedHeightMinor = 7;
+ public static final int Theme_windowFixedWidthMajor = 6;
+ public static final int Theme_windowFixedWidthMinor = 8;
+ public static final int Theme_windowMinWidthMajor = 10;
+ public static final int Theme_windowMinWidthMinor = 11;
+ public static final int Theme_windowNoTitle = 3;
+ public static final int[] Toolbar = { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3 };
+ public static final int Toolbar_android_gravity = 0;
+ public static final int Toolbar_android_minHeight = 1;
+ public static final int Toolbar_collapseContentDescription = 18;
+ public static final int Toolbar_collapseIcon = 17;
+ public static final int Toolbar_contentInsetEnd = 5;
+ public static final int Toolbar_contentInsetLeft = 6;
+ public static final int Toolbar_contentInsetRight = 7;
+ public static final int Toolbar_contentInsetStart = 4;
+ public static final int Toolbar_maxButtonHeight = 16;
+ public static final int Toolbar_navigationContentDescription = 20;
+ public static final int Toolbar_navigationIcon = 19;
+ public static final int Toolbar_popupTheme = 8;
+ public static final int Toolbar_subtitle = 3;
+ public static final int Toolbar_subtitleTextAppearance = 10;
+ public static final int Toolbar_title = 2;
+ public static final int Toolbar_titleMarginBottom = 15;
+ public static final int Toolbar_titleMarginEnd = 13;
+ public static final int Toolbar_titleMarginStart = 12;
+ public static final int Toolbar_titleMarginTop = 14;
+ public static final int Toolbar_titleMargins = 11;
+ public static final int Toolbar_titleTextAppearance = 9;
+ public static final int[] View = { 0x01010000, 0x010100da, 0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8 };
+ public static final int[] ViewStubCompat = { 0x010100d0, 0x010100f2, 0x010100f3 };
+ public static final int ViewStubCompat_android_id = 0;
+ public static final int ViewStubCompat_android_inflatedId = 2;
+ public static final int ViewStubCompat_android_layout = 1;
+ public static final int View_android_focusable = 1;
+ public static final int View_android_theme = 0;
+ public static final int View_backgroundTint = 5;
+ public static final int View_backgroundTintMode = 6;
+ public static final int View_paddingEnd = 3;
+ public static final int View_paddingStart = 2;
+ public static final int View_theme = 4;
+ }
+}
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/generated/source/r/debug/com/parse/starter/Manifest.java b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/generated/source/r/debug/com/parse/starter/Manifest.java
new file mode 100644
index 0000000..acb0326
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/generated/source/r/debug/com/parse/starter/Manifest.java
@@ -0,0 +1,14 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+
+package com.parse.starter;
+
+public final class Manifest {
+ public static final class permission {
+ public static final String C2D_MESSAGE="com.parse.starter.permission.C2D_MESSAGE";
+ }
+}
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/generated/source/r/debug/com/parse/starter/R.java b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/generated/source/r/debug/com/parse/starter/R.java
new file mode 100644
index 0000000..624dfd2
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/generated/source/r/debug/com/parse/starter/R.java
@@ -0,0 +1,5975 @@
+/* AUTO-GENERATED FILE. DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found. It
+ * should not be modified by hand.
+ */
+
+package com.parse.starter;
+
+public final class R {
+ public static final class anim {
+ public static final int abc_fade_in=0x7f050000;
+ public static final int abc_fade_out=0x7f050001;
+ public static final int abc_grow_fade_in_from_bottom=0x7f050002;
+ public static final int abc_popup_enter=0x7f050003;
+ public static final int abc_popup_exit=0x7f050004;
+ public static final int abc_shrink_fade_out_from_bottom=0x7f050005;
+ public static final int abc_slide_in_bottom=0x7f050006;
+ public static final int abc_slide_in_top=0x7f050007;
+ public static final int abc_slide_out_bottom=0x7f050008;
+ public static final int abc_slide_out_top=0x7f050009;
+ }
+ public static final class attr {
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionBarDivider=0x7f010064;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionBarItemBackground=0x7f010065;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionBarPopupTheme=0x7f01005e;
+ /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+
May be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
wrap_content
0
+
+ */
+ public static final int actionBarSize=0x7f010063;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionBarSplitStyle=0x7f010060;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionBarStyle=0x7f01005f;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionBarTabBarStyle=0x7f01005a;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionBarTabStyle=0x7f010059;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionBarTabTextStyle=0x7f01005b;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionBarTheme=0x7f010061;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionBarWidgetTheme=0x7f010062;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionButtonStyle=0x7f01007e;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionDropDownStyle=0x7f01007a;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionLayout=0x7f010031;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionMenuTextAppearance=0x7f010066;
+ /**
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ */
+ public static final int actionMenuTextColor=0x7f010067;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionModeBackground=0x7f01006a;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionModeCloseButtonStyle=0x7f010069;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionModeCloseDrawable=0x7f01006c;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionModeCopyDrawable=0x7f01006e;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionModeCutDrawable=0x7f01006d;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionModeFindDrawable=0x7f010072;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionModePasteDrawable=0x7f01006f;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionModePopupWindowStyle=0x7f010074;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionModeSelectAllDrawable=0x7f010070;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionModeShareDrawable=0x7f010071;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionModeSplitBackground=0x7f01006b;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionModeStyle=0x7f010068;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionModeWebSearchDrawable=0x7f010073;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionOverflowButtonStyle=0x7f01005c;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int actionOverflowMenuStyle=0x7f01005d;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int actionProviderClass=0x7f010033;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int actionViewClass=0x7f010032;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int activityChooserViewStyle=0x7f010086;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int alertDialogButtonGroupStyle=0x7f0100a7;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int alertDialogCenterButtons=0x7f0100a8;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int alertDialogStyle=0x7f0100a6;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int alertDialogTheme=0x7f0100a9;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int autoCompleteTextViewStyle=0x7f0100ae;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int background=0x7f01000c;
+ /**
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ */
+ public static final int backgroundSplit=0x7f01000e;
+ /**
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ */
+ public static final int backgroundStacked=0x7f01000d;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int backgroundTint=0x7f0100c7;
+ /**
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
src_over
3
+
src_in
5
+
src_atop
9
+
multiply
14
+
screen
15
+
+ */
+ public static final int backgroundTintMode=0x7f0100c8;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int barSize=0x7f01002b;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int borderlessButtonStyle=0x7f010083;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int buttonBarButtonStyle=0x7f010080;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int buttonBarNegativeButtonStyle=0x7f0100ac;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int buttonBarNeutralButtonStyle=0x7f0100ad;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int buttonBarPositiveButtonStyle=0x7f0100ab;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int buttonBarStyle=0x7f01007f;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int buttonPanelSideLayout=0x7f01001f;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int buttonStyle=0x7f0100af;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int buttonStyleSmall=0x7f0100b0;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int checkboxStyle=0x7f0100b1;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int checkedTextViewStyle=0x7f0100b2;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int closeIcon=0x7f01003b;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int closeItemLayout=0x7f01001c;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int collapseContentDescription=0x7f0100c1;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int collapseIcon=0x7f0100c0;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int color=0x7f010025;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int colorAccent=0x7f0100a0;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int colorButtonNormal=0x7f0100a4;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int colorControlActivated=0x7f0100a2;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int colorControlHighlight=0x7f0100a3;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int colorControlNormal=0x7f0100a1;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int colorPrimary=0x7f01009e;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int colorPrimaryDark=0x7f01009f;
+ /**
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int colorSwitchThumbNormal=0x7f0100a5;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int commitIcon=0x7f010040;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int contentInsetEnd=0x7f010017;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int contentInsetLeft=0x7f010018;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int contentInsetRight=0x7f010019;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int contentInsetStart=0x7f010016;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int customNavigationLayout=0x7f01000f;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int defaultQueryHint=0x7f01003a;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int dialogPreferredPadding=0x7f010078;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int dialogTheme=0x7f010077;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int disableChildrenWhenDisabled=0x7f010047;
+ /**
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
0
+
useLogo
0x1
+
showHome
0x2
+
homeAsUp
0x4
+
showTitle
0x8
+
showCustom
0x10
+
disableHome
0x20
+
+ */
+ public static final int displayOptions=0x7f010005;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int divider=0x7f01000b;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int dividerHorizontal=0x7f010085;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int dividerPadding=0x7f01002f;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int dividerVertical=0x7f010084;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int drawableSize=0x7f010027;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int drawerArrowStyle=0x7f010000;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int dropDownListViewStyle=0x7f010096;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int dropdownListPreferredItemHeight=0x7f01007b;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int editTextBackground=0x7f01008c;
+ /**
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ */
+ public static final int editTextColor=0x7f01008b;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int editTextStyle=0x7f0100b3;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int elevation=0x7f01001a;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int expandActivityOverflowButtonDrawable=0x7f01001e;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int gapBetweenBars=0x7f010028;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int goIcon=0x7f01003c;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int height=0x7f010001;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int hideOnContentScroll=0x7f010015;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int homeAsUpIndicator=0x7f01007d;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int homeLayout=0x7f010010;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int icon=0x7f010009;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int iconifiedByDefault=0x7f010038;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int indeterminateProgressStyle=0x7f010012;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int initialActivityCount=0x7f01001d;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int isLightTheme=0x7f010002;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int itemPadding=0x7f010014;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int layout=0x7f010037;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int listChoiceBackgroundIndicator=0x7f01009d;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int listDividerAlertDialog=0x7f010079;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int listItemLayout=0x7f010023;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int listLayout=0x7f010020;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int listPopupWindowStyle=0x7f010097;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int listPreferredItemHeight=0x7f010091;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int listPreferredItemHeightLarge=0x7f010093;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int listPreferredItemHeightSmall=0x7f010092;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int listPreferredItemPaddingLeft=0x7f010094;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int listPreferredItemPaddingRight=0x7f010095;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int logo=0x7f01000a;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int maxButtonHeight=0x7f0100bf;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int measureWithLargestChild=0x7f01002d;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int middleBarArrowSize=0x7f01002a;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int multiChoiceItemLayout=0x7f010021;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int navigationContentDescription=0x7f0100c3;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int navigationIcon=0x7f0100c2;
+ /**
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
normal
0
+
listMode
1
+
tabMode
2
+
+ */
+ public static final int navigationMode=0x7f010004;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int overlapAnchor=0x7f010035;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int paddingEnd=0x7f0100c5;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int paddingStart=0x7f0100c4;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int panelBackground=0x7f01009a;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int panelMenuListTheme=0x7f01009c;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int panelMenuListWidth=0x7f01009b;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int popupMenuStyle=0x7f010089;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int popupPromptView=0x7f010046;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int popupTheme=0x7f01001b;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int popupWindowStyle=0x7f01008a;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int preserveIconSpacing=0x7f010034;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int progressBarPadding=0x7f010013;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int progressBarStyle=0x7f010011;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int prompt=0x7f010044;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int queryBackground=0x7f010042;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int queryHint=0x7f010039;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int radioButtonStyle=0x7f0100b4;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int ratingBarStyle=0x7f0100b5;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int searchHintIcon=0x7f01003e;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int searchIcon=0x7f01003d;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int searchViewStyle=0x7f010090;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int selectableItemBackground=0x7f010081;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int selectableItemBackgroundBorderless=0x7f010082;
+ /**
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
never
0
+
ifRoom
1
+
always
2
+
withText
4
+
collapseActionView
8
+
+ */
+ public static final int showAsAction=0x7f010030;
+ /**
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
0
+
beginning
1
+
middle
2
+
end
4
+
+ */
+ public static final int showDividers=0x7f01002e;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int showText=0x7f01004e;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int singleChoiceItemLayout=0x7f010022;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int spinBars=0x7f010026;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int spinnerDropDownItemStyle=0x7f01007c;
+ /**
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
dialog
0
+
dropdown
1
+
+ */
+ public static final int spinnerMode=0x7f010045;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int spinnerStyle=0x7f0100b6;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int splitTrack=0x7f01004d;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int state_above_anchor=0x7f010036;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int submitBackground=0x7f010043;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int subtitle=0x7f010006;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int subtitleTextAppearance=0x7f0100b9;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int subtitleTextStyle=0x7f010008;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int suggestionRowLayout=0x7f010041;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int switchMinWidth=0x7f01004b;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int switchPadding=0x7f01004c;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int switchStyle=0x7f0100b7;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int switchTextAppearance=0x7f01004a;
+ /**
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a boolean value, either "true" or "false".
+ */
+ public static final int textAllCaps=0x7f010024;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int textAppearanceLargePopupMenu=0x7f010075;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int textAppearanceListItem=0x7f010098;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int textAppearanceListItemSmall=0x7f010099;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int textAppearanceSearchResultSubtitle=0x7f01008e;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int textAppearanceSearchResultTitle=0x7f01008d;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int textAppearanceSmallPopupMenu=0x7f010076;
+ /**
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ */
+ public static final int textColorAlertDialogListItem=0x7f0100aa;
+ /**
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ */
+ public static final int textColorSearchUrl=0x7f01008f;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int theme=0x7f0100c6;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int thickness=0x7f01002c;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int thumbTextPadding=0x7f010049;
+ /**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int title=0x7f010003;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int titleMarginBottom=0x7f0100be;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int titleMarginEnd=0x7f0100bc;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int titleMarginStart=0x7f0100bb;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int titleMarginTop=0x7f0100bd;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int titleMargins=0x7f0100ba;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int titleTextAppearance=0x7f0100b8;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int titleTextStyle=0x7f010007;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int toolbarNavigationButtonStyle=0x7f010088;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int toolbarStyle=0x7f010087;
+ /**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int topBottomBarArrowSize=0x7f010029;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int track=0x7f010048;
+ /**
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ */
+ public static final int voiceIcon=0x7f01003f;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int windowActionBar=0x7f01004f;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int windowActionBarOverlay=0x7f010051;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int windowActionModeOverlay=0x7f010052;
+ /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int windowFixedHeightMajor=0x7f010056;
+ /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int windowFixedHeightMinor=0x7f010054;
+ /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int windowFixedWidthMajor=0x7f010053;
+ /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int windowFixedWidthMinor=0x7f010055;
+ /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int windowMinWidthMajor=0x7f010057;
+ /**
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int windowMinWidthMinor=0x7f010058;
+ /**
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ */
+ public static final int windowNoTitle=0x7f010050;
+ }
+ public static final class bool {
+ public static final int abc_action_bar_embed_tabs=0x7f090002;
+ public static final int abc_action_bar_embed_tabs_pre_jb=0x7f090000;
+ public static final int abc_action_bar_expanded_action_views_exclusive=0x7f090003;
+ public static final int abc_config_actionMenuItemAllCaps=0x7f090004;
+ public static final int abc_config_allowActionMenuItemTextWithIcon=0x7f090001;
+ public static final int abc_config_closeDialogWhenTouchOutside=0x7f090005;
+ public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f090006;
+ }
+ public static final class color {
+ public static final int abc_background_cache_hint_selector_material_dark=0x7f0b0033;
+ public static final int abc_background_cache_hint_selector_material_light=0x7f0b0034;
+ public static final int abc_input_method_navigation_guard=0x7f0b0000;
+ public static final int abc_primary_text_disable_only_material_dark=0x7f0b0035;
+ public static final int abc_primary_text_disable_only_material_light=0x7f0b0036;
+ public static final int abc_primary_text_material_dark=0x7f0b0037;
+ public static final int abc_primary_text_material_light=0x7f0b0038;
+ public static final int abc_search_url_text=0x7f0b0039;
+ public static final int abc_search_url_text_normal=0x7f0b0001;
+ public static final int abc_search_url_text_pressed=0x7f0b0002;
+ public static final int abc_search_url_text_selected=0x7f0b0003;
+ public static final int abc_secondary_text_material_dark=0x7f0b003a;
+ public static final int abc_secondary_text_material_light=0x7f0b003b;
+ public static final int accent_material_dark=0x7f0b0004;
+ public static final int accent_material_light=0x7f0b0005;
+ public static final int background_floating_material_dark=0x7f0b0006;
+ public static final int background_floating_material_light=0x7f0b0007;
+ public static final int background_material_dark=0x7f0b0008;
+ public static final int background_material_light=0x7f0b0009;
+ public static final int bright_foreground_disabled_material_dark=0x7f0b000a;
+ public static final int bright_foreground_disabled_material_light=0x7f0b000b;
+ public static final int bright_foreground_inverse_material_dark=0x7f0b000c;
+ public static final int bright_foreground_inverse_material_light=0x7f0b000d;
+ public static final int bright_foreground_material_dark=0x7f0b000e;
+ public static final int bright_foreground_material_light=0x7f0b000f;
+ public static final int button_material_dark=0x7f0b0010;
+ public static final int button_material_light=0x7f0b0011;
+ public static final int dim_foreground_disabled_material_dark=0x7f0b0012;
+ public static final int dim_foreground_disabled_material_light=0x7f0b0013;
+ public static final int dim_foreground_material_dark=0x7f0b0014;
+ public static final int dim_foreground_material_light=0x7f0b0015;
+ public static final int highlighted_text_material_dark=0x7f0b0016;
+ public static final int highlighted_text_material_light=0x7f0b0017;
+ public static final int hint_foreground_material_dark=0x7f0b0018;
+ public static final int hint_foreground_material_light=0x7f0b0019;
+ public static final int link_text_material_dark=0x7f0b001a;
+ public static final int link_text_material_light=0x7f0b001b;
+ public static final int material_blue_grey_800=0x7f0b001c;
+ public static final int material_blue_grey_900=0x7f0b001d;
+ public static final int material_blue_grey_950=0x7f0b001e;
+ public static final int material_deep_teal_200=0x7f0b001f;
+ public static final int material_deep_teal_500=0x7f0b0020;
+ public static final int primary_dark_material_dark=0x7f0b0021;
+ public static final int primary_dark_material_light=0x7f0b0022;
+ public static final int primary_material_dark=0x7f0b0023;
+ public static final int primary_material_light=0x7f0b0024;
+ public static final int primary_text_default_material_dark=0x7f0b0025;
+ public static final int primary_text_default_material_light=0x7f0b0026;
+ public static final int primary_text_disabled_material_dark=0x7f0b0027;
+ public static final int primary_text_disabled_material_light=0x7f0b0028;
+ public static final int ripple_material_dark=0x7f0b0029;
+ public static final int ripple_material_light=0x7f0b002a;
+ public static final int secondary_text_default_material_dark=0x7f0b002b;
+ public static final int secondary_text_default_material_light=0x7f0b002c;
+ public static final int secondary_text_disabled_material_dark=0x7f0b002d;
+ public static final int secondary_text_disabled_material_light=0x7f0b002e;
+ public static final int switch_thumb_disabled_material_dark=0x7f0b002f;
+ public static final int switch_thumb_disabled_material_light=0x7f0b0030;
+ public static final int switch_thumb_material_dark=0x7f0b003c;
+ public static final int switch_thumb_material_light=0x7f0b003d;
+ public static final int switch_thumb_normal_material_dark=0x7f0b0031;
+ public static final int switch_thumb_normal_material_light=0x7f0b0032;
+ }
+ public static final class dimen {
+ public static final int abc_action_bar_content_inset_material=0x7f07000c;
+ public static final int abc_action_bar_default_height_material=0x7f070001;
+ public static final int abc_action_bar_default_padding_material=0x7f070002;
+ public static final int abc_action_bar_icon_vertical_padding_material=0x7f070011;
+ public static final int abc_action_bar_navigation_padding_start_material=0x7f07000d;
+ public static final int abc_action_bar_overflow_padding_end_material=0x7f07000e;
+ public static final int abc_action_bar_overflow_padding_start_material=0x7f070012;
+ public static final int abc_action_bar_progress_bar_size=0x7f070003;
+ public static final int abc_action_bar_stacked_max_height=0x7f070013;
+ public static final int abc_action_bar_stacked_tab_max_width=0x7f070014;
+ public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f070015;
+ public static final int abc_action_bar_subtitle_top_margin_material=0x7f070016;
+ public static final int abc_action_button_min_height_material=0x7f070017;
+ public static final int abc_action_button_min_width_material=0x7f070018;
+ public static final int abc_action_button_min_width_overflow_material=0x7f070019;
+ public static final int abc_alert_dialog_button_bar_height=0x7f070000;
+ public static final int abc_button_inset_horizontal_material=0x7f07001a;
+ public static final int abc_button_inset_vertical_material=0x7f07001b;
+ public static final int abc_button_padding_horizontal_material=0x7f07001c;
+ public static final int abc_button_padding_vertical_material=0x7f07001d;
+ public static final int abc_config_prefDialogWidth=0x7f070006;
+ public static final int abc_control_corner_material=0x7f07001e;
+ public static final int abc_control_inset_material=0x7f07001f;
+ public static final int abc_control_padding_material=0x7f070020;
+ public static final int abc_dialog_list_padding_vertical_material=0x7f070021;
+ public static final int abc_dialog_min_width_major=0x7f070022;
+ public static final int abc_dialog_min_width_minor=0x7f070023;
+ public static final int abc_dialog_padding_material=0x7f070024;
+ public static final int abc_dialog_padding_top_material=0x7f070025;
+ public static final int abc_disabled_alpha_material_dark=0x7f070026;
+ public static final int abc_disabled_alpha_material_light=0x7f070027;
+ public static final int abc_dropdownitem_icon_width=0x7f070028;
+ public static final int abc_dropdownitem_text_padding_left=0x7f070029;
+ public static final int abc_dropdownitem_text_padding_right=0x7f07002a;
+ public static final int abc_edit_text_inset_bottom_material=0x7f07002b;
+ public static final int abc_edit_text_inset_horizontal_material=0x7f07002c;
+ public static final int abc_edit_text_inset_top_material=0x7f07002d;
+ public static final int abc_floating_window_z=0x7f07002e;
+ public static final int abc_list_item_padding_horizontal_material=0x7f07002f;
+ public static final int abc_panel_menu_list_width=0x7f070030;
+ public static final int abc_search_view_preferred_width=0x7f070031;
+ public static final int abc_search_view_text_min_width=0x7f070007;
+ public static final int abc_switch_padding=0x7f07000f;
+ public static final int abc_text_size_body_1_material=0x7f070032;
+ public static final int abc_text_size_body_2_material=0x7f070033;
+ public static final int abc_text_size_button_material=0x7f070034;
+ public static final int abc_text_size_caption_material=0x7f070035;
+ public static final int abc_text_size_display_1_material=0x7f070036;
+ public static final int abc_text_size_display_2_material=0x7f070037;
+ public static final int abc_text_size_display_3_material=0x7f070038;
+ public static final int abc_text_size_display_4_material=0x7f070039;
+ public static final int abc_text_size_headline_material=0x7f07003a;
+ public static final int abc_text_size_large_material=0x7f07003b;
+ public static final int abc_text_size_medium_material=0x7f07003c;
+ public static final int abc_text_size_menu_material=0x7f07003d;
+ public static final int abc_text_size_small_material=0x7f07003e;
+ public static final int abc_text_size_subhead_material=0x7f07003f;
+ public static final int abc_text_size_subtitle_material_toolbar=0x7f070004;
+ public static final int abc_text_size_title_material=0x7f070040;
+ public static final int abc_text_size_title_material_toolbar=0x7f070005;
+ public static final int activity_horizontal_margin=0x7f070010;
+ public static final int activity_vertical_margin=0x7f070041;
+ public static final int dialog_fixed_height_major=0x7f070008;
+ public static final int dialog_fixed_height_minor=0x7f070009;
+ public static final int dialog_fixed_width_major=0x7f07000a;
+ public static final int dialog_fixed_width_minor=0x7f07000b;
+ public static final int disabled_alpha_material_dark=0x7f070042;
+ public static final int disabled_alpha_material_light=0x7f070043;
+ public static final int notification_large_icon_height=0x7f070044;
+ public static final int notification_large_icon_width=0x7f070045;
+ public static final int notification_subtext_size=0x7f070046;
+ }
+ public static final class drawable {
+ public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000;
+ public static final int abc_btn_borderless_material=0x7f020001;
+ public static final int abc_btn_check_material=0x7f020002;
+ public static final int abc_btn_check_to_on_mtrl_000=0x7f020003;
+ public static final int abc_btn_check_to_on_mtrl_015=0x7f020004;
+ public static final int abc_btn_default_mtrl_shape=0x7f020005;
+ public static final int abc_btn_radio_material=0x7f020006;
+ public static final int abc_btn_radio_to_on_mtrl_000=0x7f020007;
+ public static final int abc_btn_radio_to_on_mtrl_015=0x7f020008;
+ public static final int abc_btn_rating_star_off_mtrl_alpha=0x7f020009;
+ public static final int abc_btn_rating_star_on_mtrl_alpha=0x7f02000a;
+ public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000b;
+ public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000c;
+ public static final int abc_cab_background_internal_bg=0x7f02000d;
+ public static final int abc_cab_background_top_material=0x7f02000e;
+ public static final int abc_cab_background_top_mtrl_alpha=0x7f02000f;
+ public static final int abc_dialog_material_background_dark=0x7f020010;
+ public static final int abc_dialog_material_background_light=0x7f020011;
+ public static final int abc_edit_text_material=0x7f020012;
+ public static final int abc_ic_ab_back_mtrl_am_alpha=0x7f020013;
+ public static final int abc_ic_clear_mtrl_alpha=0x7f020014;
+ public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020015;
+ public static final int abc_ic_go_search_api_mtrl_alpha=0x7f020016;
+ public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f020017;
+ public static final int abc_ic_menu_cut_mtrl_alpha=0x7f020018;
+ public static final int abc_ic_menu_moreoverflow_mtrl_alpha=0x7f020019;
+ public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001a;
+ public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001b;
+ public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001c;
+ public static final int abc_ic_search_api_mtrl_alpha=0x7f02001d;
+ public static final int abc_ic_voice_search_api_mtrl_alpha=0x7f02001e;
+ public static final int abc_item_background_holo_dark=0x7f02001f;
+ public static final int abc_item_background_holo_light=0x7f020020;
+ public static final int abc_list_divider_mtrl_alpha=0x7f020021;
+ public static final int abc_list_focused_holo=0x7f020022;
+ public static final int abc_list_longpressed_holo=0x7f020023;
+ public static final int abc_list_pressed_holo_dark=0x7f020024;
+ public static final int abc_list_pressed_holo_light=0x7f020025;
+ public static final int abc_list_selector_background_transition_holo_dark=0x7f020026;
+ public static final int abc_list_selector_background_transition_holo_light=0x7f020027;
+ public static final int abc_list_selector_disabled_holo_dark=0x7f020028;
+ public static final int abc_list_selector_disabled_holo_light=0x7f020029;
+ public static final int abc_list_selector_holo_dark=0x7f02002a;
+ public static final int abc_list_selector_holo_light=0x7f02002b;
+ public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f02002c;
+ public static final int abc_popup_background_mtrl_mult=0x7f02002d;
+ public static final int abc_ratingbar_full_material=0x7f02002e;
+ public static final int abc_spinner_mtrl_am_alpha=0x7f02002f;
+ public static final int abc_spinner_textfield_background_material=0x7f020030;
+ public static final int abc_switch_thumb_material=0x7f020031;
+ public static final int abc_switch_track_mtrl_alpha=0x7f020032;
+ public static final int abc_tab_indicator_material=0x7f020033;
+ public static final int abc_tab_indicator_mtrl_alpha=0x7f020034;
+ public static final int abc_text_cursor_mtrl_alpha=0x7f020035;
+ public static final int abc_textfield_activated_mtrl_alpha=0x7f020036;
+ public static final int abc_textfield_default_mtrl_alpha=0x7f020037;
+ public static final int abc_textfield_search_activated_mtrl_alpha=0x7f020038;
+ public static final int abc_textfield_search_default_mtrl_alpha=0x7f020039;
+ public static final int abc_textfield_search_material=0x7f02003a;
+ public static final int notification_template_icon_bg=0x7f02003b;
+ }
+ public static final class id {
+ public static final int action0=0x7f0c004f;
+ public static final int action_bar=0x7f0c0040;
+ public static final int action_bar_activity_content=0x7f0c0000;
+ public static final int action_bar_container=0x7f0c003f;
+ public static final int action_bar_root=0x7f0c003b;
+ public static final int action_bar_spinner=0x7f0c0001;
+ public static final int action_bar_subtitle=0x7f0c0024;
+ public static final int action_bar_title=0x7f0c0023;
+ public static final int action_context_bar=0x7f0c0041;
+ public static final int action_divider=0x7f0c0053;
+ public static final int action_menu_divider=0x7f0c0002;
+ public static final int action_menu_presenter=0x7f0c0003;
+ public static final int action_mode_bar=0x7f0c003d;
+ public static final int action_mode_bar_stub=0x7f0c003c;
+ public static final int action_mode_close_button=0x7f0c0025;
+ public static final int action_settings=0x7f0c005c;
+ public static final int activity_chooser_view_content=0x7f0c0026;
+ public static final int alertTitle=0x7f0c0030;
+ public static final int always=0x7f0c0016;
+ public static final int beginning=0x7f0c0013;
+ public static final int buttonPanel=0x7f0c0036;
+ public static final int cancel_action=0x7f0c0050;
+ public static final int checkbox=0x7f0c0038;
+ public static final int chronometer=0x7f0c0056;
+ public static final int collapseActionView=0x7f0c0017;
+ public static final int contentPanel=0x7f0c0031;
+ public static final int custom=0x7f0c0035;
+ public static final int customPanel=0x7f0c0034;
+ public static final int decor_content_parent=0x7f0c003e;
+ public static final int default_activity_button=0x7f0c0029;
+ public static final int dialog=0x7f0c001b;
+ public static final int disableHome=0x7f0c000c;
+ public static final int dropdown=0x7f0c001c;
+ public static final int edit_query=0x7f0c0042;
+ public static final int end=0x7f0c0014;
+ public static final int end_padder=0x7f0c005b;
+ public static final int expand_activities_button=0x7f0c0027;
+ public static final int expanded_menu=0x7f0c0037;
+ public static final int home=0x7f0c0004;
+ public static final int homeAsUp=0x7f0c000d;
+ public static final int icon=0x7f0c002b;
+ public static final int ifRoom=0x7f0c0018;
+ public static final int image=0x7f0c0028;
+ public static final int info=0x7f0c005a;
+ public static final int line1=0x7f0c0054;
+ public static final int line3=0x7f0c0058;
+ public static final int listMode=0x7f0c0009;
+ public static final int list_item=0x7f0c002a;
+ public static final int media_actions=0x7f0c0052;
+ public static final int middle=0x7f0c0015;
+ public static final int multiply=0x7f0c001e;
+ public static final int never=0x7f0c0019;
+ public static final int none=0x7f0c000e;
+ public static final int normal=0x7f0c000a;
+ public static final int parentPanel=0x7f0c002d;
+ public static final int progress_circular=0x7f0c0005;
+ public static final int progress_horizontal=0x7f0c0006;
+ public static final int radio=0x7f0c003a;
+ public static final int screen=0x7f0c001f;
+ public static final int scrollView=0x7f0c0032;
+ public static final int search_badge=0x7f0c0044;
+ public static final int search_bar=0x7f0c0043;
+ public static final int search_button=0x7f0c0045;
+ public static final int search_close_btn=0x7f0c004a;
+ public static final int search_edit_frame=0x7f0c0046;
+ public static final int search_go_btn=0x7f0c004c;
+ public static final int search_mag_icon=0x7f0c0047;
+ public static final int search_plate=0x7f0c0048;
+ public static final int search_src_text=0x7f0c0049;
+ public static final int search_voice_btn=0x7f0c004d;
+ public static final int select_dialog_listview=0x7f0c004e;
+ public static final int shortcut=0x7f0c0039;
+ public static final int showCustom=0x7f0c000f;
+ public static final int showHome=0x7f0c0010;
+ public static final int showTitle=0x7f0c0011;
+ public static final int split_action_bar=0x7f0c0007;
+ public static final int src_atop=0x7f0c0020;
+ public static final int src_in=0x7f0c0021;
+ public static final int src_over=0x7f0c0022;
+ public static final int status_bar_latest_event_content=0x7f0c0051;
+ public static final int submit_area=0x7f0c004b;
+ public static final int tabMode=0x7f0c000b;
+ public static final int text=0x7f0c0059;
+ public static final int text2=0x7f0c0057;
+ public static final int textSpacerNoButtons=0x7f0c0033;
+ public static final int time=0x7f0c0055;
+ public static final int title=0x7f0c002c;
+ public static final int title_template=0x7f0c002f;
+ public static final int topPanel=0x7f0c002e;
+ public static final int up=0x7f0c0008;
+ public static final int useLogo=0x7f0c0012;
+ public static final int withText=0x7f0c001a;
+ public static final int wrap_content=0x7f0c001d;
+ }
+ public static final class integer {
+ public static final int abc_config_activityDefaultDur=0x7f0a0001;
+ public static final int abc_config_activityShortDur=0x7f0a0002;
+ public static final int abc_max_action_buttons=0x7f0a0000;
+ public static final int cancel_button_image_alpha=0x7f0a0003;
+ public static final int status_bar_notification_info_maxnum=0x7f0a0004;
+ }
+ public static final class layout {
+ public static final int abc_action_bar_title_item=0x7f040000;
+ public static final int abc_action_bar_up_container=0x7f040001;
+ public static final int abc_action_bar_view_list_nav_layout=0x7f040002;
+ public static final int abc_action_menu_item_layout=0x7f040003;
+ public static final int abc_action_menu_layout=0x7f040004;
+ public static final int abc_action_mode_bar=0x7f040005;
+ public static final int abc_action_mode_close_item_material=0x7f040006;
+ public static final int abc_activity_chooser_view=0x7f040007;
+ public static final int abc_activity_chooser_view_list_item=0x7f040008;
+ public static final int abc_alert_dialog_material=0x7f040009;
+ public static final int abc_dialog_title_material=0x7f04000a;
+ public static final int abc_expanded_menu_layout=0x7f04000b;
+ public static final int abc_list_menu_item_checkbox=0x7f04000c;
+ public static final int abc_list_menu_item_icon=0x7f04000d;
+ public static final int abc_list_menu_item_layout=0x7f04000e;
+ public static final int abc_list_menu_item_radio=0x7f04000f;
+ public static final int abc_popup_menu_item_layout=0x7f040010;
+ public static final int abc_screen_content_include=0x7f040011;
+ public static final int abc_screen_simple=0x7f040012;
+ public static final int abc_screen_simple_overlay_action_mode=0x7f040013;
+ public static final int abc_screen_toolbar=0x7f040014;
+ public static final int abc_search_dropdown_item_icons_2line=0x7f040015;
+ public static final int abc_search_view=0x7f040016;
+ public static final int abc_select_dialog_material=0x7f040017;
+ public static final int abc_simple_dropdown_hint=0x7f040018;
+ public static final int activity_main=0x7f040019;
+ public static final int notification_media_action=0x7f04001a;
+ public static final int notification_media_cancel_action=0x7f04001b;
+ public static final int notification_template_big_media=0x7f04001c;
+ public static final int notification_template_big_media_narrow=0x7f04001d;
+ public static final int notification_template_lines=0x7f04001e;
+ public static final int notification_template_media=0x7f04001f;
+ public static final int notification_template_part_chronometer=0x7f040020;
+ public static final int notification_template_part_time=0x7f040021;
+ public static final int select_dialog_item_material=0x7f040022;
+ public static final int select_dialog_multichoice_material=0x7f040023;
+ public static final int select_dialog_singlechoice_material=0x7f040024;
+ public static final int support_simple_spinner_dropdown_item=0x7f040025;
+ }
+ public static final class menu {
+ public static final int menu_main=0x7f0d0000;
+ }
+ public static final class mipmap {
+ public static final int ic_launcher=0x7f030000;
+ }
+ public static final class string {
+ public static final int abc_action_bar_home_description=0x7f060000;
+ public static final int abc_action_bar_home_description_format=0x7f06000d;
+ public static final int abc_action_bar_home_subtitle_description_format=0x7f06000e;
+ public static final int abc_action_bar_up_description=0x7f060001;
+ public static final int abc_action_menu_overflow_description=0x7f060002;
+ public static final int abc_action_mode_done=0x7f060003;
+ public static final int abc_activity_chooser_view_see_all=0x7f060004;
+ public static final int abc_activitychooserview_choose_application=0x7f060005;
+ public static final int abc_search_hint=0x7f06000f;
+ public static final int abc_searchview_description_clear=0x7f060006;
+ public static final int abc_searchview_description_query=0x7f060007;
+ public static final int abc_searchview_description_search=0x7f060008;
+ public static final int abc_searchview_description_submit=0x7f060009;
+ public static final int abc_searchview_description_voice=0x7f06000a;
+ public static final int abc_shareactionprovider_share_with=0x7f06000b;
+ public static final int abc_shareactionprovider_share_with_application=0x7f06000c;
+ public static final int abc_toolbar_collapse_description=0x7f060010;
+ public static final int action_settings=0x7f060011;
+ public static final int app_name=0x7f060012;
+ public static final int hello_world=0x7f060013;
+ public static final int parse_app_id=0x7f060014;
+ public static final int parse_client_key=0x7f060015;
+ public static final int status_bar_notification_info_overflow=0x7f060016;
+ }
+ public static final class style {
+ public static final int AlertDialog_AppCompat=0x7f080073;
+ public static final int AlertDialog_AppCompat_Light=0x7f080074;
+ public static final int Animation_AppCompat_Dialog=0x7f080075;
+ public static final int Animation_AppCompat_DropDownUp=0x7f080076;
+ /** Customize your theme here.
+ */
+ public static final int AppTheme=0x7f080077;
+ public static final int Base_AlertDialog_AppCompat=0x7f080078;
+ public static final int Base_AlertDialog_AppCompat_Light=0x7f080079;
+ public static final int Base_Animation_AppCompat_Dialog=0x7f08007a;
+ public static final int Base_Animation_AppCompat_DropDownUp=0x7f08007b;
+ public static final int Base_DialogWindowTitle_AppCompat=0x7f08007c;
+ public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f08007d;
+ public static final int Base_TextAppearance_AppCompat=0x7f08002e;
+ public static final int Base_TextAppearance_AppCompat_Body1=0x7f08002f;
+ public static final int Base_TextAppearance_AppCompat_Body2=0x7f080030;
+ public static final int Base_TextAppearance_AppCompat_Button=0x7f080018;
+ public static final int Base_TextAppearance_AppCompat_Caption=0x7f080031;
+ public static final int Base_TextAppearance_AppCompat_Display1=0x7f080032;
+ public static final int Base_TextAppearance_AppCompat_Display2=0x7f080033;
+ public static final int Base_TextAppearance_AppCompat_Display3=0x7f080034;
+ public static final int Base_TextAppearance_AppCompat_Display4=0x7f080035;
+ public static final int Base_TextAppearance_AppCompat_Headline=0x7f080036;
+ public static final int Base_TextAppearance_AppCompat_Inverse=0x7f080003;
+ public static final int Base_TextAppearance_AppCompat_Large=0x7f080037;
+ public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f080004;
+ public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f080038;
+ public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f080039;
+ public static final int Base_TextAppearance_AppCompat_Medium=0x7f08003a;
+ public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f080005;
+ public static final int Base_TextAppearance_AppCompat_Menu=0x7f08003b;
+ public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f08007e;
+ public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f08003c;
+ public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f08003d;
+ public static final int Base_TextAppearance_AppCompat_Small=0x7f08003e;
+ public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f080006;
+ public static final int Base_TextAppearance_AppCompat_Subhead=0x7f08003f;
+ public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f080007;
+ public static final int Base_TextAppearance_AppCompat_Title=0x7f080040;
+ public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f080008;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f080041;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f080042;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f080043;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f080044;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f080045;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f080046;
+ public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f080047;
+ public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f08007f;
+ public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f080048;
+ public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f080049;
+ public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f08004a;
+ public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f08004b;
+ public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f080080;
+ public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f08004c;
+ public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f08004d;
+ public static final int Base_Theme_AppCompat=0x7f08004e;
+ public static final int Base_Theme_AppCompat_CompactMenu=0x7f080081;
+ public static final int Base_Theme_AppCompat_Dialog=0x7f080009;
+ public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f080082;
+ public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f080083;
+ public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f080084;
+ public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f080001;
+ public static final int Base_Theme_AppCompat_Light=0x7f08004f;
+ public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f080085;
+ public static final int Base_Theme_AppCompat_Light_Dialog=0x7f08000a;
+ public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f080086;
+ public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f080087;
+ public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f080088;
+ public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f080002;
+ public static final int Base_ThemeOverlay_AppCompat=0x7f080089;
+ public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f08008a;
+ public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f08008b;
+ public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f08008c;
+ public static final int Base_ThemeOverlay_AppCompat_Light=0x7f08008d;
+ public static final int Base_V11_Theme_AppCompat_Dialog=0x7f08000b;
+ public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f08000c;
+ public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f080014;
+ public static final int Base_V12_Widget_AppCompat_EditText=0x7f080015;
+ public static final int Base_V21_Theme_AppCompat=0x7f080050;
+ public static final int Base_V21_Theme_AppCompat_Dialog=0x7f080051;
+ public static final int Base_V21_Theme_AppCompat_Light=0x7f080052;
+ public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f080053;
+ public static final int Base_V7_Theme_AppCompat=0x7f08008e;
+ public static final int Base_V7_Theme_AppCompat_Dialog=0x7f08008f;
+ public static final int Base_V7_Theme_AppCompat_Light=0x7f080090;
+ public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f080091;
+ public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f080092;
+ public static final int Base_V7_Widget_AppCompat_EditText=0x7f080093;
+ public static final int Base_Widget_AppCompat_ActionBar=0x7f080094;
+ public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f080095;
+ public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f080096;
+ public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f080054;
+ public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f080055;
+ public static final int Base_Widget_AppCompat_ActionButton=0x7f080056;
+ public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f080057;
+ public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f080058;
+ public static final int Base_Widget_AppCompat_ActionMode=0x7f080097;
+ public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f080098;
+ public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f080016;
+ public static final int Base_Widget_AppCompat_Button=0x7f080059;
+ public static final int Base_Widget_AppCompat_Button_Borderless=0x7f08005a;
+ public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f08005b;
+ public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f080099;
+ public static final int Base_Widget_AppCompat_Button_Small=0x7f08005c;
+ public static final int Base_Widget_AppCompat_ButtonBar=0x7f08005d;
+ public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f08009a;
+ public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f08005e;
+ public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f08005f;
+ public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f08009b;
+ public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f080000;
+ public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f08009c;
+ public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f080060;
+ public static final int Base_Widget_AppCompat_EditText=0x7f080017;
+ public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f08009d;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f08009e;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f08009f;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f080061;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f080062;
+ public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f080063;
+ public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f080064;
+ public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080065;
+ public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f080066;
+ public static final int Base_Widget_AppCompat_ListView=0x7f080067;
+ public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f080068;
+ public static final int Base_Widget_AppCompat_ListView_Menu=0x7f080069;
+ public static final int Base_Widget_AppCompat_PopupMenu=0x7f08006a;
+ public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f08006b;
+ public static final int Base_Widget_AppCompat_PopupWindow=0x7f0800a0;
+ public static final int Base_Widget_AppCompat_ProgressBar=0x7f08000d;
+ public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f08000e;
+ public static final int Base_Widget_AppCompat_RatingBar=0x7f08006c;
+ public static final int Base_Widget_AppCompat_SearchView=0x7f0800a1;
+ public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0800a2;
+ public static final int Base_Widget_AppCompat_Spinner=0x7f08000f;
+ public static final int Base_Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f08006d;
+ public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f08006e;
+ public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f08006f;
+ public static final int Base_Widget_AppCompat_Toolbar=0x7f0800a3;
+ public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f080070;
+ public static final int Platform_AppCompat=0x7f080010;
+ public static final int Platform_AppCompat_Light=0x7f080011;
+ public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f080071;
+ public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f080072;
+ public static final int Platform_V11_AppCompat=0x7f080012;
+ public static final int Platform_V11_AppCompat_Light=0x7f080013;
+ public static final int Platform_V14_AppCompat=0x7f080019;
+ public static final int Platform_V14_AppCompat_Light=0x7f08001a;
+ public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f080020;
+ public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f080021;
+ public static final int RtlOverlay_Widget_AppCompat_ActionButton_Overflow=0x7f080022;
+ public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f080023;
+ public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f080024;
+ public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f080025;
+ public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f080026;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f080027;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f080028;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f080029;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f08002a;
+ public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f08002b;
+ public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f08002c;
+ public static final int RtlOverlay_Widget_AppCompat_Toolbar_Button_Navigation=0x7f08002d;
+ public static final int TextAppearance_AppCompat=0x7f0800a4;
+ public static final int TextAppearance_AppCompat_Body1=0x7f0800a5;
+ public static final int TextAppearance_AppCompat_Body2=0x7f0800a6;
+ public static final int TextAppearance_AppCompat_Button=0x7f0800a7;
+ public static final int TextAppearance_AppCompat_Caption=0x7f0800a8;
+ public static final int TextAppearance_AppCompat_Display1=0x7f0800a9;
+ public static final int TextAppearance_AppCompat_Display2=0x7f0800aa;
+ public static final int TextAppearance_AppCompat_Display3=0x7f0800ab;
+ public static final int TextAppearance_AppCompat_Display4=0x7f0800ac;
+ public static final int TextAppearance_AppCompat_Headline=0x7f0800ad;
+ public static final int TextAppearance_AppCompat_Inverse=0x7f0800ae;
+ public static final int TextAppearance_AppCompat_Large=0x7f0800af;
+ public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0800b0;
+ public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0800b1;
+ public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0800b2;
+ public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0800b3;
+ public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0800b4;
+ public static final int TextAppearance_AppCompat_Medium=0x7f0800b5;
+ public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0800b6;
+ public static final int TextAppearance_AppCompat_Menu=0x7f0800b7;
+ public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0800b8;
+ public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0800b9;
+ public static final int TextAppearance_AppCompat_Small=0x7f0800ba;
+ public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0800bb;
+ public static final int TextAppearance_AppCompat_Subhead=0x7f0800bc;
+ public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0800bd;
+ public static final int TextAppearance_AppCompat_Title=0x7f0800be;
+ public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0800bf;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0800c0;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0800c1;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0800c2;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0800c3;
+ public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0800c4;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0800c5;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0800c6;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0800c7;
+ public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0800c8;
+ public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0800c9;
+ public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0800ca;
+ public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0800cb;
+ public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0800cc;
+ public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0800cd;
+ public static final int TextAppearance_StatusBar_EventContent=0x7f08001b;
+ public static final int TextAppearance_StatusBar_EventContent_Info=0x7f08001c;
+ public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f08001d;
+ public static final int TextAppearance_StatusBar_EventContent_Time=0x7f08001e;
+ public static final int TextAppearance_StatusBar_EventContent_Title=0x7f08001f;
+ public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0800ce;
+ public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0800cf;
+ public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0800d0;
+ public static final int Theme_AppCompat=0x7f0800d1;
+ public static final int Theme_AppCompat_CompactMenu=0x7f0800d2;
+ public static final int Theme_AppCompat_Dialog=0x7f0800d3;
+ public static final int Theme_AppCompat_Dialog_Alert=0x7f0800d4;
+ public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0800d5;
+ public static final int Theme_AppCompat_DialogWhenLarge=0x7f0800d6;
+ public static final int Theme_AppCompat_Light=0x7f0800d7;
+ public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0800d8;
+ public static final int Theme_AppCompat_Light_Dialog=0x7f0800d9;
+ public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0800da;
+ public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0800db;
+ public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0800dc;
+ public static final int Theme_AppCompat_Light_NoActionBar=0x7f0800dd;
+ public static final int Theme_AppCompat_NoActionBar=0x7f0800de;
+ public static final int ThemeOverlay_AppCompat=0x7f0800df;
+ public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0800e0;
+ public static final int ThemeOverlay_AppCompat_Dark=0x7f0800e1;
+ public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0800e2;
+ public static final int ThemeOverlay_AppCompat_Light=0x7f0800e3;
+ public static final int Widget_AppCompat_ActionBar=0x7f0800e4;
+ public static final int Widget_AppCompat_ActionBar_Solid=0x7f0800e5;
+ public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0800e6;
+ public static final int Widget_AppCompat_ActionBar_TabText=0x7f0800e7;
+ public static final int Widget_AppCompat_ActionBar_TabView=0x7f0800e8;
+ public static final int Widget_AppCompat_ActionButton=0x7f0800e9;
+ public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0800ea;
+ public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0800eb;
+ public static final int Widget_AppCompat_ActionMode=0x7f0800ec;
+ public static final int Widget_AppCompat_ActivityChooserView=0x7f0800ed;
+ public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0800ee;
+ public static final int Widget_AppCompat_Button=0x7f0800ef;
+ public static final int Widget_AppCompat_Button_Borderless=0x7f0800f0;
+ public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0800f1;
+ public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0800f2;
+ public static final int Widget_AppCompat_Button_Small=0x7f0800f3;
+ public static final int Widget_AppCompat_ButtonBar=0x7f0800f4;
+ public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0800f5;
+ public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f0800f6;
+ public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f0800f7;
+ public static final int Widget_AppCompat_CompoundButton_Switch=0x7f0800f8;
+ public static final int Widget_AppCompat_DrawerArrowToggle=0x7f0800f9;
+ public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0800fa;
+ public static final int Widget_AppCompat_EditText=0x7f0800fb;
+ public static final int Widget_AppCompat_Light_ActionBar=0x7f0800fc;
+ public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0800fd;
+ public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0800fe;
+ public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0800ff;
+ public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f080100;
+ public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f080101;
+ public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f080102;
+ public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f080103;
+ public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f080104;
+ public static final int Widget_AppCompat_Light_ActionButton=0x7f080105;
+ public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f080106;
+ public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f080107;
+ public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f080108;
+ public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f080109;
+ public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f08010a;
+ public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f08010b;
+ public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f08010c;
+ public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f08010d;
+ public static final int Widget_AppCompat_Light_PopupMenu=0x7f08010e;
+ public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f08010f;
+ public static final int Widget_AppCompat_Light_SearchView=0x7f080110;
+ public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f080111;
+ public static final int Widget_AppCompat_ListPopupWindow=0x7f080112;
+ public static final int Widget_AppCompat_ListView=0x7f080113;
+ public static final int Widget_AppCompat_ListView_DropDown=0x7f080114;
+ public static final int Widget_AppCompat_ListView_Menu=0x7f080115;
+ public static final int Widget_AppCompat_PopupMenu=0x7f080116;
+ public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f080117;
+ public static final int Widget_AppCompat_PopupWindow=0x7f080118;
+ public static final int Widget_AppCompat_ProgressBar=0x7f080119;
+ public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f08011a;
+ public static final int Widget_AppCompat_RatingBar=0x7f08011b;
+ public static final int Widget_AppCompat_SearchView=0x7f08011c;
+ public static final int Widget_AppCompat_SearchView_ActionBar=0x7f08011d;
+ public static final int Widget_AppCompat_Spinner=0x7f08011e;
+ public static final int Widget_AppCompat_Spinner_DropDown=0x7f08011f;
+ public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f080120;
+ public static final int Widget_AppCompat_Spinner_Underlined=0x7f080121;
+ public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f080122;
+ public static final int Widget_AppCompat_Toolbar=0x7f080123;
+ public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f080124;
+ }
+ public static final class styleable {
+ /** Attributes that can be used with a ActionBar.
+
This symbol is the offset where the {@link com.parse.starter.R.attr#background}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:background
+ */
+ public static final int ActionBar_background = 10;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#backgroundSplit}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ @attr name com.parse.starter:backgroundSplit
+ */
+ public static final int ActionBar_backgroundSplit = 12;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#backgroundStacked}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ @attr name com.parse.starter:backgroundStacked
+ */
+ public static final int ActionBar_backgroundStacked = 11;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#contentInsetEnd}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:contentInsetEnd
+ */
+ public static final int ActionBar_contentInsetEnd = 21;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#contentInsetLeft}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:contentInsetLeft
+ */
+ public static final int ActionBar_contentInsetLeft = 22;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#contentInsetRight}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:contentInsetRight
+ */
+ public static final int ActionBar_contentInsetRight = 23;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#contentInsetStart}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:contentInsetStart
+ */
+ public static final int ActionBar_contentInsetStart = 20;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#customNavigationLayout}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:customNavigationLayout
+ */
+ public static final int ActionBar_customNavigationLayout = 13;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#displayOptions}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
0
+
useLogo
0x1
+
showHome
0x2
+
homeAsUp
0x4
+
showTitle
0x8
+
showCustom
0x10
+
disableHome
0x20
+
+ @attr name com.parse.starter:displayOptions
+ */
+ public static final int ActionBar_displayOptions = 3;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#divider}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:divider
+ */
+ public static final int ActionBar_divider = 9;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#elevation}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:elevation
+ */
+ public static final int ActionBar_elevation = 24;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#height}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:height
+ */
+ public static final int ActionBar_height = 0;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#hideOnContentScroll}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:hideOnContentScroll
+ */
+ public static final int ActionBar_hideOnContentScroll = 19;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#homeAsUpIndicator}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:homeAsUpIndicator
+ */
+ public static final int ActionBar_homeAsUpIndicator = 26;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#homeLayout}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:homeLayout
+ */
+ public static final int ActionBar_homeLayout = 14;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#icon}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:icon
+ */
+ public static final int ActionBar_icon = 7;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#indeterminateProgressStyle}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:indeterminateProgressStyle
+ */
+ public static final int ActionBar_indeterminateProgressStyle = 16;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#itemPadding}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:itemPadding
+ */
+ public static final int ActionBar_itemPadding = 18;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#logo}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:logo
+ */
+ public static final int ActionBar_logo = 8;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#navigationMode}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
normal
0
+
listMode
1
+
tabMode
2
+
+ @attr name com.parse.starter:navigationMode
+ */
+ public static final int ActionBar_navigationMode = 2;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#popupTheme}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:popupTheme
+ */
+ public static final int ActionBar_popupTheme = 25;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#progressBarPadding}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:progressBarPadding
+ */
+ public static final int ActionBar_progressBarPadding = 17;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#progressBarStyle}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:progressBarStyle
+ */
+ public static final int ActionBar_progressBarStyle = 15;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#subtitle}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:subtitle
+ */
+ public static final int ActionBar_subtitle = 4;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#subtitleTextStyle}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:subtitleTextStyle
+ */
+ public static final int ActionBar_subtitleTextStyle = 6;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#title}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:title
+ */
+ public static final int ActionBar_title = 1;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#titleTextStyle}
+ attribute's value can be found in the {@link #ActionBar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:titleTextStyle
+ */
+ public static final int ActionBar_titleTextStyle = 5;
+ /** Attributes that can be used with a ActionBarLayout.
+
+ @see #ActionBarLayout_android_layout_gravity
+ */
+ public static final int[] ActionBarLayout = {
+ 0x010100b3
+ };
+ /**
+
This symbol is the offset where the {@link android.R.attr#layout_gravity}
+ attribute's value can be found in the {@link #ActionBarLayout} array.
+ @attr name android:layout_gravity
+ */
+ public static final int ActionBarLayout_android_layout_gravity = 0;
+ /** Attributes that can be used with a ActionMenuItemView.
+
+ @see #ActionMenuItemView_android_minWidth
+ */
+ public static final int[] ActionMenuItemView = {
+ 0x0101013f
+ };
+ /**
+
This symbol is the offset where the {@link android.R.attr#minWidth}
+ attribute's value can be found in the {@link #ActionMenuItemView} array.
+ @attr name android:minWidth
+ */
+ public static final int ActionMenuItemView_android_minWidth = 0;
+ /** Attributes that can be used with a ActionMenuView.
+ */
+ public static final int[] ActionMenuView = {
+
+ };
+ /** Attributes that can be used with a ActionMode.
+
This symbol is the offset where the {@link com.parse.starter.R.attr#background}
+ attribute's value can be found in the {@link #ActionMode} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:background
+ */
+ public static final int ActionMode_background = 3;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#backgroundSplit}
+ attribute's value can be found in the {@link #ActionMode} array.
+
+
+
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ @attr name com.parse.starter:backgroundSplit
+ */
+ public static final int ActionMode_backgroundSplit = 4;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#closeItemLayout}
+ attribute's value can be found in the {@link #ActionMode} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:closeItemLayout
+ */
+ public static final int ActionMode_closeItemLayout = 5;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#height}
+ attribute's value can be found in the {@link #ActionMode} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:height
+ */
+ public static final int ActionMode_height = 0;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#subtitleTextStyle}
+ attribute's value can be found in the {@link #ActionMode} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:subtitleTextStyle
+ */
+ public static final int ActionMode_subtitleTextStyle = 2;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#titleTextStyle}
+ attribute's value can be found in the {@link #ActionMode} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:titleTextStyle
+ */
+ public static final int ActionMode_titleTextStyle = 1;
+ /** Attributes that can be used with a ActivityChooserView.
+
This symbol is the offset where the {@link com.parse.starter.R.attr#expandActivityOverflowButtonDrawable}
+ attribute's value can be found in the {@link #ActivityChooserView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:expandActivityOverflowButtonDrawable
+ */
+ public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#initialActivityCount}
+ attribute's value can be found in the {@link #ActivityChooserView} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:initialActivityCount
+ */
+ public static final int ActivityChooserView_initialActivityCount = 0;
+ /** Attributes that can be used with a AlertDialog.
+
This symbol is the offset where the {@link android.R.attr#layout}
+ attribute's value can be found in the {@link #AlertDialog} array.
+ @attr name android:layout
+ */
+ public static final int AlertDialog_android_layout = 0;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#buttonPanelSideLayout}
+ attribute's value can be found in the {@link #AlertDialog} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:buttonPanelSideLayout
+ */
+ public static final int AlertDialog_buttonPanelSideLayout = 1;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#listItemLayout}
+ attribute's value can be found in the {@link #AlertDialog} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:listItemLayout
+ */
+ public static final int AlertDialog_listItemLayout = 5;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#listLayout}
+ attribute's value can be found in the {@link #AlertDialog} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:listLayout
+ */
+ public static final int AlertDialog_listLayout = 2;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#multiChoiceItemLayout}
+ attribute's value can be found in the {@link #AlertDialog} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:multiChoiceItemLayout
+ */
+ public static final int AlertDialog_multiChoiceItemLayout = 3;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#singleChoiceItemLayout}
+ attribute's value can be found in the {@link #AlertDialog} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:singleChoiceItemLayout
+ */
+ public static final int AlertDialog_singleChoiceItemLayout = 4;
+ /** Attributes that can be used with a AppCompatTextView.
+
This symbol is the offset where the {@link android.R.attr#textAppearance}
+ attribute's value can be found in the {@link #AppCompatTextView} array.
+ @attr name android:textAppearance
+ */
+ public static final int AppCompatTextView_android_textAppearance = 0;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#textAllCaps}
+ attribute's value can be found in the {@link #AppCompatTextView} array.
+
+
+
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a boolean value, either "true" or "false".
+ @attr name com.parse.starter:textAllCaps
+ */
+ public static final int AppCompatTextView_textAllCaps = 1;
+ /** Attributes that can be used with a DrawerArrowToggle.
+
This symbol is the offset where the {@link com.parse.starter.R.attr#barSize}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:barSize
+ */
+ public static final int DrawerArrowToggle_barSize = 6;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#color}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:color
+ */
+ public static final int DrawerArrowToggle_color = 0;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#drawableSize}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:drawableSize
+ */
+ public static final int DrawerArrowToggle_drawableSize = 2;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#gapBetweenBars}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:gapBetweenBars
+ */
+ public static final int DrawerArrowToggle_gapBetweenBars = 3;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#middleBarArrowSize}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:middleBarArrowSize
+ */
+ public static final int DrawerArrowToggle_middleBarArrowSize = 5;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#spinBars}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:spinBars
+ */
+ public static final int DrawerArrowToggle_spinBars = 1;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#thickness}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:thickness
+ */
+ public static final int DrawerArrowToggle_thickness = 7;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#topBottomBarArrowSize}
+ attribute's value can be found in the {@link #DrawerArrowToggle} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:topBottomBarArrowSize
+ */
+ public static final int DrawerArrowToggle_topBottomBarArrowSize = 4;
+ /** Attributes that can be used with a LinearLayoutCompat.
+
This symbol is the offset where the {@link android.R.attr#baselineAligned}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+ @attr name android:baselineAligned
+ */
+ public static final int LinearLayoutCompat_android_baselineAligned = 2;
+ /**
+
This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+ @attr name android:baselineAlignedChildIndex
+ */
+ public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
+ /**
+
This symbol is the offset where the {@link android.R.attr#gravity}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+ @attr name android:gravity
+ */
+ public static final int LinearLayoutCompat_android_gravity = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#orientation}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+ @attr name android:orientation
+ */
+ public static final int LinearLayoutCompat_android_orientation = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#weightSum}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+ @attr name android:weightSum
+ */
+ public static final int LinearLayoutCompat_android_weightSum = 4;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#divider}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:divider
+ */
+ public static final int LinearLayoutCompat_divider = 5;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#dividerPadding}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:dividerPadding
+ */
+ public static final int LinearLayoutCompat_dividerPadding = 8;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#measureWithLargestChild}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:measureWithLargestChild
+ */
+ public static final int LinearLayoutCompat_measureWithLargestChild = 6;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#showDividers}
+ attribute's value can be found in the {@link #LinearLayoutCompat} array.
+
+
+
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
none
0
+
beginning
1
+
middle
2
+
end
4
+
+ @attr name com.parse.starter:showDividers
+ */
+ public static final int LinearLayoutCompat_showDividers = 7;
+ /** Attributes that can be used with a LinearLayoutCompat_Layout.
+
This symbol is the offset where the {@link android.R.attr#layout_gravity}
+ attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
+ @attr name android:layout_gravity
+ */
+ public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#layout_height}
+ attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
+ @attr name android:layout_height
+ */
+ public static final int LinearLayoutCompat_Layout_android_layout_height = 2;
+ /**
+
This symbol is the offset where the {@link android.R.attr#layout_weight}
+ attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
+ @attr name android:layout_weight
+ */
+ public static final int LinearLayoutCompat_Layout_android_layout_weight = 3;
+ /**
+
This symbol is the offset where the {@link android.R.attr#layout_width}
+ attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
+ @attr name android:layout_width
+ */
+ public static final int LinearLayoutCompat_Layout_android_layout_width = 1;
+ /** Attributes that can be used with a ListPopupWindow.
+
This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset}
+ attribute's value can be found in the {@link #ListPopupWindow} array.
+ @attr name android:dropDownHorizontalOffset
+ */
+ public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset}
+ attribute's value can be found in the {@link #ListPopupWindow} array.
+ @attr name android:dropDownVerticalOffset
+ */
+ public static final int ListPopupWindow_android_dropDownVerticalOffset = 1;
+ /** Attributes that can be used with a MenuGroup.
+
This symbol is the offset where the {@link android.R.attr#checkableBehavior}
+ attribute's value can be found in the {@link #MenuGroup} array.
+ @attr name android:checkableBehavior
+ */
+ public static final int MenuGroup_android_checkableBehavior = 5;
+ /**
+
This symbol is the offset where the {@link android.R.attr#enabled}
+ attribute's value can be found in the {@link #MenuGroup} array.
+ @attr name android:enabled
+ */
+ public static final int MenuGroup_android_enabled = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#id}
+ attribute's value can be found in the {@link #MenuGroup} array.
+ @attr name android:id
+ */
+ public static final int MenuGroup_android_id = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#menuCategory}
+ attribute's value can be found in the {@link #MenuGroup} array.
+ @attr name android:menuCategory
+ */
+ public static final int MenuGroup_android_menuCategory = 3;
+ /**
+
This symbol is the offset where the {@link android.R.attr#orderInCategory}
+ attribute's value can be found in the {@link #MenuGroup} array.
+ @attr name android:orderInCategory
+ */
+ public static final int MenuGroup_android_orderInCategory = 4;
+ /**
+
This symbol is the offset where the {@link android.R.attr#visible}
+ attribute's value can be found in the {@link #MenuGroup} array.
+ @attr name android:visible
+ */
+ public static final int MenuGroup_android_visible = 2;
+ /** Attributes that can be used with a MenuItem.
+
This symbol is the offset where the {@link com.parse.starter.R.attr#actionLayout}
+ attribute's value can be found in the {@link #MenuItem} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:actionLayout
+ */
+ public static final int MenuItem_actionLayout = 14;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#actionProviderClass}
+ attribute's value can be found in the {@link #MenuItem} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:actionProviderClass
+ */
+ public static final int MenuItem_actionProviderClass = 16;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#actionViewClass}
+ attribute's value can be found in the {@link #MenuItem} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:actionViewClass
+ */
+ public static final int MenuItem_actionViewClass = 15;
+ /**
+
This symbol is the offset where the {@link android.R.attr#alphabeticShortcut}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:alphabeticShortcut
+ */
+ public static final int MenuItem_android_alphabeticShortcut = 9;
+ /**
+
This symbol is the offset where the {@link android.R.attr#checkable}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:checkable
+ */
+ public static final int MenuItem_android_checkable = 11;
+ /**
+
This symbol is the offset where the {@link android.R.attr#checked}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:checked
+ */
+ public static final int MenuItem_android_checked = 3;
+ /**
+
This symbol is the offset where the {@link android.R.attr#enabled}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:enabled
+ */
+ public static final int MenuItem_android_enabled = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#icon}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:icon
+ */
+ public static final int MenuItem_android_icon = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#id}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:id
+ */
+ public static final int MenuItem_android_id = 2;
+ /**
+
This symbol is the offset where the {@link android.R.attr#menuCategory}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:menuCategory
+ */
+ public static final int MenuItem_android_menuCategory = 5;
+ /**
+
This symbol is the offset where the {@link android.R.attr#numericShortcut}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:numericShortcut
+ */
+ public static final int MenuItem_android_numericShortcut = 10;
+ /**
+
This symbol is the offset where the {@link android.R.attr#onClick}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:onClick
+ */
+ public static final int MenuItem_android_onClick = 12;
+ /**
+
This symbol is the offset where the {@link android.R.attr#orderInCategory}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:orderInCategory
+ */
+ public static final int MenuItem_android_orderInCategory = 6;
+ /**
+
This symbol is the offset where the {@link android.R.attr#title}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:title
+ */
+ public static final int MenuItem_android_title = 7;
+ /**
+
This symbol is the offset where the {@link android.R.attr#titleCondensed}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:titleCondensed
+ */
+ public static final int MenuItem_android_titleCondensed = 8;
+ /**
+
This symbol is the offset where the {@link android.R.attr#visible}
+ attribute's value can be found in the {@link #MenuItem} array.
+ @attr name android:visible
+ */
+ public static final int MenuItem_android_visible = 4;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#showAsAction}
+ attribute's value can be found in the {@link #MenuItem} array.
+
+
+
Must be one or more (separated by '|') of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
never
0
+
ifRoom
1
+
always
2
+
withText
4
+
collapseActionView
8
+
+ @attr name com.parse.starter:showAsAction
+ */
+ public static final int MenuItem_showAsAction = 13;
+ /** Attributes that can be used with a MenuView.
+
This symbol is the offset where the {@link android.R.attr#headerBackground}
+ attribute's value can be found in the {@link #MenuView} array.
+ @attr name android:headerBackground
+ */
+ public static final int MenuView_android_headerBackground = 4;
+ /**
+
This symbol is the offset where the {@link android.R.attr#horizontalDivider}
+ attribute's value can be found in the {@link #MenuView} array.
+ @attr name android:horizontalDivider
+ */
+ public static final int MenuView_android_horizontalDivider = 2;
+ /**
+
This symbol is the offset where the {@link android.R.attr#itemBackground}
+ attribute's value can be found in the {@link #MenuView} array.
+ @attr name android:itemBackground
+ */
+ public static final int MenuView_android_itemBackground = 5;
+ /**
+
This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha}
+ attribute's value can be found in the {@link #MenuView} array.
+ @attr name android:itemIconDisabledAlpha
+ */
+ public static final int MenuView_android_itemIconDisabledAlpha = 6;
+ /**
+
This symbol is the offset where the {@link android.R.attr#itemTextAppearance}
+ attribute's value can be found in the {@link #MenuView} array.
+ @attr name android:itemTextAppearance
+ */
+ public static final int MenuView_android_itemTextAppearance = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#verticalDivider}
+ attribute's value can be found in the {@link #MenuView} array.
+ @attr name android:verticalDivider
+ */
+ public static final int MenuView_android_verticalDivider = 3;
+ /**
+
This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
+ attribute's value can be found in the {@link #MenuView} array.
+ @attr name android:windowAnimationStyle
+ */
+ public static final int MenuView_android_windowAnimationStyle = 0;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#preserveIconSpacing}
+ attribute's value can be found in the {@link #MenuView} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:preserveIconSpacing
+ */
+ public static final int MenuView_preserveIconSpacing = 7;
+ /** Attributes that can be used with a PopupWindow.
+
This symbol is the offset where the {@link android.R.attr#popupBackground}
+ attribute's value can be found in the {@link #PopupWindow} array.
+ @attr name android:popupBackground
+ */
+ public static final int PopupWindow_android_popupBackground = 0;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#overlapAnchor}
+ attribute's value can be found in the {@link #PopupWindow} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:overlapAnchor
+ */
+ public static final int PopupWindow_overlapAnchor = 1;
+ /** Attributes that can be used with a PopupWindowBackgroundState.
+
+ @see #PopupWindowBackgroundState_state_above_anchor
+ */
+ public static final int[] PopupWindowBackgroundState = {
+ 0x7f010036
+ };
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#state_above_anchor}
+ attribute's value can be found in the {@link #PopupWindowBackgroundState} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:state_above_anchor
+ */
+ public static final int PopupWindowBackgroundState_state_above_anchor = 0;
+ /** Attributes that can be used with a SearchView.
+
This symbol is the offset where the {@link android.R.attr#focusable}
+ attribute's value can be found in the {@link #SearchView} array.
+ @attr name android:focusable
+ */
+ public static final int SearchView_android_focusable = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#imeOptions}
+ attribute's value can be found in the {@link #SearchView} array.
+ @attr name android:imeOptions
+ */
+ public static final int SearchView_android_imeOptions = 3;
+ /**
+
This symbol is the offset where the {@link android.R.attr#inputType}
+ attribute's value can be found in the {@link #SearchView} array.
+ @attr name android:inputType
+ */
+ public static final int SearchView_android_inputType = 2;
+ /**
+
This symbol is the offset where the {@link android.R.attr#maxWidth}
+ attribute's value can be found in the {@link #SearchView} array.
+ @attr name android:maxWidth
+ */
+ public static final int SearchView_android_maxWidth = 1;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#closeIcon}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:closeIcon
+ */
+ public static final int SearchView_closeIcon = 8;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#commitIcon}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:commitIcon
+ */
+ public static final int SearchView_commitIcon = 13;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#defaultQueryHint}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:defaultQueryHint
+ */
+ public static final int SearchView_defaultQueryHint = 7;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#goIcon}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:goIcon
+ */
+ public static final int SearchView_goIcon = 9;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#iconifiedByDefault}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:iconifiedByDefault
+ */
+ public static final int SearchView_iconifiedByDefault = 5;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#layout}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:layout
+ */
+ public static final int SearchView_layout = 4;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#queryBackground}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:queryBackground
+ */
+ public static final int SearchView_queryBackground = 15;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#queryHint}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:queryHint
+ */
+ public static final int SearchView_queryHint = 6;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#searchHintIcon}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:searchHintIcon
+ */
+ public static final int SearchView_searchHintIcon = 11;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#searchIcon}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:searchIcon
+ */
+ public static final int SearchView_searchIcon = 10;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#submitBackground}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:submitBackground
+ */
+ public static final int SearchView_submitBackground = 16;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#suggestionRowLayout}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:suggestionRowLayout
+ */
+ public static final int SearchView_suggestionRowLayout = 14;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#voiceIcon}
+ attribute's value can be found in the {@link #SearchView} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:voiceIcon
+ */
+ public static final int SearchView_voiceIcon = 12;
+ /** Attributes that can be used with a Spinner.
+
This symbol is the offset where the {@link android.R.attr#background}
+ attribute's value can be found in the {@link #Spinner} array.
+ @attr name android:background
+ */
+ public static final int Spinner_android_background = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset}
+ attribute's value can be found in the {@link #Spinner} array.
+ @attr name android:dropDownHorizontalOffset
+ */
+ public static final int Spinner_android_dropDownHorizontalOffset = 5;
+ /**
+
This symbol is the offset where the {@link android.R.attr#dropDownSelector}
+ attribute's value can be found in the {@link #Spinner} array.
+ @attr name android:dropDownSelector
+ */
+ public static final int Spinner_android_dropDownSelector = 2;
+ /**
+
This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset}
+ attribute's value can be found in the {@link #Spinner} array.
+ @attr name android:dropDownVerticalOffset
+ */
+ public static final int Spinner_android_dropDownVerticalOffset = 6;
+ /**
+
This symbol is the offset where the {@link android.R.attr#dropDownWidth}
+ attribute's value can be found in the {@link #Spinner} array.
+ @attr name android:dropDownWidth
+ */
+ public static final int Spinner_android_dropDownWidth = 4;
+ /**
+
This symbol is the offset where the {@link android.R.attr#gravity}
+ attribute's value can be found in the {@link #Spinner} array.
+ @attr name android:gravity
+ */
+ public static final int Spinner_android_gravity = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#popupBackground}
+ attribute's value can be found in the {@link #Spinner} array.
+ @attr name android:popupBackground
+ */
+ public static final int Spinner_android_popupBackground = 3;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#disableChildrenWhenDisabled}
+ attribute's value can be found in the {@link #Spinner} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:disableChildrenWhenDisabled
+ */
+ public static final int Spinner_disableChildrenWhenDisabled = 10;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#popupPromptView}
+ attribute's value can be found in the {@link #Spinner} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:popupPromptView
+ */
+ public static final int Spinner_popupPromptView = 9;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#prompt}
+ attribute's value can be found in the {@link #Spinner} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:prompt
+ */
+ public static final int Spinner_prompt = 7;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#spinnerMode}
+ attribute's value can be found in the {@link #Spinner} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
dialog
0
+
dropdown
1
+
+ @attr name com.parse.starter:spinnerMode
+ */
+ public static final int Spinner_spinnerMode = 8;
+ /** Attributes that can be used with a SwitchCompat.
+
This symbol is the offset where the {@link android.R.attr#textOff}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+ @attr name android:textOff
+ */
+ public static final int SwitchCompat_android_textOff = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#textOn}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+ @attr name android:textOn
+ */
+ public static final int SwitchCompat_android_textOn = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#thumb}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+ @attr name android:thumb
+ */
+ public static final int SwitchCompat_android_thumb = 2;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#showText}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:showText
+ */
+ public static final int SwitchCompat_showText = 9;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#splitTrack}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:splitTrack
+ */
+ public static final int SwitchCompat_splitTrack = 8;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#switchMinWidth}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:switchMinWidth
+ */
+ public static final int SwitchCompat_switchMinWidth = 6;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#switchPadding}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:switchPadding
+ */
+ public static final int SwitchCompat_switchPadding = 7;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#switchTextAppearance}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:switchTextAppearance
+ */
+ public static final int SwitchCompat_switchTextAppearance = 5;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#thumbTextPadding}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:thumbTextPadding
+ */
+ public static final int SwitchCompat_thumbTextPadding = 4;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#track}
+ attribute's value can be found in the {@link #SwitchCompat} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:track
+ */
+ public static final int SwitchCompat_track = 3;
+ /** Attributes that can be used with a TextAppearance.
+
This symbol is the offset where the {@link android.R.attr#textColor}
+ attribute's value can be found in the {@link #TextAppearance} array.
+ @attr name android:textColor
+ */
+ public static final int TextAppearance_android_textColor = 3;
+ /**
+
This symbol is the offset where the {@link android.R.attr#textSize}
+ attribute's value can be found in the {@link #TextAppearance} array.
+ @attr name android:textSize
+ */
+ public static final int TextAppearance_android_textSize = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#textStyle}
+ attribute's value can be found in the {@link #TextAppearance} array.
+ @attr name android:textStyle
+ */
+ public static final int TextAppearance_android_textStyle = 2;
+ /**
+
This symbol is the offset where the {@link android.R.attr#typeface}
+ attribute's value can be found in the {@link #TextAppearance} array.
+ @attr name android:typeface
+ */
+ public static final int TextAppearance_android_typeface = 1;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#textAllCaps}
+ attribute's value can be found in the {@link #TextAppearance} array.
+
+
+
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a boolean value, either "true" or "false".
+ @attr name com.parse.starter:textAllCaps
+ */
+ public static final int TextAppearance_textAllCaps = 4;
+ /** Attributes that can be used with a Theme.
+
This symbol is the offset where the {@link com.parse.starter.R.attr#actionBarDivider}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:actionBarDivider
+ */
+ public static final int Theme_actionBarDivider = 23;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#actionBarItemBackground}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:actionBarItemBackground
+ */
+ public static final int Theme_actionBarItemBackground = 24;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#actionBarPopupTheme}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:actionBarPopupTheme
+ */
+ public static final int Theme_actionBarPopupTheme = 17;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#actionBarSize}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+
May be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
wrap_content
0
+
+ @attr name com.parse.starter:actionBarSize
+ */
+ public static final int Theme_actionBarSize = 22;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#actionBarSplitStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:actionBarSplitStyle
+ */
+ public static final int Theme_actionBarSplitStyle = 19;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#actionBarStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:actionBarStyle
+ */
+ public static final int Theme_actionBarStyle = 18;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#actionBarTabBarStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:actionBarTabBarStyle
+ */
+ public static final int Theme_actionBarTabBarStyle = 13;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#actionBarTabStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:actionBarTabStyle
+ */
+ public static final int Theme_actionBarTabStyle = 12;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#actionBarTabTextStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:actionBarTabTextStyle
+ */
+ public static final int Theme_actionBarTabTextStyle = 14;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#actionBarTheme}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:actionBarTheme
+ */
+ public static final int Theme_actionBarTheme = 20;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#actionBarWidgetTheme}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:actionBarWidgetTheme
+ */
+ public static final int Theme_actionBarWidgetTheme = 21;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#actionButtonStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:actionButtonStyle
+ */
+ public static final int Theme_actionButtonStyle = 49;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#actionDropDownStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:actionDropDownStyle
+ */
+ public static final int Theme_actionDropDownStyle = 45;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#actionMenuTextAppearance}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:actionMenuTextAppearance
+ */
+ public static final int Theme_actionMenuTextAppearance = 25;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#actionMenuTextColor}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ @attr name com.parse.starter:actionMenuTextColor
+ */
+ public static final int Theme_actionMenuTextColor = 26;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#actionModeBackground}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:actionModeBackground
+ */
+ public static final int Theme_actionModeBackground = 29;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#actionModeCloseButtonStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:actionModeCloseButtonStyle
+ */
+ public static final int Theme_actionModeCloseButtonStyle = 28;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#actionModeCloseDrawable}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:actionModeCloseDrawable
+ */
+ public static final int Theme_actionModeCloseDrawable = 31;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#actionModeCopyDrawable}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:actionModeCopyDrawable
+ */
+ public static final int Theme_actionModeCopyDrawable = 33;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#actionModeCutDrawable}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:actionModeCutDrawable
+ */
+ public static final int Theme_actionModeCutDrawable = 32;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#actionModeFindDrawable}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:actionModeFindDrawable
+ */
+ public static final int Theme_actionModeFindDrawable = 37;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#actionModePasteDrawable}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:actionModePasteDrawable
+ */
+ public static final int Theme_actionModePasteDrawable = 34;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#actionModePopupWindowStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:actionModePopupWindowStyle
+ */
+ public static final int Theme_actionModePopupWindowStyle = 39;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#actionModeSelectAllDrawable}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:actionModeSelectAllDrawable
+ */
+ public static final int Theme_actionModeSelectAllDrawable = 35;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#actionModeShareDrawable}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:actionModeShareDrawable
+ */
+ public static final int Theme_actionModeShareDrawable = 36;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#actionModeSplitBackground}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:actionModeSplitBackground
+ */
+ public static final int Theme_actionModeSplitBackground = 30;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#actionModeStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:actionModeStyle
+ */
+ public static final int Theme_actionModeStyle = 27;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#actionModeWebSearchDrawable}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:actionModeWebSearchDrawable
+ */
+ public static final int Theme_actionModeWebSearchDrawable = 38;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#actionOverflowButtonStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:actionOverflowButtonStyle
+ */
+ public static final int Theme_actionOverflowButtonStyle = 15;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#actionOverflowMenuStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:actionOverflowMenuStyle
+ */
+ public static final int Theme_actionOverflowMenuStyle = 16;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#activityChooserViewStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:activityChooserViewStyle
+ */
+ public static final int Theme_activityChooserViewStyle = 57;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#alertDialogButtonGroupStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:alertDialogButtonGroupStyle
+ */
+ public static final int Theme_alertDialogButtonGroupStyle = 90;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#alertDialogCenterButtons}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:alertDialogCenterButtons
+ */
+ public static final int Theme_alertDialogCenterButtons = 91;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#alertDialogStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:alertDialogStyle
+ */
+ public static final int Theme_alertDialogStyle = 89;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#alertDialogTheme}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:alertDialogTheme
+ */
+ public static final int Theme_alertDialogTheme = 92;
+ /**
+
This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
+ attribute's value can be found in the {@link #Theme} array.
+ @attr name android:windowAnimationStyle
+ */
+ public static final int Theme_android_windowAnimationStyle = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#windowIsFloating}
+ attribute's value can be found in the {@link #Theme} array.
+ @attr name android:windowIsFloating
+ */
+ public static final int Theme_android_windowIsFloating = 0;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#autoCompleteTextViewStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:autoCompleteTextViewStyle
+ */
+ public static final int Theme_autoCompleteTextViewStyle = 97;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#borderlessButtonStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:borderlessButtonStyle
+ */
+ public static final int Theme_borderlessButtonStyle = 54;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#buttonBarButtonStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:buttonBarButtonStyle
+ */
+ public static final int Theme_buttonBarButtonStyle = 51;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#buttonBarNegativeButtonStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:buttonBarNegativeButtonStyle
+ */
+ public static final int Theme_buttonBarNegativeButtonStyle = 95;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#buttonBarNeutralButtonStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:buttonBarNeutralButtonStyle
+ */
+ public static final int Theme_buttonBarNeutralButtonStyle = 96;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#buttonBarPositiveButtonStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:buttonBarPositiveButtonStyle
+ */
+ public static final int Theme_buttonBarPositiveButtonStyle = 94;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#buttonBarStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:buttonBarStyle
+ */
+ public static final int Theme_buttonBarStyle = 50;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#buttonStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:buttonStyle
+ */
+ public static final int Theme_buttonStyle = 98;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#buttonStyleSmall}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:buttonStyleSmall
+ */
+ public static final int Theme_buttonStyleSmall = 99;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#checkboxStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:checkboxStyle
+ */
+ public static final int Theme_checkboxStyle = 100;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#checkedTextViewStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:checkedTextViewStyle
+ */
+ public static final int Theme_checkedTextViewStyle = 101;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#colorAccent}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:colorAccent
+ */
+ public static final int Theme_colorAccent = 83;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#colorButtonNormal}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:colorButtonNormal
+ */
+ public static final int Theme_colorButtonNormal = 87;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#colorControlActivated}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:colorControlActivated
+ */
+ public static final int Theme_colorControlActivated = 85;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#colorControlHighlight}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:colorControlHighlight
+ */
+ public static final int Theme_colorControlHighlight = 86;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#colorControlNormal}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:colorControlNormal
+ */
+ public static final int Theme_colorControlNormal = 84;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#colorPrimary}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:colorPrimary
+ */
+ public static final int Theme_colorPrimary = 81;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#colorPrimaryDark}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:colorPrimaryDark
+ */
+ public static final int Theme_colorPrimaryDark = 82;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#colorSwitchThumbNormal}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:colorSwitchThumbNormal
+ */
+ public static final int Theme_colorSwitchThumbNormal = 88;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#dialogPreferredPadding}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:dialogPreferredPadding
+ */
+ public static final int Theme_dialogPreferredPadding = 43;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#dialogTheme}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:dialogTheme
+ */
+ public static final int Theme_dialogTheme = 42;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#dividerHorizontal}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:dividerHorizontal
+ */
+ public static final int Theme_dividerHorizontal = 56;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#dividerVertical}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:dividerVertical
+ */
+ public static final int Theme_dividerVertical = 55;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#dropDownListViewStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:dropDownListViewStyle
+ */
+ public static final int Theme_dropDownListViewStyle = 73;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#dropdownListPreferredItemHeight}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:dropdownListPreferredItemHeight
+ */
+ public static final int Theme_dropdownListPreferredItemHeight = 46;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#editTextBackground}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:editTextBackground
+ */
+ public static final int Theme_editTextBackground = 63;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#editTextColor}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ @attr name com.parse.starter:editTextColor
+ */
+ public static final int Theme_editTextColor = 62;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#editTextStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:editTextStyle
+ */
+ public static final int Theme_editTextStyle = 102;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#homeAsUpIndicator}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:homeAsUpIndicator
+ */
+ public static final int Theme_homeAsUpIndicator = 48;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#listChoiceBackgroundIndicator}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:listChoiceBackgroundIndicator
+ */
+ public static final int Theme_listChoiceBackgroundIndicator = 80;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#listDividerAlertDialog}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:listDividerAlertDialog
+ */
+ public static final int Theme_listDividerAlertDialog = 44;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#listPopupWindowStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:listPopupWindowStyle
+ */
+ public static final int Theme_listPopupWindowStyle = 74;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#listPreferredItemHeight}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:listPreferredItemHeight
+ */
+ public static final int Theme_listPreferredItemHeight = 68;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#listPreferredItemHeightLarge}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:listPreferredItemHeightLarge
+ */
+ public static final int Theme_listPreferredItemHeightLarge = 70;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#listPreferredItemHeightSmall}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:listPreferredItemHeightSmall
+ */
+ public static final int Theme_listPreferredItemHeightSmall = 69;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#listPreferredItemPaddingLeft}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:listPreferredItemPaddingLeft
+ */
+ public static final int Theme_listPreferredItemPaddingLeft = 71;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#listPreferredItemPaddingRight}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:listPreferredItemPaddingRight
+ */
+ public static final int Theme_listPreferredItemPaddingRight = 72;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#panelBackground}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:panelBackground
+ */
+ public static final int Theme_panelBackground = 77;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#panelMenuListTheme}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:panelMenuListTheme
+ */
+ public static final int Theme_panelMenuListTheme = 79;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#panelMenuListWidth}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:panelMenuListWidth
+ */
+ public static final int Theme_panelMenuListWidth = 78;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#popupMenuStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:popupMenuStyle
+ */
+ public static final int Theme_popupMenuStyle = 60;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#popupWindowStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:popupWindowStyle
+ */
+ public static final int Theme_popupWindowStyle = 61;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#radioButtonStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:radioButtonStyle
+ */
+ public static final int Theme_radioButtonStyle = 103;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#ratingBarStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:ratingBarStyle
+ */
+ public static final int Theme_ratingBarStyle = 104;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#searchViewStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:searchViewStyle
+ */
+ public static final int Theme_searchViewStyle = 67;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#selectableItemBackground}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:selectableItemBackground
+ */
+ public static final int Theme_selectableItemBackground = 52;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#selectableItemBackgroundBorderless}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:selectableItemBackgroundBorderless
+ */
+ public static final int Theme_selectableItemBackgroundBorderless = 53;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#spinnerDropDownItemStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:spinnerDropDownItemStyle
+ */
+ public static final int Theme_spinnerDropDownItemStyle = 47;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#spinnerStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:spinnerStyle
+ */
+ public static final int Theme_spinnerStyle = 105;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#switchStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:switchStyle
+ */
+ public static final int Theme_switchStyle = 106;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#textAppearanceLargePopupMenu}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:textAppearanceLargePopupMenu
+ */
+ public static final int Theme_textAppearanceLargePopupMenu = 40;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#textAppearanceListItem}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:textAppearanceListItem
+ */
+ public static final int Theme_textAppearanceListItem = 75;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#textAppearanceListItemSmall}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:textAppearanceListItemSmall
+ */
+ public static final int Theme_textAppearanceListItemSmall = 76;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#textAppearanceSearchResultSubtitle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:textAppearanceSearchResultSubtitle
+ */
+ public static final int Theme_textAppearanceSearchResultSubtitle = 65;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#textAppearanceSearchResultTitle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:textAppearanceSearchResultTitle
+ */
+ public static final int Theme_textAppearanceSearchResultTitle = 64;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#textAppearanceSmallPopupMenu}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:textAppearanceSmallPopupMenu
+ */
+ public static final int Theme_textAppearanceSmallPopupMenu = 41;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#textColorAlertDialogListItem}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ @attr name com.parse.starter:textColorAlertDialogListItem
+ */
+ public static final int Theme_textColorAlertDialogListItem = 93;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#textColorSearchUrl}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
May be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+
May be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+ @attr name com.parse.starter:textColorSearchUrl
+ */
+ public static final int Theme_textColorSearchUrl = 66;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#toolbarNavigationButtonStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:toolbarNavigationButtonStyle
+ */
+ public static final int Theme_toolbarNavigationButtonStyle = 59;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#toolbarStyle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:toolbarStyle
+ */
+ public static final int Theme_toolbarStyle = 58;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#windowActionBar}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:windowActionBar
+ */
+ public static final int Theme_windowActionBar = 2;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#windowActionBarOverlay}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:windowActionBarOverlay
+ */
+ public static final int Theme_windowActionBarOverlay = 4;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#windowActionModeOverlay}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:windowActionModeOverlay
+ */
+ public static final int Theme_windowActionModeOverlay = 5;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#windowFixedHeightMajor}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:windowFixedHeightMajor
+ */
+ public static final int Theme_windowFixedHeightMajor = 9;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#windowFixedHeightMinor}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:windowFixedHeightMinor
+ */
+ public static final int Theme_windowFixedHeightMinor = 7;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#windowFixedWidthMajor}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:windowFixedWidthMajor
+ */
+ public static final int Theme_windowFixedWidthMajor = 6;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#windowFixedWidthMinor}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:windowFixedWidthMinor
+ */
+ public static final int Theme_windowFixedWidthMinor = 8;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#windowMinWidthMajor}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:windowMinWidthMajor
+ */
+ public static final int Theme_windowMinWidthMajor = 10;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#windowMinWidthMinor}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:windowMinWidthMinor
+ */
+ public static final int Theme_windowMinWidthMinor = 11;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#windowNoTitle}
+ attribute's value can be found in the {@link #Theme} array.
+
+
+
Must be a boolean value, either "true" or "false".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:windowNoTitle
+ */
+ public static final int Theme_windowNoTitle = 3;
+ /** Attributes that can be used with a Toolbar.
+
This symbol is the offset where the {@link android.R.attr#gravity}
+ attribute's value can be found in the {@link #Toolbar} array.
+ @attr name android:gravity
+ */
+ public static final int Toolbar_android_gravity = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#minHeight}
+ attribute's value can be found in the {@link #Toolbar} array.
+ @attr name android:minHeight
+ */
+ public static final int Toolbar_android_minHeight = 1;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#collapseContentDescription}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:collapseContentDescription
+ */
+ public static final int Toolbar_collapseContentDescription = 18;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#collapseIcon}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:collapseIcon
+ */
+ public static final int Toolbar_collapseIcon = 17;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#contentInsetEnd}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:contentInsetEnd
+ */
+ public static final int Toolbar_contentInsetEnd = 5;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#contentInsetLeft}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:contentInsetLeft
+ */
+ public static final int Toolbar_contentInsetLeft = 6;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#contentInsetRight}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:contentInsetRight
+ */
+ public static final int Toolbar_contentInsetRight = 7;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#contentInsetStart}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:contentInsetStart
+ */
+ public static final int Toolbar_contentInsetStart = 4;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#maxButtonHeight}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:maxButtonHeight
+ */
+ public static final int Toolbar_maxButtonHeight = 16;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#navigationContentDescription}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:navigationContentDescription
+ */
+ public static final int Toolbar_navigationContentDescription = 20;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#navigationIcon}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:navigationIcon
+ */
+ public static final int Toolbar_navigationIcon = 19;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#popupTheme}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:popupTheme
+ */
+ public static final int Toolbar_popupTheme = 8;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#subtitle}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:subtitle
+ */
+ public static final int Toolbar_subtitle = 3;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#subtitleTextAppearance}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:subtitleTextAppearance
+ */
+ public static final int Toolbar_subtitleTextAppearance = 10;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#title}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:title
+ */
+ public static final int Toolbar_title = 2;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#titleMarginBottom}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:titleMarginBottom
+ */
+ public static final int Toolbar_titleMarginBottom = 15;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#titleMarginEnd}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:titleMarginEnd
+ */
+ public static final int Toolbar_titleMarginEnd = 13;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#titleMarginStart}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:titleMarginStart
+ */
+ public static final int Toolbar_titleMarginStart = 12;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#titleMarginTop}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:titleMarginTop
+ */
+ public static final int Toolbar_titleMarginTop = 14;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#titleMargins}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:titleMargins
+ */
+ public static final int Toolbar_titleMargins = 11;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#titleTextAppearance}
+ attribute's value can be found in the {@link #Toolbar} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:titleTextAppearance
+ */
+ public static final int Toolbar_titleTextAppearance = 9;
+ /** Attributes that can be used with a View.
+
This symbol is the offset where the {@link android.R.attr#focusable}
+ attribute's value can be found in the {@link #View} array.
+ @attr name android:focusable
+ */
+ public static final int View_android_focusable = 1;
+ /**
+
This symbol is the offset where the {@link android.R.attr#theme}
+ attribute's value can be found in the {@link #View} array.
+ @attr name android:theme
+ */
+ public static final int View_android_theme = 0;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#backgroundTint}
+ attribute's value can be found in the {@link #View} array.
+
+
+
Must be a color value, in the form of "#rgb", "#argb",
+"#rrggbb", or "#aarrggbb".
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:backgroundTint
+ */
+ public static final int View_backgroundTint = 5;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#backgroundTintMode}
+ attribute's value can be found in the {@link #View} array.
+
+
+
Must be one of the following constant values.
+
+
+
+
+
Constant
Value
Description
+
src_over
3
+
src_in
5
+
src_atop
9
+
multiply
14
+
screen
15
+
+ @attr name com.parse.starter:backgroundTintMode
+ */
+ public static final int View_backgroundTintMode = 6;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#paddingEnd}
+ attribute's value can be found in the {@link #View} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:paddingEnd
+ */
+ public static final int View_paddingEnd = 3;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#paddingStart}
+ attribute's value can be found in the {@link #View} array.
+
+
+
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+
This may also be a reference to a resource (in the form
+"@[package:]type:name") or
+theme attribute (in the form
+"?[package:][type:]name")
+containing a value of this type.
+ @attr name com.parse.starter:paddingStart
+ */
+ public static final int View_paddingStart = 2;
+ /**
+
This symbol is the offset where the {@link com.parse.starter.R.attr#theme}
+ attribute's value can be found in the {@link #View} array.
+
+
+
Must be a reference to another resource, in the form "@[+][package:]type:name"
+or to a theme attribute in the form "?[package:][type:]name".
+ @attr name com.parse.starter:theme
+ */
+ public static final int View_theme = 4;
+ /** Attributes that can be used with a ViewStubCompat.
+
This symbol is the offset where the {@link android.R.attr#id}
+ attribute's value can be found in the {@link #ViewStubCompat} array.
+ @attr name android:id
+ */
+ public static final int ViewStubCompat_android_id = 0;
+ /**
+
This symbol is the offset where the {@link android.R.attr#inflatedId}
+ attribute's value can be found in the {@link #ViewStubCompat} array.
+ @attr name android:inflatedId
+ */
+ public static final int ViewStubCompat_android_inflatedId = 2;
+ /**
+
This symbol is the offset where the {@link android.R.attr#layout}
+ attribute's value can be found in the {@link #ViewStubCompat} array.
+ @attr name android:layout
+ */
+ public static final int ViewStubCompat_android_layout = 1;
+ };
+}
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/AndroidManifest.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/AndroidManifest.xml
new file mode 100644
index 0000000..58122b1
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/AndroidManifest.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/R.txt b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/R.txt
new file mode 100644
index 0000000..318b126
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/R.txt
@@ -0,0 +1,1161 @@
+int anim abc_fade_in 0x7f040000
+int anim abc_fade_out 0x7f040001
+int anim abc_grow_fade_in_from_bottom 0x7f040002
+int anim abc_popup_enter 0x7f040003
+int anim abc_popup_exit 0x7f040004
+int anim abc_shrink_fade_out_from_bottom 0x7f040005
+int anim abc_slide_in_bottom 0x7f040006
+int anim abc_slide_in_top 0x7f040007
+int anim abc_slide_out_bottom 0x7f040008
+int anim abc_slide_out_top 0x7f040009
+int attr actionBarDivider 0x7f010064
+int attr actionBarItemBackground 0x7f010065
+int attr actionBarPopupTheme 0x7f01005e
+int attr actionBarSize 0x7f010063
+int attr actionBarSplitStyle 0x7f010060
+int attr actionBarStyle 0x7f01005f
+int attr actionBarTabBarStyle 0x7f01005a
+int attr actionBarTabStyle 0x7f010059
+int attr actionBarTabTextStyle 0x7f01005b
+int attr actionBarTheme 0x7f010061
+int attr actionBarWidgetTheme 0x7f010062
+int attr actionButtonStyle 0x7f01007e
+int attr actionDropDownStyle 0x7f01007a
+int attr actionLayout 0x7f010031
+int attr actionMenuTextAppearance 0x7f010066
+int attr actionMenuTextColor 0x7f010067
+int attr actionModeBackground 0x7f01006a
+int attr actionModeCloseButtonStyle 0x7f010069
+int attr actionModeCloseDrawable 0x7f01006c
+int attr actionModeCopyDrawable 0x7f01006e
+int attr actionModeCutDrawable 0x7f01006d
+int attr actionModeFindDrawable 0x7f010072
+int attr actionModePasteDrawable 0x7f01006f
+int attr actionModePopupWindowStyle 0x7f010074
+int attr actionModeSelectAllDrawable 0x7f010070
+int attr actionModeShareDrawable 0x7f010071
+int attr actionModeSplitBackground 0x7f01006b
+int attr actionModeStyle 0x7f010068
+int attr actionModeWebSearchDrawable 0x7f010073
+int attr actionOverflowButtonStyle 0x7f01005c
+int attr actionOverflowMenuStyle 0x7f01005d
+int attr actionProviderClass 0x7f010033
+int attr actionViewClass 0x7f010032
+int attr activityChooserViewStyle 0x7f010086
+int attr alertDialogButtonGroupStyle 0x7f0100a7
+int attr alertDialogCenterButtons 0x7f0100a8
+int attr alertDialogStyle 0x7f0100a6
+int attr alertDialogTheme 0x7f0100a9
+int attr autoCompleteTextViewStyle 0x7f0100ae
+int attr background 0x7f01000c
+int attr backgroundSplit 0x7f01000e
+int attr backgroundStacked 0x7f01000d
+int attr backgroundTint 0x7f0100c7
+int attr backgroundTintMode 0x7f0100c8
+int attr barSize 0x7f01002b
+int attr borderlessButtonStyle 0x7f010083
+int attr buttonBarButtonStyle 0x7f010080
+int attr buttonBarNegativeButtonStyle 0x7f0100ac
+int attr buttonBarNeutralButtonStyle 0x7f0100ad
+int attr buttonBarPositiveButtonStyle 0x7f0100ab
+int attr buttonBarStyle 0x7f01007f
+int attr buttonPanelSideLayout 0x7f01001f
+int attr buttonStyle 0x7f0100af
+int attr buttonStyleSmall 0x7f0100b0
+int attr checkboxStyle 0x7f0100b1
+int attr checkedTextViewStyle 0x7f0100b2
+int attr closeIcon 0x7f01003b
+int attr closeItemLayout 0x7f01001c
+int attr collapseContentDescription 0x7f0100c1
+int attr collapseIcon 0x7f0100c0
+int attr color 0x7f010025
+int attr colorAccent 0x7f0100a0
+int attr colorButtonNormal 0x7f0100a4
+int attr colorControlActivated 0x7f0100a2
+int attr colorControlHighlight 0x7f0100a3
+int attr colorControlNormal 0x7f0100a1
+int attr colorPrimary 0x7f01009e
+int attr colorPrimaryDark 0x7f01009f
+int attr colorSwitchThumbNormal 0x7f0100a5
+int attr commitIcon 0x7f010040
+int attr contentInsetEnd 0x7f010017
+int attr contentInsetLeft 0x7f010018
+int attr contentInsetRight 0x7f010019
+int attr contentInsetStart 0x7f010016
+int attr customNavigationLayout 0x7f01000f
+int attr defaultQueryHint 0x7f01003a
+int attr dialogPreferredPadding 0x7f010078
+int attr dialogTheme 0x7f010077
+int attr disableChildrenWhenDisabled 0x7f010047
+int attr displayOptions 0x7f010005
+int attr divider 0x7f01000b
+int attr dividerHorizontal 0x7f010085
+int attr dividerPadding 0x7f01002f
+int attr dividerVertical 0x7f010084
+int attr drawableSize 0x7f010027
+int attr drawerArrowStyle 0x7f010000
+int attr dropDownListViewStyle 0x7f010096
+int attr dropdownListPreferredItemHeight 0x7f01007b
+int attr editTextBackground 0x7f01008c
+int attr editTextColor 0x7f01008b
+int attr editTextStyle 0x7f0100b3
+int attr elevation 0x7f01001a
+int attr expandActivityOverflowButtonDrawable 0x7f01001e
+int attr gapBetweenBars 0x7f010028
+int attr goIcon 0x7f01003c
+int attr height 0x7f010001
+int attr hideOnContentScroll 0x7f010015
+int attr homeAsUpIndicator 0x7f01007d
+int attr homeLayout 0x7f010010
+int attr icon 0x7f010009
+int attr iconifiedByDefault 0x7f010038
+int attr indeterminateProgressStyle 0x7f010012
+int attr initialActivityCount 0x7f01001d
+int attr isLightTheme 0x7f010002
+int attr itemPadding 0x7f010014
+int attr layout 0x7f010037
+int attr listChoiceBackgroundIndicator 0x7f01009d
+int attr listDividerAlertDialog 0x7f010079
+int attr listItemLayout 0x7f010023
+int attr listLayout 0x7f010020
+int attr listPopupWindowStyle 0x7f010097
+int attr listPreferredItemHeight 0x7f010091
+int attr listPreferredItemHeightLarge 0x7f010093
+int attr listPreferredItemHeightSmall 0x7f010092
+int attr listPreferredItemPaddingLeft 0x7f010094
+int attr listPreferredItemPaddingRight 0x7f010095
+int attr logo 0x7f01000a
+int attr maxButtonHeight 0x7f0100bf
+int attr measureWithLargestChild 0x7f01002d
+int attr middleBarArrowSize 0x7f01002a
+int attr multiChoiceItemLayout 0x7f010021
+int attr navigationContentDescription 0x7f0100c3
+int attr navigationIcon 0x7f0100c2
+int attr navigationMode 0x7f010004
+int attr overlapAnchor 0x7f010035
+int attr paddingEnd 0x7f0100c5
+int attr paddingStart 0x7f0100c4
+int attr panelBackground 0x7f01009a
+int attr panelMenuListTheme 0x7f01009c
+int attr panelMenuListWidth 0x7f01009b
+int attr popupMenuStyle 0x7f010089
+int attr popupPromptView 0x7f010046
+int attr popupTheme 0x7f01001b
+int attr popupWindowStyle 0x7f01008a
+int attr preserveIconSpacing 0x7f010034
+int attr progressBarPadding 0x7f010013
+int attr progressBarStyle 0x7f010011
+int attr prompt 0x7f010044
+int attr queryBackground 0x7f010042
+int attr queryHint 0x7f010039
+int attr radioButtonStyle 0x7f0100b4
+int attr ratingBarStyle 0x7f0100b5
+int attr searchHintIcon 0x7f01003e
+int attr searchIcon 0x7f01003d
+int attr searchViewStyle 0x7f010090
+int attr selectableItemBackground 0x7f010081
+int attr selectableItemBackgroundBorderless 0x7f010082
+int attr showAsAction 0x7f010030
+int attr showDividers 0x7f01002e
+int attr showText 0x7f01004e
+int attr singleChoiceItemLayout 0x7f010022
+int attr spinBars 0x7f010026
+int attr spinnerDropDownItemStyle 0x7f01007c
+int attr spinnerMode 0x7f010045
+int attr spinnerStyle 0x7f0100b6
+int attr splitTrack 0x7f01004d
+int attr state_above_anchor 0x7f010036
+int attr submitBackground 0x7f010043
+int attr subtitle 0x7f010006
+int attr subtitleTextAppearance 0x7f0100b9
+int attr subtitleTextStyle 0x7f010008
+int attr suggestionRowLayout 0x7f010041
+int attr switchMinWidth 0x7f01004b
+int attr switchPadding 0x7f01004c
+int attr switchStyle 0x7f0100b7
+int attr switchTextAppearance 0x7f01004a
+int attr textAllCaps 0x7f010024
+int attr textAppearanceLargePopupMenu 0x7f010075
+int attr textAppearanceListItem 0x7f010098
+int attr textAppearanceListItemSmall 0x7f010099
+int attr textAppearanceSearchResultSubtitle 0x7f01008e
+int attr textAppearanceSearchResultTitle 0x7f01008d
+int attr textAppearanceSmallPopupMenu 0x7f010076
+int attr textColorAlertDialogListItem 0x7f0100aa
+int attr textColorSearchUrl 0x7f01008f
+int attr theme 0x7f0100c6
+int attr thickness 0x7f01002c
+int attr thumbTextPadding 0x7f010049
+int attr title 0x7f010003
+int attr titleMarginBottom 0x7f0100be
+int attr titleMarginEnd 0x7f0100bc
+int attr titleMarginStart 0x7f0100bb
+int attr titleMarginTop 0x7f0100bd
+int attr titleMargins 0x7f0100ba
+int attr titleTextAppearance 0x7f0100b8
+int attr titleTextStyle 0x7f010007
+int attr toolbarNavigationButtonStyle 0x7f010088
+int attr toolbarStyle 0x7f010087
+int attr topBottomBarArrowSize 0x7f010029
+int attr track 0x7f010048
+int attr voiceIcon 0x7f01003f
+int attr windowActionBar 0x7f01004f
+int attr windowActionBarOverlay 0x7f010051
+int attr windowActionModeOverlay 0x7f010052
+int attr windowFixedHeightMajor 0x7f010056
+int attr windowFixedHeightMinor 0x7f010054
+int attr windowFixedWidthMajor 0x7f010053
+int attr windowFixedWidthMinor 0x7f010055
+int attr windowMinWidthMajor 0x7f010057
+int attr windowMinWidthMinor 0x7f010058
+int attr windowNoTitle 0x7f010050
+int bool abc_action_bar_embed_tabs 0x7f080002
+int bool abc_action_bar_embed_tabs_pre_jb 0x7f080000
+int bool abc_action_bar_expanded_action_views_exclusive 0x7f080003
+int bool abc_config_actionMenuItemAllCaps 0x7f080004
+int bool abc_config_allowActionMenuItemTextWithIcon 0x7f080001
+int bool abc_config_closeDialogWhenTouchOutside 0x7f080005
+int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f080006
+int color abc_background_cache_hint_selector_material_dark 0x7f0a0033
+int color abc_background_cache_hint_selector_material_light 0x7f0a0034
+int color abc_input_method_navigation_guard 0x7f0a0000
+int color abc_primary_text_disable_only_material_dark 0x7f0a0035
+int color abc_primary_text_disable_only_material_light 0x7f0a0036
+int color abc_primary_text_material_dark 0x7f0a0037
+int color abc_primary_text_material_light 0x7f0a0038
+int color abc_search_url_text 0x7f0a0039
+int color abc_search_url_text_normal 0x7f0a0001
+int color abc_search_url_text_pressed 0x7f0a0002
+int color abc_search_url_text_selected 0x7f0a0003
+int color abc_secondary_text_material_dark 0x7f0a003a
+int color abc_secondary_text_material_light 0x7f0a003b
+int color accent_material_dark 0x7f0a0004
+int color accent_material_light 0x7f0a0005
+int color background_floating_material_dark 0x7f0a0006
+int color background_floating_material_light 0x7f0a0007
+int color background_material_dark 0x7f0a0008
+int color background_material_light 0x7f0a0009
+int color bright_foreground_disabled_material_dark 0x7f0a000a
+int color bright_foreground_disabled_material_light 0x7f0a000b
+int color bright_foreground_inverse_material_dark 0x7f0a000c
+int color bright_foreground_inverse_material_light 0x7f0a000d
+int color bright_foreground_material_dark 0x7f0a000e
+int color bright_foreground_material_light 0x7f0a000f
+int color button_material_dark 0x7f0a0010
+int color button_material_light 0x7f0a0011
+int color dim_foreground_disabled_material_dark 0x7f0a0012
+int color dim_foreground_disabled_material_light 0x7f0a0013
+int color dim_foreground_material_dark 0x7f0a0014
+int color dim_foreground_material_light 0x7f0a0015
+int color highlighted_text_material_dark 0x7f0a0016
+int color highlighted_text_material_light 0x7f0a0017
+int color hint_foreground_material_dark 0x7f0a0018
+int color hint_foreground_material_light 0x7f0a0019
+int color link_text_material_dark 0x7f0a001a
+int color link_text_material_light 0x7f0a001b
+int color material_blue_grey_800 0x7f0a001c
+int color material_blue_grey_900 0x7f0a001d
+int color material_blue_grey_950 0x7f0a001e
+int color material_deep_teal_200 0x7f0a001f
+int color material_deep_teal_500 0x7f0a0020
+int color primary_dark_material_dark 0x7f0a0021
+int color primary_dark_material_light 0x7f0a0022
+int color primary_material_dark 0x7f0a0023
+int color primary_material_light 0x7f0a0024
+int color primary_text_default_material_dark 0x7f0a0025
+int color primary_text_default_material_light 0x7f0a0026
+int color primary_text_disabled_material_dark 0x7f0a0027
+int color primary_text_disabled_material_light 0x7f0a0028
+int color ripple_material_dark 0x7f0a0029
+int color ripple_material_light 0x7f0a002a
+int color secondary_text_default_material_dark 0x7f0a002b
+int color secondary_text_default_material_light 0x7f0a002c
+int color secondary_text_disabled_material_dark 0x7f0a002d
+int color secondary_text_disabled_material_light 0x7f0a002e
+int color switch_thumb_disabled_material_dark 0x7f0a002f
+int color switch_thumb_disabled_material_light 0x7f0a0030
+int color switch_thumb_material_dark 0x7f0a003c
+int color switch_thumb_material_light 0x7f0a003d
+int color switch_thumb_normal_material_dark 0x7f0a0031
+int color switch_thumb_normal_material_light 0x7f0a0032
+int dimen abc_action_bar_content_inset_material 0x7f06000c
+int dimen abc_action_bar_default_height_material 0x7f060001
+int dimen abc_action_bar_default_padding_material 0x7f060002
+int dimen abc_action_bar_icon_vertical_padding_material 0x7f060010
+int dimen abc_action_bar_navigation_padding_start_material 0x7f06000d
+int dimen abc_action_bar_overflow_padding_end_material 0x7f06000e
+int dimen abc_action_bar_overflow_padding_start_material 0x7f060011
+int dimen abc_action_bar_progress_bar_size 0x7f060003
+int dimen abc_action_bar_stacked_max_height 0x7f060012
+int dimen abc_action_bar_stacked_tab_max_width 0x7f060013
+int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f060014
+int dimen abc_action_bar_subtitle_top_margin_material 0x7f060015
+int dimen abc_action_button_min_height_material 0x7f060016
+int dimen abc_action_button_min_width_material 0x7f060017
+int dimen abc_action_button_min_width_overflow_material 0x7f060018
+int dimen abc_alert_dialog_button_bar_height 0x7f060000
+int dimen abc_button_inset_horizontal_material 0x7f060019
+int dimen abc_button_inset_vertical_material 0x7f06001a
+int dimen abc_button_padding_horizontal_material 0x7f06001b
+int dimen abc_button_padding_vertical_material 0x7f06001c
+int dimen abc_config_prefDialogWidth 0x7f060006
+int dimen abc_control_corner_material 0x7f06001d
+int dimen abc_control_inset_material 0x7f06001e
+int dimen abc_control_padding_material 0x7f06001f
+int dimen abc_dialog_list_padding_vertical_material 0x7f060020
+int dimen abc_dialog_min_width_major 0x7f060021
+int dimen abc_dialog_min_width_minor 0x7f060022
+int dimen abc_dialog_padding_material 0x7f060023
+int dimen abc_dialog_padding_top_material 0x7f060024
+int dimen abc_disabled_alpha_material_dark 0x7f060025
+int dimen abc_disabled_alpha_material_light 0x7f060026
+int dimen abc_dropdownitem_icon_width 0x7f060027
+int dimen abc_dropdownitem_text_padding_left 0x7f060028
+int dimen abc_dropdownitem_text_padding_right 0x7f060029
+int dimen abc_edit_text_inset_bottom_material 0x7f06002a
+int dimen abc_edit_text_inset_horizontal_material 0x7f06002b
+int dimen abc_edit_text_inset_top_material 0x7f06002c
+int dimen abc_floating_window_z 0x7f06002d
+int dimen abc_list_item_padding_horizontal_material 0x7f06002e
+int dimen abc_panel_menu_list_width 0x7f06002f
+int dimen abc_search_view_preferred_width 0x7f060030
+int dimen abc_search_view_text_min_width 0x7f060007
+int dimen abc_switch_padding 0x7f06000f
+int dimen abc_text_size_body_1_material 0x7f060031
+int dimen abc_text_size_body_2_material 0x7f060032
+int dimen abc_text_size_button_material 0x7f060033
+int dimen abc_text_size_caption_material 0x7f060034
+int dimen abc_text_size_display_1_material 0x7f060035
+int dimen abc_text_size_display_2_material 0x7f060036
+int dimen abc_text_size_display_3_material 0x7f060037
+int dimen abc_text_size_display_4_material 0x7f060038
+int dimen abc_text_size_headline_material 0x7f060039
+int dimen abc_text_size_large_material 0x7f06003a
+int dimen abc_text_size_medium_material 0x7f06003b
+int dimen abc_text_size_menu_material 0x7f06003c
+int dimen abc_text_size_small_material 0x7f06003d
+int dimen abc_text_size_subhead_material 0x7f06003e
+int dimen abc_text_size_subtitle_material_toolbar 0x7f060004
+int dimen abc_text_size_title_material 0x7f06003f
+int dimen abc_text_size_title_material_toolbar 0x7f060005
+int dimen dialog_fixed_height_major 0x7f060008
+int dimen dialog_fixed_height_minor 0x7f060009
+int dimen dialog_fixed_width_major 0x7f06000a
+int dimen dialog_fixed_width_minor 0x7f06000b
+int dimen disabled_alpha_material_dark 0x7f060040
+int dimen disabled_alpha_material_light 0x7f060041
+int dimen notification_large_icon_height 0x7f060042
+int dimen notification_large_icon_width 0x7f060043
+int dimen notification_subtext_size 0x7f060044
+int drawable abc_ab_share_pack_mtrl_alpha 0x7f020000
+int drawable abc_btn_borderless_material 0x7f020001
+int drawable abc_btn_check_material 0x7f020002
+int drawable abc_btn_check_to_on_mtrl_000 0x7f020003
+int drawable abc_btn_check_to_on_mtrl_015 0x7f020004
+int drawable abc_btn_default_mtrl_shape 0x7f020005
+int drawable abc_btn_radio_material 0x7f020006
+int drawable abc_btn_radio_to_on_mtrl_000 0x7f020007
+int drawable abc_btn_radio_to_on_mtrl_015 0x7f020008
+int drawable abc_btn_rating_star_off_mtrl_alpha 0x7f020009
+int drawable abc_btn_rating_star_on_mtrl_alpha 0x7f02000a
+int drawable abc_btn_switch_to_on_mtrl_00001 0x7f02000b
+int drawable abc_btn_switch_to_on_mtrl_00012 0x7f02000c
+int drawable abc_cab_background_internal_bg 0x7f02000d
+int drawable abc_cab_background_top_material 0x7f02000e
+int drawable abc_cab_background_top_mtrl_alpha 0x7f02000f
+int drawable abc_dialog_material_background_dark 0x7f020010
+int drawable abc_dialog_material_background_light 0x7f020011
+int drawable abc_edit_text_material 0x7f020012
+int drawable abc_ic_ab_back_mtrl_am_alpha 0x7f020013
+int drawable abc_ic_clear_mtrl_alpha 0x7f020014
+int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f020015
+int drawable abc_ic_go_search_api_mtrl_alpha 0x7f020016
+int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f020017
+int drawable abc_ic_menu_cut_mtrl_alpha 0x7f020018
+int drawable abc_ic_menu_moreoverflow_mtrl_alpha 0x7f020019
+int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f02001a
+int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f02001b
+int drawable abc_ic_menu_share_mtrl_alpha 0x7f02001c
+int drawable abc_ic_search_api_mtrl_alpha 0x7f02001d
+int drawable abc_ic_voice_search_api_mtrl_alpha 0x7f02001e
+int drawable abc_item_background_holo_dark 0x7f02001f
+int drawable abc_item_background_holo_light 0x7f020020
+int drawable abc_list_divider_mtrl_alpha 0x7f020021
+int drawable abc_list_focused_holo 0x7f020022
+int drawable abc_list_longpressed_holo 0x7f020023
+int drawable abc_list_pressed_holo_dark 0x7f020024
+int drawable abc_list_pressed_holo_light 0x7f020025
+int drawable abc_list_selector_background_transition_holo_dark 0x7f020026
+int drawable abc_list_selector_background_transition_holo_light 0x7f020027
+int drawable abc_list_selector_disabled_holo_dark 0x7f020028
+int drawable abc_list_selector_disabled_holo_light 0x7f020029
+int drawable abc_list_selector_holo_dark 0x7f02002a
+int drawable abc_list_selector_holo_light 0x7f02002b
+int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f02002c
+int drawable abc_popup_background_mtrl_mult 0x7f02002d
+int drawable abc_ratingbar_full_material 0x7f02002e
+int drawable abc_spinner_mtrl_am_alpha 0x7f02002f
+int drawable abc_spinner_textfield_background_material 0x7f020030
+int drawable abc_switch_thumb_material 0x7f020031
+int drawable abc_switch_track_mtrl_alpha 0x7f020032
+int drawable abc_tab_indicator_material 0x7f020033
+int drawable abc_tab_indicator_mtrl_alpha 0x7f020034
+int drawable abc_text_cursor_mtrl_alpha 0x7f020035
+int drawable abc_textfield_activated_mtrl_alpha 0x7f020036
+int drawable abc_textfield_default_mtrl_alpha 0x7f020037
+int drawable abc_textfield_search_activated_mtrl_alpha 0x7f020038
+int drawable abc_textfield_search_default_mtrl_alpha 0x7f020039
+int drawable abc_textfield_search_material 0x7f02003a
+int drawable notification_template_icon_bg 0x7f02003b
+int id action0 0x7f0b004f
+int id action_bar 0x7f0b0040
+int id action_bar_activity_content 0x7f0b0000
+int id action_bar_container 0x7f0b003f
+int id action_bar_root 0x7f0b003b
+int id action_bar_spinner 0x7f0b0001
+int id action_bar_subtitle 0x7f0b0024
+int id action_bar_title 0x7f0b0023
+int id action_context_bar 0x7f0b0041
+int id action_divider 0x7f0b0053
+int id action_menu_divider 0x7f0b0002
+int id action_menu_presenter 0x7f0b0003
+int id action_mode_bar 0x7f0b003d
+int id action_mode_bar_stub 0x7f0b003c
+int id action_mode_close_button 0x7f0b0025
+int id activity_chooser_view_content 0x7f0b0026
+int id alertTitle 0x7f0b0030
+int id always 0x7f0b0016
+int id beginning 0x7f0b0013
+int id buttonPanel 0x7f0b0036
+int id cancel_action 0x7f0b0050
+int id checkbox 0x7f0b0038
+int id chronometer 0x7f0b0056
+int id collapseActionView 0x7f0b0017
+int id contentPanel 0x7f0b0031
+int id custom 0x7f0b0035
+int id customPanel 0x7f0b0034
+int id decor_content_parent 0x7f0b003e
+int id default_activity_button 0x7f0b0029
+int id dialog 0x7f0b001b
+int id disableHome 0x7f0b000c
+int id dropdown 0x7f0b001c
+int id edit_query 0x7f0b0042
+int id end 0x7f0b0014
+int id end_padder 0x7f0b005b
+int id expand_activities_button 0x7f0b0027
+int id expanded_menu 0x7f0b0037
+int id home 0x7f0b0004
+int id homeAsUp 0x7f0b000d
+int id icon 0x7f0b002b
+int id ifRoom 0x7f0b0018
+int id image 0x7f0b0028
+int id info 0x7f0b005a
+int id line1 0x7f0b0054
+int id line3 0x7f0b0058
+int id listMode 0x7f0b0009
+int id list_item 0x7f0b002a
+int id media_actions 0x7f0b0052
+int id middle 0x7f0b0015
+int id multiply 0x7f0b001e
+int id never 0x7f0b0019
+int id none 0x7f0b000e
+int id normal 0x7f0b000a
+int id parentPanel 0x7f0b002d
+int id progress_circular 0x7f0b0005
+int id progress_horizontal 0x7f0b0006
+int id radio 0x7f0b003a
+int id screen 0x7f0b001f
+int id scrollView 0x7f0b0032
+int id search_badge 0x7f0b0044
+int id search_bar 0x7f0b0043
+int id search_button 0x7f0b0045
+int id search_close_btn 0x7f0b004a
+int id search_edit_frame 0x7f0b0046
+int id search_go_btn 0x7f0b004c
+int id search_mag_icon 0x7f0b0047
+int id search_plate 0x7f0b0048
+int id search_src_text 0x7f0b0049
+int id search_voice_btn 0x7f0b004d
+int id select_dialog_listview 0x7f0b004e
+int id shortcut 0x7f0b0039
+int id showCustom 0x7f0b000f
+int id showHome 0x7f0b0010
+int id showTitle 0x7f0b0011
+int id split_action_bar 0x7f0b0007
+int id src_atop 0x7f0b0020
+int id src_in 0x7f0b0021
+int id src_over 0x7f0b0022
+int id status_bar_latest_event_content 0x7f0b0051
+int id submit_area 0x7f0b004b
+int id tabMode 0x7f0b000b
+int id text 0x7f0b0059
+int id text2 0x7f0b0057
+int id textSpacerNoButtons 0x7f0b0033
+int id time 0x7f0b0055
+int id title 0x7f0b002c
+int id title_template 0x7f0b002f
+int id topPanel 0x7f0b002e
+int id up 0x7f0b0008
+int id useLogo 0x7f0b0012
+int id withText 0x7f0b001a
+int id wrap_content 0x7f0b001d
+int integer abc_config_activityDefaultDur 0x7f090001
+int integer abc_config_activityShortDur 0x7f090002
+int integer abc_max_action_buttons 0x7f090000
+int integer cancel_button_image_alpha 0x7f090003
+int integer status_bar_notification_info_maxnum 0x7f090004
+int layout abc_action_bar_title_item 0x7f030000
+int layout abc_action_bar_up_container 0x7f030001
+int layout abc_action_bar_view_list_nav_layout 0x7f030002
+int layout abc_action_menu_item_layout 0x7f030003
+int layout abc_action_menu_layout 0x7f030004
+int layout abc_action_mode_bar 0x7f030005
+int layout abc_action_mode_close_item_material 0x7f030006
+int layout abc_activity_chooser_view 0x7f030007
+int layout abc_activity_chooser_view_list_item 0x7f030008
+int layout abc_alert_dialog_material 0x7f030009
+int layout abc_dialog_title_material 0x7f03000a
+int layout abc_expanded_menu_layout 0x7f03000b
+int layout abc_list_menu_item_checkbox 0x7f03000c
+int layout abc_list_menu_item_icon 0x7f03000d
+int layout abc_list_menu_item_layout 0x7f03000e
+int layout abc_list_menu_item_radio 0x7f03000f
+int layout abc_popup_menu_item_layout 0x7f030010
+int layout abc_screen_content_include 0x7f030011
+int layout abc_screen_simple 0x7f030012
+int layout abc_screen_simple_overlay_action_mode 0x7f030013
+int layout abc_screen_toolbar 0x7f030014
+int layout abc_search_dropdown_item_icons_2line 0x7f030015
+int layout abc_search_view 0x7f030016
+int layout abc_select_dialog_material 0x7f030017
+int layout abc_simple_dropdown_hint 0x7f030018
+int layout notification_media_action 0x7f030019
+int layout notification_media_cancel_action 0x7f03001a
+int layout notification_template_big_media 0x7f03001b
+int layout notification_template_big_media_narrow 0x7f03001c
+int layout notification_template_lines 0x7f03001d
+int layout notification_template_media 0x7f03001e
+int layout notification_template_part_chronometer 0x7f03001f
+int layout notification_template_part_time 0x7f030020
+int layout select_dialog_item_material 0x7f030021
+int layout select_dialog_multichoice_material 0x7f030022
+int layout select_dialog_singlechoice_material 0x7f030023
+int layout support_simple_spinner_dropdown_item 0x7f030024
+int string abc_action_bar_home_description 0x7f050000
+int string abc_action_bar_home_description_format 0x7f05000d
+int string abc_action_bar_home_subtitle_description_format 0x7f05000e
+int string abc_action_bar_up_description 0x7f050001
+int string abc_action_menu_overflow_description 0x7f050002
+int string abc_action_mode_done 0x7f050003
+int string abc_activity_chooser_view_see_all 0x7f050004
+int string abc_activitychooserview_choose_application 0x7f050005
+int string abc_search_hint 0x7f05000f
+int string abc_searchview_description_clear 0x7f050006
+int string abc_searchview_description_query 0x7f050007
+int string abc_searchview_description_search 0x7f050008
+int string abc_searchview_description_submit 0x7f050009
+int string abc_searchview_description_voice 0x7f05000a
+int string abc_shareactionprovider_share_with 0x7f05000b
+int string abc_shareactionprovider_share_with_application 0x7f05000c
+int string abc_toolbar_collapse_description 0x7f050010
+int string status_bar_notification_info_overflow 0x7f050011
+int style AlertDialog_AppCompat 0x7f070073
+int style AlertDialog_AppCompat_Light 0x7f070074
+int style Animation_AppCompat_Dialog 0x7f070075
+int style Animation_AppCompat_DropDownUp 0x7f070076
+int style Base_AlertDialog_AppCompat 0x7f070077
+int style Base_AlertDialog_AppCompat_Light 0x7f070078
+int style Base_Animation_AppCompat_Dialog 0x7f070079
+int style Base_Animation_AppCompat_DropDownUp 0x7f07007a
+int style Base_DialogWindowTitle_AppCompat 0x7f07007b
+int style Base_DialogWindowTitleBackground_AppCompat 0x7f07007c
+int style Base_TextAppearance_AppCompat 0x7f07002e
+int style Base_TextAppearance_AppCompat_Body1 0x7f07002f
+int style Base_TextAppearance_AppCompat_Body2 0x7f070030
+int style Base_TextAppearance_AppCompat_Button 0x7f070018
+int style Base_TextAppearance_AppCompat_Caption 0x7f070031
+int style Base_TextAppearance_AppCompat_Display1 0x7f070032
+int style Base_TextAppearance_AppCompat_Display2 0x7f070033
+int style Base_TextAppearance_AppCompat_Display3 0x7f070034
+int style Base_TextAppearance_AppCompat_Display4 0x7f070035
+int style Base_TextAppearance_AppCompat_Headline 0x7f070036
+int style Base_TextAppearance_AppCompat_Inverse 0x7f070003
+int style Base_TextAppearance_AppCompat_Large 0x7f070037
+int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f070004
+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f070038
+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f070039
+int style Base_TextAppearance_AppCompat_Medium 0x7f07003a
+int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f070005
+int style Base_TextAppearance_AppCompat_Menu 0x7f07003b
+int style Base_TextAppearance_AppCompat_SearchResult 0x7f07007d
+int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f07003c
+int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f07003d
+int style Base_TextAppearance_AppCompat_Small 0x7f07003e
+int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f070006
+int style Base_TextAppearance_AppCompat_Subhead 0x7f07003f
+int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f070007
+int style Base_TextAppearance_AppCompat_Title 0x7f070040
+int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f070008
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f070041
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f070042
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f070043
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f070044
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f070045
+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f070046
+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f070047
+int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f07007e
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f070048
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f070049
+int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f07004a
+int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f07004b
+int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f07007f
+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f07004c
+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f07004d
+int style Base_Theme_AppCompat 0x7f07004e
+int style Base_Theme_AppCompat_CompactMenu 0x7f070080
+int style Base_Theme_AppCompat_Dialog 0x7f070009
+int style Base_Theme_AppCompat_Dialog_Alert 0x7f070081
+int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f070082
+int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f070083
+int style Base_Theme_AppCompat_DialogWhenLarge 0x7f070001
+int style Base_Theme_AppCompat_Light 0x7f07004f
+int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f070084
+int style Base_Theme_AppCompat_Light_Dialog 0x7f07000a
+int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f070085
+int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f070086
+int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f070087
+int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f070002
+int style Base_ThemeOverlay_AppCompat 0x7f070088
+int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f070089
+int style Base_ThemeOverlay_AppCompat_Dark 0x7f07008a
+int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f07008b
+int style Base_ThemeOverlay_AppCompat_Light 0x7f07008c
+int style Base_V11_Theme_AppCompat_Dialog 0x7f07000b
+int style Base_V11_Theme_AppCompat_Light_Dialog 0x7f07000c
+int style Base_V12_Widget_AppCompat_AutoCompleteTextView 0x7f070014
+int style Base_V12_Widget_AppCompat_EditText 0x7f070015
+int style Base_V21_Theme_AppCompat 0x7f070050
+int style Base_V21_Theme_AppCompat_Dialog 0x7f070051
+int style Base_V21_Theme_AppCompat_Light 0x7f070052
+int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f070053
+int style Base_V7_Theme_AppCompat 0x7f07008d
+int style Base_V7_Theme_AppCompat_Dialog 0x7f07008e
+int style Base_V7_Theme_AppCompat_Light 0x7f07008f
+int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f070090
+int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f070091
+int style Base_V7_Widget_AppCompat_EditText 0x7f070092
+int style Base_Widget_AppCompat_ActionBar 0x7f070093
+int style Base_Widget_AppCompat_ActionBar_Solid 0x7f070094
+int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f070095
+int style Base_Widget_AppCompat_ActionBar_TabText 0x7f070054
+int style Base_Widget_AppCompat_ActionBar_TabView 0x7f070055
+int style Base_Widget_AppCompat_ActionButton 0x7f070056
+int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f070057
+int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f070058
+int style Base_Widget_AppCompat_ActionMode 0x7f070096
+int style Base_Widget_AppCompat_ActivityChooserView 0x7f070097
+int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f070016
+int style Base_Widget_AppCompat_Button 0x7f070059
+int style Base_Widget_AppCompat_Button_Borderless 0x7f07005a
+int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f07005b
+int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f070098
+int style Base_Widget_AppCompat_Button_Small 0x7f07005c
+int style Base_Widget_AppCompat_ButtonBar 0x7f07005d
+int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f070099
+int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f07005e
+int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f07005f
+int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f07009a
+int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f070000
+int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f07009b
+int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f070060
+int style Base_Widget_AppCompat_EditText 0x7f070017
+int style Base_Widget_AppCompat_Light_ActionBar 0x7f07009c
+int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f07009d
+int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f07009e
+int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f070061
+int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f070062
+int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f070063
+int style Base_Widget_AppCompat_Light_PopupMenu 0x7f070064
+int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f070065
+int style Base_Widget_AppCompat_ListPopupWindow 0x7f070066
+int style Base_Widget_AppCompat_ListView 0x7f070067
+int style Base_Widget_AppCompat_ListView_DropDown 0x7f070068
+int style Base_Widget_AppCompat_ListView_Menu 0x7f070069
+int style Base_Widget_AppCompat_PopupMenu 0x7f07006a
+int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f07006b
+int style Base_Widget_AppCompat_PopupWindow 0x7f07009f
+int style Base_Widget_AppCompat_ProgressBar 0x7f07000d
+int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f07000e
+int style Base_Widget_AppCompat_RatingBar 0x7f07006c
+int style Base_Widget_AppCompat_SearchView 0x7f0700a0
+int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0700a1
+int style Base_Widget_AppCompat_Spinner 0x7f07000f
+int style Base_Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f07006d
+int style Base_Widget_AppCompat_Spinner_Underlined 0x7f07006e
+int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f07006f
+int style Base_Widget_AppCompat_Toolbar 0x7f0700a2
+int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f070070
+int style Platform_AppCompat 0x7f070010
+int style Platform_AppCompat_Light 0x7f070011
+int style Platform_ThemeOverlay_AppCompat_Dark 0x7f070071
+int style Platform_ThemeOverlay_AppCompat_Light 0x7f070072
+int style Platform_V11_AppCompat 0x7f070012
+int style Platform_V11_AppCompat_Light 0x7f070013
+int style Platform_V14_AppCompat 0x7f070019
+int style Platform_V14_AppCompat_Light 0x7f07001a
+int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f070020
+int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f070021
+int style RtlOverlay_Widget_AppCompat_ActionButton_Overflow 0x7f070022
+int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f070023
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f070024
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f070025
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f070026
+int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f070027
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f070028
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f070029
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f07002a
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f07002b
+int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f07002c
+int style RtlOverlay_Widget_AppCompat_Toolbar_Button_Navigation 0x7f07002d
+int style TextAppearance_AppCompat 0x7f0700a3
+int style TextAppearance_AppCompat_Body1 0x7f0700a4
+int style TextAppearance_AppCompat_Body2 0x7f0700a5
+int style TextAppearance_AppCompat_Button 0x7f0700a6
+int style TextAppearance_AppCompat_Caption 0x7f0700a7
+int style TextAppearance_AppCompat_Display1 0x7f0700a8
+int style TextAppearance_AppCompat_Display2 0x7f0700a9
+int style TextAppearance_AppCompat_Display3 0x7f0700aa
+int style TextAppearance_AppCompat_Display4 0x7f0700ab
+int style TextAppearance_AppCompat_Headline 0x7f0700ac
+int style TextAppearance_AppCompat_Inverse 0x7f0700ad
+int style TextAppearance_AppCompat_Large 0x7f0700ae
+int style TextAppearance_AppCompat_Large_Inverse 0x7f0700af
+int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0700b0
+int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0700b1
+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0700b2
+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0700b3
+int style TextAppearance_AppCompat_Medium 0x7f0700b4
+int style TextAppearance_AppCompat_Medium_Inverse 0x7f0700b5
+int style TextAppearance_AppCompat_Menu 0x7f0700b6
+int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0700b7
+int style TextAppearance_AppCompat_SearchResult_Title 0x7f0700b8
+int style TextAppearance_AppCompat_Small 0x7f0700b9
+int style TextAppearance_AppCompat_Small_Inverse 0x7f0700ba
+int style TextAppearance_AppCompat_Subhead 0x7f0700bb
+int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0700bc
+int style TextAppearance_AppCompat_Title 0x7f0700bd
+int style TextAppearance_AppCompat_Title_Inverse 0x7f0700be
+int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0700bf
+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0700c0
+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0700c1
+int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0700c2
+int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0700c3
+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0700c4
+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0700c5
+int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0700c6
+int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0700c7
+int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0700c8
+int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0700c9
+int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0700ca
+int style TextAppearance_AppCompat_Widget_Switch 0x7f0700cb
+int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0700cc
+int style TextAppearance_StatusBar_EventContent 0x7f07001b
+int style TextAppearance_StatusBar_EventContent_Info 0x7f07001c
+int style TextAppearance_StatusBar_EventContent_Line2 0x7f07001d
+int style TextAppearance_StatusBar_EventContent_Time 0x7f07001e
+int style TextAppearance_StatusBar_EventContent_Title 0x7f07001f
+int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0700cd
+int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0700ce
+int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0700cf
+int style Theme_AppCompat 0x7f0700d0
+int style Theme_AppCompat_CompactMenu 0x7f0700d1
+int style Theme_AppCompat_Dialog 0x7f0700d2
+int style Theme_AppCompat_Dialog_Alert 0x7f0700d3
+int style Theme_AppCompat_Dialog_MinWidth 0x7f0700d4
+int style Theme_AppCompat_DialogWhenLarge 0x7f0700d5
+int style Theme_AppCompat_Light 0x7f0700d6
+int style Theme_AppCompat_Light_DarkActionBar 0x7f0700d7
+int style Theme_AppCompat_Light_Dialog 0x7f0700d8
+int style Theme_AppCompat_Light_Dialog_Alert 0x7f0700d9
+int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0700da
+int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0700db
+int style Theme_AppCompat_Light_NoActionBar 0x7f0700dc
+int style Theme_AppCompat_NoActionBar 0x7f0700dd
+int style ThemeOverlay_AppCompat 0x7f0700de
+int style ThemeOverlay_AppCompat_ActionBar 0x7f0700df
+int style ThemeOverlay_AppCompat_Dark 0x7f0700e0
+int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0700e1
+int style ThemeOverlay_AppCompat_Light 0x7f0700e2
+int style Widget_AppCompat_ActionBar 0x7f0700e3
+int style Widget_AppCompat_ActionBar_Solid 0x7f0700e4
+int style Widget_AppCompat_ActionBar_TabBar 0x7f0700e5
+int style Widget_AppCompat_ActionBar_TabText 0x7f0700e6
+int style Widget_AppCompat_ActionBar_TabView 0x7f0700e7
+int style Widget_AppCompat_ActionButton 0x7f0700e8
+int style Widget_AppCompat_ActionButton_CloseMode 0x7f0700e9
+int style Widget_AppCompat_ActionButton_Overflow 0x7f0700ea
+int style Widget_AppCompat_ActionMode 0x7f0700eb
+int style Widget_AppCompat_ActivityChooserView 0x7f0700ec
+int style Widget_AppCompat_AutoCompleteTextView 0x7f0700ed
+int style Widget_AppCompat_Button 0x7f0700ee
+int style Widget_AppCompat_Button_Borderless 0x7f0700ef
+int style Widget_AppCompat_Button_Borderless_Colored 0x7f0700f0
+int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0700f1
+int style Widget_AppCompat_Button_Small 0x7f0700f2
+int style Widget_AppCompat_ButtonBar 0x7f0700f3
+int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f0700f4
+int style Widget_AppCompat_CompoundButton_CheckBox 0x7f0700f5
+int style Widget_AppCompat_CompoundButton_RadioButton 0x7f0700f6
+int style Widget_AppCompat_CompoundButton_Switch 0x7f0700f7
+int style Widget_AppCompat_DrawerArrowToggle 0x7f0700f8
+int style Widget_AppCompat_DropDownItem_Spinner 0x7f0700f9
+int style Widget_AppCompat_EditText 0x7f0700fa
+int style Widget_AppCompat_Light_ActionBar 0x7f0700fb
+int style Widget_AppCompat_Light_ActionBar_Solid 0x7f0700fc
+int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f0700fd
+int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f0700fe
+int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f0700ff
+int style Widget_AppCompat_Light_ActionBar_TabText 0x7f070100
+int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f070101
+int style Widget_AppCompat_Light_ActionBar_TabView 0x7f070102
+int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f070103
+int style Widget_AppCompat_Light_ActionButton 0x7f070104
+int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f070105
+int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f070106
+int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f070107
+int style Widget_AppCompat_Light_ActivityChooserView 0x7f070108
+int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f070109
+int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f07010a
+int style Widget_AppCompat_Light_ListPopupWindow 0x7f07010b
+int style Widget_AppCompat_Light_ListView_DropDown 0x7f07010c
+int style Widget_AppCompat_Light_PopupMenu 0x7f07010d
+int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f07010e
+int style Widget_AppCompat_Light_SearchView 0x7f07010f
+int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f070110
+int style Widget_AppCompat_ListPopupWindow 0x7f070111
+int style Widget_AppCompat_ListView 0x7f070112
+int style Widget_AppCompat_ListView_DropDown 0x7f070113
+int style Widget_AppCompat_ListView_Menu 0x7f070114
+int style Widget_AppCompat_PopupMenu 0x7f070115
+int style Widget_AppCompat_PopupMenu_Overflow 0x7f070116
+int style Widget_AppCompat_PopupWindow 0x7f070117
+int style Widget_AppCompat_ProgressBar 0x7f070118
+int style Widget_AppCompat_ProgressBar_Horizontal 0x7f070119
+int style Widget_AppCompat_RatingBar 0x7f07011a
+int style Widget_AppCompat_SearchView 0x7f07011b
+int style Widget_AppCompat_SearchView_ActionBar 0x7f07011c
+int style Widget_AppCompat_Spinner 0x7f07011d
+int style Widget_AppCompat_Spinner_DropDown 0x7f07011e
+int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f07011f
+int style Widget_AppCompat_Spinner_Underlined 0x7f070120
+int style Widget_AppCompat_TextView_SpinnerItem 0x7f070121
+int style Widget_AppCompat_Toolbar 0x7f070122
+int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f070123
+int[] styleable ActionBar { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01007d }
+int styleable ActionBar_background 10
+int styleable ActionBar_backgroundSplit 12
+int styleable ActionBar_backgroundStacked 11
+int styleable ActionBar_contentInsetEnd 21
+int styleable ActionBar_contentInsetLeft 22
+int styleable ActionBar_contentInsetRight 23
+int styleable ActionBar_contentInsetStart 20
+int styleable ActionBar_customNavigationLayout 13
+int styleable ActionBar_displayOptions 3
+int styleable ActionBar_divider 9
+int styleable ActionBar_elevation 24
+int styleable ActionBar_height 0
+int styleable ActionBar_hideOnContentScroll 19
+int styleable ActionBar_homeAsUpIndicator 26
+int styleable ActionBar_homeLayout 14
+int styleable ActionBar_icon 7
+int styleable ActionBar_indeterminateProgressStyle 16
+int styleable ActionBar_itemPadding 18
+int styleable ActionBar_logo 8
+int styleable ActionBar_navigationMode 2
+int styleable ActionBar_popupTheme 25
+int styleable ActionBar_progressBarPadding 17
+int styleable ActionBar_progressBarStyle 15
+int styleable ActionBar_subtitle 4
+int styleable ActionBar_subtitleTextStyle 6
+int styleable ActionBar_title 1
+int styleable ActionBar_titleTextStyle 5
+int[] styleable ActionBarLayout { 0x010100b3 }
+int styleable ActionBarLayout_android_layout_gravity 0
+int[] styleable ActionMenuItemView { 0x0101013f }
+int styleable ActionMenuItemView_android_minWidth 0
+int[] styleable ActionMenuView { }
+int[] styleable ActionMode { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c }
+int styleable ActionMode_background 3
+int styleable ActionMode_backgroundSplit 4
+int styleable ActionMode_closeItemLayout 5
+int styleable ActionMode_height 0
+int styleable ActionMode_subtitleTextStyle 2
+int styleable ActionMode_titleTextStyle 1
+int[] styleable ActivityChooserView { 0x7f01001d, 0x7f01001e }
+int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 1
+int styleable ActivityChooserView_initialActivityCount 0
+int[] styleable AlertDialog { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 }
+int styleable AlertDialog_android_layout 0
+int styleable AlertDialog_buttonPanelSideLayout 1
+int styleable AlertDialog_listItemLayout 5
+int styleable AlertDialog_listLayout 2
+int styleable AlertDialog_multiChoiceItemLayout 3
+int styleable AlertDialog_singleChoiceItemLayout 4
+int[] styleable AppCompatTextView { 0x01010034, 0x7f010024 }
+int styleable AppCompatTextView_android_textAppearance 0
+int styleable AppCompatTextView_textAllCaps 1
+int[] styleable DrawerArrowToggle { 0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c }
+int styleable DrawerArrowToggle_barSize 6
+int styleable DrawerArrowToggle_color 0
+int styleable DrawerArrowToggle_drawableSize 2
+int styleable DrawerArrowToggle_gapBetweenBars 3
+int styleable DrawerArrowToggle_middleBarArrowSize 5
+int styleable DrawerArrowToggle_spinBars 1
+int styleable DrawerArrowToggle_thickness 7
+int styleable DrawerArrowToggle_topBottomBarArrowSize 4
+int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f01002d, 0x7f01002e, 0x7f01002f }
+int styleable LinearLayoutCompat_android_baselineAligned 2
+int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3
+int styleable LinearLayoutCompat_android_gravity 0
+int styleable LinearLayoutCompat_android_orientation 1
+int styleable LinearLayoutCompat_android_weightSum 4
+int styleable LinearLayoutCompat_divider 5
+int styleable LinearLayoutCompat_dividerPadding 8
+int styleable LinearLayoutCompat_measureWithLargestChild 6
+int styleable LinearLayoutCompat_showDividers 7
+int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }
+int styleable LinearLayoutCompat_Layout_android_layout_gravity 0
+int styleable LinearLayoutCompat_Layout_android_layout_height 2
+int styleable LinearLayoutCompat_Layout_android_layout_weight 3
+int styleable LinearLayoutCompat_Layout_android_layout_width 1
+int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad }
+int styleable ListPopupWindow_android_dropDownHorizontalOffset 0
+int styleable ListPopupWindow_android_dropDownVerticalOffset 1
+int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }
+int styleable MenuGroup_android_checkableBehavior 5
+int styleable MenuGroup_android_enabled 0
+int styleable MenuGroup_android_id 1
+int styleable MenuGroup_android_menuCategory 3
+int styleable MenuGroup_android_orderInCategory 4
+int styleable MenuGroup_android_visible 2
+int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033 }
+int styleable MenuItem_actionLayout 14
+int styleable MenuItem_actionProviderClass 16
+int styleable MenuItem_actionViewClass 15
+int styleable MenuItem_android_alphabeticShortcut 9
+int styleable MenuItem_android_checkable 11
+int styleable MenuItem_android_checked 3
+int styleable MenuItem_android_enabled 1
+int styleable MenuItem_android_icon 0
+int styleable MenuItem_android_id 2
+int styleable MenuItem_android_menuCategory 5
+int styleable MenuItem_android_numericShortcut 10
+int styleable MenuItem_android_onClick 12
+int styleable MenuItem_android_orderInCategory 6
+int styleable MenuItem_android_title 7
+int styleable MenuItem_android_titleCondensed 8
+int styleable MenuItem_android_visible 4
+int styleable MenuItem_showAsAction 13
+int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f010034 }
+int styleable MenuView_android_headerBackground 4
+int styleable MenuView_android_horizontalDivider 2
+int styleable MenuView_android_itemBackground 5
+int styleable MenuView_android_itemIconDisabledAlpha 6
+int styleable MenuView_android_itemTextAppearance 1
+int styleable MenuView_android_verticalDivider 3
+int styleable MenuView_android_windowAnimationStyle 0
+int styleable MenuView_preserveIconSpacing 7
+int[] styleable PopupWindow { 0x01010176, 0x7f010035 }
+int styleable PopupWindow_android_popupBackground 0
+int styleable PopupWindow_overlapAnchor 1
+int[] styleable PopupWindowBackgroundState { 0x7f010036 }
+int styleable PopupWindowBackgroundState_state_above_anchor 0
+int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043 }
+int styleable SearchView_android_focusable 0
+int styleable SearchView_android_imeOptions 3
+int styleable SearchView_android_inputType 2
+int styleable SearchView_android_maxWidth 1
+int styleable SearchView_closeIcon 8
+int styleable SearchView_commitIcon 13
+int styleable SearchView_defaultQueryHint 7
+int styleable SearchView_goIcon 9
+int styleable SearchView_iconifiedByDefault 5
+int styleable SearchView_layout 4
+int styleable SearchView_queryBackground 15
+int styleable SearchView_queryHint 6
+int styleable SearchView_searchHintIcon 11
+int styleable SearchView_searchIcon 10
+int styleable SearchView_submitBackground 16
+int styleable SearchView_suggestionRowLayout 14
+int styleable SearchView_voiceIcon 12
+int[] styleable Spinner { 0x010100af, 0x010100d4, 0x01010175, 0x01010176, 0x01010262, 0x010102ac, 0x010102ad, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047 }
+int styleable Spinner_android_background 1
+int styleable Spinner_android_dropDownHorizontalOffset 5
+int styleable Spinner_android_dropDownSelector 2
+int styleable Spinner_android_dropDownVerticalOffset 6
+int styleable Spinner_android_dropDownWidth 4
+int styleable Spinner_android_gravity 0
+int styleable Spinner_android_popupBackground 3
+int styleable Spinner_disableChildrenWhenDisabled 10
+int styleable Spinner_popupPromptView 9
+int styleable Spinner_prompt 7
+int styleable Spinner_spinnerMode 8
+int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e }
+int styleable SwitchCompat_android_textOff 1
+int styleable SwitchCompat_android_textOn 0
+int styleable SwitchCompat_android_thumb 2
+int styleable SwitchCompat_showText 9
+int styleable SwitchCompat_splitTrack 8
+int styleable SwitchCompat_switchMinWidth 6
+int styleable SwitchCompat_switchPadding 7
+int styleable SwitchCompat_switchTextAppearance 5
+int styleable SwitchCompat_thumbTextPadding 4
+int styleable SwitchCompat_track 3
+int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x7f010024 }
+int styleable TextAppearance_android_textColor 3
+int styleable TextAppearance_android_textSize 0
+int styleable TextAppearance_android_textStyle 2
+int styleable TextAppearance_android_typeface 1
+int styleable TextAppearance_textAllCaps 4
+int[] styleable Theme { 0x01010057, 0x010100ae, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7 }
+int styleable Theme_actionBarDivider 23
+int styleable Theme_actionBarItemBackground 24
+int styleable Theme_actionBarPopupTheme 17
+int styleable Theme_actionBarSize 22
+int styleable Theme_actionBarSplitStyle 19
+int styleable Theme_actionBarStyle 18
+int styleable Theme_actionBarTabBarStyle 13
+int styleable Theme_actionBarTabStyle 12
+int styleable Theme_actionBarTabTextStyle 14
+int styleable Theme_actionBarTheme 20
+int styleable Theme_actionBarWidgetTheme 21
+int styleable Theme_actionButtonStyle 49
+int styleable Theme_actionDropDownStyle 45
+int styleable Theme_actionMenuTextAppearance 25
+int styleable Theme_actionMenuTextColor 26
+int styleable Theme_actionModeBackground 29
+int styleable Theme_actionModeCloseButtonStyle 28
+int styleable Theme_actionModeCloseDrawable 31
+int styleable Theme_actionModeCopyDrawable 33
+int styleable Theme_actionModeCutDrawable 32
+int styleable Theme_actionModeFindDrawable 37
+int styleable Theme_actionModePasteDrawable 34
+int styleable Theme_actionModePopupWindowStyle 39
+int styleable Theme_actionModeSelectAllDrawable 35
+int styleable Theme_actionModeShareDrawable 36
+int styleable Theme_actionModeSplitBackground 30
+int styleable Theme_actionModeStyle 27
+int styleable Theme_actionModeWebSearchDrawable 38
+int styleable Theme_actionOverflowButtonStyle 15
+int styleable Theme_actionOverflowMenuStyle 16
+int styleable Theme_activityChooserViewStyle 57
+int styleable Theme_alertDialogButtonGroupStyle 90
+int styleable Theme_alertDialogCenterButtons 91
+int styleable Theme_alertDialogStyle 89
+int styleable Theme_alertDialogTheme 92
+int styleable Theme_android_windowAnimationStyle 1
+int styleable Theme_android_windowIsFloating 0
+int styleable Theme_autoCompleteTextViewStyle 97
+int styleable Theme_borderlessButtonStyle 54
+int styleable Theme_buttonBarButtonStyle 51
+int styleable Theme_buttonBarNegativeButtonStyle 95
+int styleable Theme_buttonBarNeutralButtonStyle 96
+int styleable Theme_buttonBarPositiveButtonStyle 94
+int styleable Theme_buttonBarStyle 50
+int styleable Theme_buttonStyle 98
+int styleable Theme_buttonStyleSmall 99
+int styleable Theme_checkboxStyle 100
+int styleable Theme_checkedTextViewStyle 101
+int styleable Theme_colorAccent 83
+int styleable Theme_colorButtonNormal 87
+int styleable Theme_colorControlActivated 85
+int styleable Theme_colorControlHighlight 86
+int styleable Theme_colorControlNormal 84
+int styleable Theme_colorPrimary 81
+int styleable Theme_colorPrimaryDark 82
+int styleable Theme_colorSwitchThumbNormal 88
+int styleable Theme_dialogPreferredPadding 43
+int styleable Theme_dialogTheme 42
+int styleable Theme_dividerHorizontal 56
+int styleable Theme_dividerVertical 55
+int styleable Theme_dropDownListViewStyle 73
+int styleable Theme_dropdownListPreferredItemHeight 46
+int styleable Theme_editTextBackground 63
+int styleable Theme_editTextColor 62
+int styleable Theme_editTextStyle 102
+int styleable Theme_homeAsUpIndicator 48
+int styleable Theme_listChoiceBackgroundIndicator 80
+int styleable Theme_listDividerAlertDialog 44
+int styleable Theme_listPopupWindowStyle 74
+int styleable Theme_listPreferredItemHeight 68
+int styleable Theme_listPreferredItemHeightLarge 70
+int styleable Theme_listPreferredItemHeightSmall 69
+int styleable Theme_listPreferredItemPaddingLeft 71
+int styleable Theme_listPreferredItemPaddingRight 72
+int styleable Theme_panelBackground 77
+int styleable Theme_panelMenuListTheme 79
+int styleable Theme_panelMenuListWidth 78
+int styleable Theme_popupMenuStyle 60
+int styleable Theme_popupWindowStyle 61
+int styleable Theme_radioButtonStyle 103
+int styleable Theme_ratingBarStyle 104
+int styleable Theme_searchViewStyle 67
+int styleable Theme_selectableItemBackground 52
+int styleable Theme_selectableItemBackgroundBorderless 53
+int styleable Theme_spinnerDropDownItemStyle 47
+int styleable Theme_spinnerStyle 105
+int styleable Theme_switchStyle 106
+int styleable Theme_textAppearanceLargePopupMenu 40
+int styleable Theme_textAppearanceListItem 75
+int styleable Theme_textAppearanceListItemSmall 76
+int styleable Theme_textAppearanceSearchResultSubtitle 65
+int styleable Theme_textAppearanceSearchResultTitle 64
+int styleable Theme_textAppearanceSmallPopupMenu 41
+int styleable Theme_textColorAlertDialogListItem 93
+int styleable Theme_textColorSearchUrl 66
+int styleable Theme_toolbarNavigationButtonStyle 59
+int styleable Theme_toolbarStyle 58
+int styleable Theme_windowActionBar 2
+int styleable Theme_windowActionBarOverlay 4
+int styleable Theme_windowActionModeOverlay 5
+int styleable Theme_windowFixedHeightMajor 9
+int styleable Theme_windowFixedHeightMinor 7
+int styleable Theme_windowFixedWidthMajor 6
+int styleable Theme_windowFixedWidthMinor 8
+int styleable Theme_windowMinWidthMajor 10
+int styleable Theme_windowMinWidthMinor 11
+int styleable Theme_windowNoTitle 3
+int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3 }
+int styleable Toolbar_android_gravity 0
+int styleable Toolbar_android_minHeight 1
+int styleable Toolbar_collapseContentDescription 18
+int styleable Toolbar_collapseIcon 17
+int styleable Toolbar_contentInsetEnd 5
+int styleable Toolbar_contentInsetLeft 6
+int styleable Toolbar_contentInsetRight 7
+int styleable Toolbar_contentInsetStart 4
+int styleable Toolbar_maxButtonHeight 16
+int styleable Toolbar_navigationContentDescription 20
+int styleable Toolbar_navigationIcon 19
+int styleable Toolbar_popupTheme 8
+int styleable Toolbar_subtitle 3
+int styleable Toolbar_subtitleTextAppearance 10
+int styleable Toolbar_title 2
+int styleable Toolbar_titleMarginBottom 15
+int styleable Toolbar_titleMarginEnd 13
+int styleable Toolbar_titleMarginStart 12
+int styleable Toolbar_titleMarginTop 14
+int styleable Toolbar_titleMargins 11
+int styleable Toolbar_titleTextAppearance 9
+int[] styleable View { 0x01010000, 0x010100da, 0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8 }
+int styleable View_android_focusable 1
+int styleable View_android_theme 0
+int styleable View_backgroundTint 5
+int styleable View_backgroundTintMode 6
+int styleable View_paddingEnd 3
+int styleable View_paddingStart 2
+int styleable View_theme 4
+int[] styleable ViewStubCompat { 0x010100d0, 0x010100f2, 0x010100f3 }
+int styleable ViewStubCompat_android_id 0
+int styleable ViewStubCompat_android_inflatedId 2
+int styleable ViewStubCompat_android_layout 1
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/aapt/AndroidManifest.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/aapt/AndroidManifest.xml
new file mode 100644
index 0000000..58122b1
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/aapt/AndroidManifest.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/annotations.zip b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/annotations.zip
new file mode 100644
index 0000000..5c5a619
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/annotations.zip differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/jars/classes.jar b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/jars/classes.jar
new file mode 100644
index 0000000..0887c69
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/jars/classes.jar differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/anim/abc_fade_in.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/anim/abc_fade_in.xml
new file mode 100644
index 0000000..35e4aa5
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/anim/abc_fade_in.xml
@@ -0,0 +1,20 @@
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/anim/abc_fade_out.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/anim/abc_fade_out.xml
new file mode 100644
index 0000000..c71dc12
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/anim/abc_fade_out.xml
@@ -0,0 +1,20 @@
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/anim/abc_grow_fade_in_from_bottom.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/anim/abc_grow_fade_in_from_bottom.xml
new file mode 100644
index 0000000..c9cb7d3
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/anim/abc_grow_fade_in_from_bottom.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/anim/abc_popup_enter.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/anim/abc_popup_enter.xml
new file mode 100644
index 0000000..c7b18b2
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/anim/abc_popup_enter.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/anim/abc_popup_exit.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/anim/abc_popup_exit.xml
new file mode 100644
index 0000000..535a092
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/anim/abc_popup_exit.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/anim/abc_shrink_fade_out_from_bottom.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/anim/abc_shrink_fade_out_from_bottom.xml
new file mode 100644
index 0000000..8d28106
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/anim/abc_shrink_fade_out_from_bottom.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/anim/abc_slide_in_bottom.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/anim/abc_slide_in_bottom.xml
new file mode 100644
index 0000000..7d819d5
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/anim/abc_slide_in_bottom.xml
@@ -0,0 +1,20 @@
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/anim/abc_slide_in_top.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/anim/abc_slide_in_top.xml
new file mode 100644
index 0000000..7dd9880
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/anim/abc_slide_in_top.xml
@@ -0,0 +1,19 @@
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/anim/abc_slide_out_bottom.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/anim/abc_slide_out_bottom.xml
new file mode 100644
index 0000000..e11c80c
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/anim/abc_slide_out_bottom.xml
@@ -0,0 +1,19 @@
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/anim/abc_slide_out_top.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/anim/abc_slide_out_top.xml
new file mode 100644
index 0000000..9fa9e4f
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/anim/abc_slide_out_top.xml
@@ -0,0 +1,19 @@
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/color-v11/abc_background_cache_hint_selector_material_dark.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/color-v11/abc_background_cache_hint_selector_material_dark.xml
new file mode 100644
index 0000000..61e47c2
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/color-v11/abc_background_cache_hint_selector_material_dark.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/color-v11/abc_background_cache_hint_selector_material_light.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/color-v11/abc_background_cache_hint_selector_material_light.xml
new file mode 100644
index 0000000..926f2bd
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/color-v11/abc_background_cache_hint_selector_material_light.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/color/abc_background_cache_hint_selector_material_dark.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/color/abc_background_cache_hint_selector_material_dark.xml
new file mode 100644
index 0000000..e5c143a
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/color/abc_background_cache_hint_selector_material_dark.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/color/abc_background_cache_hint_selector_material_light.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/color/abc_background_cache_hint_selector_material_light.xml
new file mode 100644
index 0000000..697c8ba
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/color/abc_background_cache_hint_selector_material_light.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/color/abc_primary_text_disable_only_material_dark.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/color/abc_primary_text_disable_only_material_dark.xml
new file mode 100644
index 0000000..2d22cdf
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/color/abc_primary_text_disable_only_material_dark.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/color/abc_primary_text_disable_only_material_light.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/color/abc_primary_text_disable_only_material_light.xml
new file mode 100644
index 0000000..7f4bd59
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/color/abc_primary_text_disable_only_material_light.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/color/abc_primary_text_material_dark.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/color/abc_primary_text_material_dark.xml
new file mode 100644
index 0000000..a82fbea
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/color/abc_primary_text_material_dark.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/color/abc_primary_text_material_light.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/color/abc_primary_text_material_light.xml
new file mode 100644
index 0000000..169b3cd
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/color/abc_primary_text_material_light.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/color/abc_search_url_text.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/color/abc_search_url_text.xml
new file mode 100644
index 0000000..9827356
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/color/abc_search_url_text.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/color/abc_secondary_text_material_dark.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/color/abc_secondary_text_material_dark.xml
new file mode 100644
index 0000000..5566c2a
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/color/abc_secondary_text_material_dark.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/color/abc_secondary_text_material_light.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/color/abc_secondary_text_material_light.xml
new file mode 100644
index 0000000..e96a7df
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/color/abc_secondary_text_material_light.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/color/switch_thumb_material_dark.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/color/switch_thumb_material_dark.xml
new file mode 100644
index 0000000..132aef8
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/color/switch_thumb_material_dark.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/color/switch_thumb_material_light.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/color/switch_thumb_material_light.xml
new file mode 100644
index 0000000..8e95351
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/color/switch_thumb_material_light.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png
new file mode 100644
index 0000000..4d9f861
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 0000000..9911008
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 0000000..69ff9dd
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 0000000..9218981
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 0000000..a588576
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png
new file mode 100644
index 0000000..b184dbc
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png
new file mode 100644
index 0000000..6549c52
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 0000000..88f1767
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 0000000..d5e1a00
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png
new file mode 100644
index 0000000..2264398
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 0000000..f61e8e3
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_ic_clear_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_ic_clear_mtrl_alpha.png
new file mode 100644
index 0000000..0fd1556
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_ic_clear_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png
new file mode 100644
index 0000000..65ccd8f
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png
new file mode 100644
index 0000000..b9ff1db
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 0000000..70eb073
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 0000000..e78bcaf
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png
new file mode 100644
index 0000000..9a87820
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 0000000..8610c50
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 0000000..2d971a9
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 0000000..ee40812
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png
new file mode 100644
index 0000000..b9baa0c
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png
new file mode 100644
index 0000000..a87d2cd
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png
new file mode 100644
index 0000000..1e571f5
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_list_focused_holo.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_list_focused_holo.9.png
new file mode 100644
index 0000000..c09ec90
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_list_focused_holo.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_list_longpressed_holo.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_list_longpressed_holo.9.png
new file mode 100644
index 0000000..62fbd2c
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_list_longpressed_holo.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png
new file mode 100644
index 0000000..2f6ef91
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_list_pressed_holo_light.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_list_pressed_holo_light.9.png
new file mode 100644
index 0000000..863ce95
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_list_pressed_holo_light.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png
new file mode 100644
index 0000000..b6d4677
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png
new file mode 100644
index 0000000..e01c739
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png
new file mode 100644
index 0000000..2cf413c
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_popup_background_mtrl_mult.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_popup_background_mtrl_mult.9.png
new file mode 100644
index 0000000..9d8451a
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_popup_background_mtrl_mult.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 0000000..9de0263
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 0000000..56436a1
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 0000000..4b0b10a
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_text_cursor_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_text_cursor_mtrl_alpha.9.png
new file mode 100644
index 0000000..5e0bf84
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_text_cursor_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png
new file mode 100644
index 0000000..5b13bc1
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png
new file mode 100644
index 0000000..0078bf6
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png
new file mode 100644
index 0000000..a74ab26
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png
new file mode 100644
index 0000000..6282df4
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 0000000..2e1062f
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 0000000..a262b0c
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 0000000..9ed43ca
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 0000000..4cd8a27
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 0000000..e300b7c
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 0000000..05b1e11
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 0000000..aa7b323
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 0000000..d02a5da
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 0000000..a188f2f
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 0000000..e95ba94
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 0000000..87bf8d3
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 0000000..b097e48
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 0000000..de37158
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 0000000..ac86165
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 0000000..8b2adf6
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 0000000..0b89504
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 0000000..7dc6934
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 0000000..884cd12
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 0000000..90fe333
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 0000000..930630d
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png
new file mode 100644
index 0000000..fa0ed8f
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 0000000..7a9fcbc
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 0000000..3b052e5
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 0000000..96a8693
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 0000000..827d634
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png
new file mode 100644
index 0000000..0908475
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png
new file mode 100644
index 0000000..a5a437f
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 0000000..d890a62
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 0000000..0620439
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png
new file mode 100644
index 0000000..038e000
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 0000000..8043d4c
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_ic_clear_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_ic_clear_mtrl_alpha.png
new file mode 100644
index 0000000..e80681a
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_ic_clear_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png
new file mode 100644
index 0000000..9603e76
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png
new file mode 100644
index 0000000..44c1423
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 0000000..80c0695
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 0000000..3966d6a
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png
new file mode 100644
index 0000000..017e45e
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 0000000..ec0cff4
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 0000000..966938b
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 0000000..d05f969
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png
new file mode 100644
index 0000000..451818c
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png
new file mode 100644
index 0000000..a216da1
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png
new file mode 100644
index 0000000..1e571f5
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_list_focused_holo.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_list_focused_holo.9.png
new file mode 100644
index 0000000..addb54a
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_list_focused_holo.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_list_longpressed_holo.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_list_longpressed_holo.9.png
new file mode 100644
index 0000000..5fcd5b2
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_list_longpressed_holo.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png
new file mode 100644
index 0000000..251b989
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_list_pressed_holo_light.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_list_pressed_holo_light.9.png
new file mode 100644
index 0000000..01efec0
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_list_pressed_holo_light.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png
new file mode 100644
index 0000000..f1d1b61
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png
new file mode 100644
index 0000000..10851f6
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png
new file mode 100644
index 0000000..fe0ec49
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_popup_background_mtrl_mult.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_popup_background_mtrl_mult.9.png
new file mode 100644
index 0000000..5f55cd5
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_popup_background_mtrl_mult.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 0000000..ed75cb8
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 0000000..fcd81de
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 0000000..12b0a79
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_text_cursor_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_text_cursor_mtrl_alpha.9.png
new file mode 100644
index 0000000..36348a8
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_text_cursor_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png
new file mode 100644
index 0000000..3ffa251
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png
new file mode 100644
index 0000000..0eb61f1
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png
new file mode 100644
index 0000000..0c766f3
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png
new file mode 100644
index 0000000..4f66d7a
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png
new file mode 100644
index 0000000..6284eaa
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 0000000..4902520
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 0000000..59a683a
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 0000000..03bf49c
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 0000000..342323b
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png
new file mode 100644
index 0000000..c0333f9
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png
new file mode 100644
index 0000000..2f29c39
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 0000000..a854864
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 0000000..726b1dc
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png
new file mode 100644
index 0000000..600178a
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 0000000..c465e82
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png
new file mode 100644
index 0000000..76e07f0
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png
new file mode 100644
index 0000000..1015e1f
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png
new file mode 100644
index 0000000..b3fa6bc
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 0000000..c8a6d25
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 0000000..3c5e683
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png
new file mode 100644
index 0000000..f87733a
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 0000000..9aabc43
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 0000000..c039c8e
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 0000000..b57ee19
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png
new file mode 100644
index 0000000..76f2696
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png
new file mode 100644
index 0000000..d0385ba
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png
new file mode 100644
index 0000000..1e571f5
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_list_focused_holo.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_list_focused_holo.9.png
new file mode 100644
index 0000000..67c25ae
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_list_focused_holo.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_list_longpressed_holo.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_list_longpressed_holo.9.png
new file mode 100644
index 0000000..17c34a1
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_list_longpressed_holo.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png
new file mode 100644
index 0000000..988548a
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png
new file mode 100644
index 0000000..15fcf6a
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png
new file mode 100644
index 0000000..65275b3
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png
new file mode 100644
index 0000000..5b58e76
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png
new file mode 100644
index 0000000..09d1022
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png
new file mode 100644
index 0000000..b5dd854
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 0000000..bcf6b7f
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 0000000..cd1396b
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 0000000..2242d2f
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_text_cursor_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_text_cursor_mtrl_alpha.9.png
new file mode 100644
index 0000000..666b10a
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_text_cursor_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png
new file mode 100644
index 0000000..8ff3a83
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png
new file mode 100644
index 0000000..e7e693a
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png
new file mode 100644
index 0000000..819171a
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png
new file mode 100644
index 0000000..4def8c8
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png
new file mode 100644
index 0000000..4eae28f
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 0000000..accf80e
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 0000000..8c82ec3
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 0000000..8fc0a9b
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 0000000..92b712e
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png
new file mode 100644
index 0000000..78bbeba
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png
new file mode 100644
index 0000000..c4ba8e6
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 0000000..f026a41
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 0000000..c8b9f68
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png
new file mode 100644
index 0000000..f6d2f32
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 0000000..39178bf
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png
new file mode 100644
index 0000000..f54f4f9
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png
new file mode 100644
index 0000000..65cf0c1
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png
new file mode 100644
index 0000000..d041623
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 0000000..9dff893
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 0000000..a1f8c33
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png
new file mode 100644
index 0000000..28a3bbf
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 0000000..29a4e52
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 0000000..162ab98
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 0000000..a1866ba
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png
new file mode 100644
index 0000000..d967ae7
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png
new file mode 100644
index 0000000..5baef9f
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png
new file mode 100644
index 0000000..987b2bc
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_list_focused_holo.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_list_focused_holo.9.png
new file mode 100644
index 0000000..8b050e8
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_list_focused_holo.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_list_longpressed_holo.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_list_longpressed_holo.9.png
new file mode 100644
index 0000000..00e370a
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_list_longpressed_holo.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png
new file mode 100644
index 0000000..719c7b5
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png
new file mode 100644
index 0000000..75bd580
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png
new file mode 100644
index 0000000..9cc3666
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png
new file mode 100644
index 0000000..224a081
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png
new file mode 100644
index 0000000..f7f306d
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png
new file mode 100644
index 0000000..ee4bfe7
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 0000000..6940b60
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 0000000..96bec46
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 0000000..eeb74c8
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_text_cursor_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_text_cursor_mtrl_alpha.9.png
new file mode 100644
index 0000000..08ee2b4
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_text_cursor_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png
new file mode 100644
index 0000000..4d3d3a4
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png
new file mode 100644
index 0000000..c5acb84
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png
new file mode 100644
index 0000000..30328ae
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png
new file mode 100644
index 0000000..d4f3650
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 0000000..4dc870e
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 0000000..4e18de2
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 0000000..5fa3266
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 0000000..c11cb2e
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 0000000..6fd5bfe
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 0000000..99e68cc
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 0000000..16b0f1d
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png
new file mode 100644
index 0000000..7b2a480
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 0000000..fe93d87
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 0000000..4b2d05a
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png
new file mode 100644
index 0000000..16e9e14
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 0000000..129d30f
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 0000000..fa6ab02
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 0000000..77318c7
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png
new file mode 100644
index 0000000..098c25a
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png
new file mode 100644
index 0000000..76c4eeb
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 0000000..6b8bc0a
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 0000000..c2393ab
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 0000000..929be19
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_btn_borderless_material.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_btn_borderless_material.xml
new file mode 100644
index 0000000..012e524
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_btn_borderless_material.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_btn_check_material.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_btn_check_material.xml
new file mode 100644
index 0000000..68f606b
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_btn_check_material.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_btn_default_mtrl_shape.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_btn_default_mtrl_shape.xml
new file mode 100644
index 0000000..95d3382
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_btn_default_mtrl_shape.xml
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_btn_radio_material.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_btn_radio_material.xml
new file mode 100644
index 0000000..3444b5c
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_btn_radio_material.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_cab_background_internal_bg.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_cab_background_internal_bg.xml
new file mode 100644
index 0000000..52655a5
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_cab_background_internal_bg.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_cab_background_top_material.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_cab_background_top_material.xml
new file mode 100644
index 0000000..acacfd9
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_cab_background_top_material.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_dialog_material_background_dark.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_dialog_material_background_dark.xml
new file mode 100644
index 0000000..f98179f
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_dialog_material_background_dark.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_dialog_material_background_light.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_dialog_material_background_light.xml
new file mode 100644
index 0000000..5411635
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_dialog_material_background_light.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_edit_text_material.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_edit_text_material.xml
new file mode 100644
index 0000000..ab9c90f
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_edit_text_material.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_item_background_holo_dark.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_item_background_holo_dark.xml
new file mode 100644
index 0000000..db7bacc
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_item_background_holo_dark.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_item_background_holo_light.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_item_background_holo_light.xml
new file mode 100644
index 0000000..c38248f
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_item_background_holo_light.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_list_selector_background_transition_holo_dark.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_list_selector_background_transition_holo_dark.xml
new file mode 100644
index 0000000..bb98c2f
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_list_selector_background_transition_holo_dark.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_list_selector_background_transition_holo_light.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_list_selector_background_transition_holo_light.xml
new file mode 100644
index 0000000..4e95440
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_list_selector_background_transition_holo_light.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_list_selector_holo_dark.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_list_selector_holo_dark.xml
new file mode 100644
index 0000000..f23ed0a
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_list_selector_holo_dark.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_list_selector_holo_light.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_list_selector_holo_light.xml
new file mode 100644
index 0000000..329d880
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_list_selector_holo_light.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_ratingbar_full_material.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_ratingbar_full_material.xml
new file mode 100644
index 0000000..964686a
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_ratingbar_full_material.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_spinner_textfield_background_material.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_spinner_textfield_background_material.xml
new file mode 100644
index 0000000..315afd2
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_spinner_textfield_background_material.xml
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_switch_thumb_material.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_switch_thumb_material.xml
new file mode 100644
index 0000000..170e958
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_switch_thumb_material.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_tab_indicator_material.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_tab_indicator_material.xml
new file mode 100644
index 0000000..17aacb2
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_tab_indicator_material.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_textfield_search_material.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_textfield_search_material.xml
new file mode 100644
index 0000000..503fe9e
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/drawable/abc_textfield_search_material.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_action_bar_title_item.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_action_bar_title_item.xml
new file mode 100644
index 0000000..c6c180c
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_action_bar_title_item.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_action_bar_up_container.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_action_bar_up_container.xml
new file mode 100644
index 0000000..ca4712a
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_action_bar_up_container.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_action_bar_view_list_nav_layout.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_action_bar_view_list_nav_layout.xml
new file mode 100644
index 0000000..7ce06a0
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_action_bar_view_list_nav_layout.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_action_menu_item_layout.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_action_menu_item_layout.xml
new file mode 100644
index 0000000..73482e2
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_action_menu_item_layout.xml
@@ -0,0 +1,31 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_action_menu_layout.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_action_menu_layout.xml
new file mode 100644
index 0000000..e1a9e0d
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_action_menu_layout.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_action_mode_bar.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_action_mode_bar.xml
new file mode 100644
index 0000000..ffb6a77
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_action_mode_bar.xml
@@ -0,0 +1,26 @@
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_action_mode_close_item_material.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_action_mode_close_item_material.xml
new file mode 100644
index 0000000..c52ce7d
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_action_mode_close_item_material.xml
@@ -0,0 +1,26 @@
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_activity_chooser_view.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_activity_chooser_view.xml
new file mode 100644
index 0000000..df8895d
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_activity_chooser_view.xml
@@ -0,0 +1,72 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_activity_chooser_view_list_item.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_activity_chooser_view_list_item.xml
new file mode 100644
index 0000000..29c798b
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_activity_chooser_view_list_item.xml
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_alert_dialog_material.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_alert_dialog_material.xml
new file mode 100644
index 0000000..a763dbd
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_alert_dialog_material.xml
@@ -0,0 +1,148 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_dialog_title_material.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_dialog_title_material.xml
new file mode 100644
index 0000000..472faac
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_dialog_title_material.xml
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_expanded_menu_layout.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_expanded_menu_layout.xml
new file mode 100644
index 0000000..449be09
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_expanded_menu_layout.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_list_menu_item_checkbox.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_list_menu_item_checkbox.xml
new file mode 100644
index 0000000..f1b0a07
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_list_menu_item_checkbox.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_list_menu_item_icon.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_list_menu_item_icon.xml
new file mode 100644
index 0000000..e4613d5
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_list_menu_item_icon.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_list_menu_item_layout.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_list_menu_item_layout.xml
new file mode 100644
index 0000000..e31c0b9
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_list_menu_item_layout.xml
@@ -0,0 +1,61 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_list_menu_item_radio.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_list_menu_item_radio.xml
new file mode 100644
index 0000000..7bc5206
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_list_menu_item_radio.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_popup_menu_item_layout.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_popup_menu_item_layout.xml
new file mode 100644
index 0000000..0d10365
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_popup_menu_item_layout.xml
@@ -0,0 +1,62 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_screen_content_include.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_screen_content_include.xml
new file mode 100644
index 0000000..7a6d272
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_screen_content_include.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_screen_simple.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_screen_simple.xml
new file mode 100644
index 0000000..f96f64f
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_screen_simple.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_screen_simple_overlay_action_mode.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_screen_simple_overlay_action_mode.xml
new file mode 100644
index 0000000..468fe14
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_screen_simple_overlay_action_mode.xml
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_screen_toolbar.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_screen_toolbar.xml
new file mode 100644
index 0000000..2ab548b
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_screen_toolbar.xml
@@ -0,0 +1,54 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_search_dropdown_item_icons_2line.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_search_dropdown_item_icons_2line.xml
new file mode 100644
index 0000000..dfc0d7e
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_search_dropdown_item_icons_2line.xml
@@ -0,0 +1,86 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_search_view.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_search_view.xml
new file mode 100644
index 0000000..00cfd33
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_search_view.xml
@@ -0,0 +1,142 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_select_dialog_material.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_select_dialog_material.xml
new file mode 100644
index 0000000..a4011d8
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_select_dialog_material.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_simple_dropdown_hint.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_simple_dropdown_hint.xml
new file mode 100644
index 0000000..c76ab75
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/abc_simple_dropdown_hint.xml
@@ -0,0 +1,23 @@
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/notification_media_action.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/notification_media_action.xml
new file mode 100644
index 0000000..fa4b171
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/notification_media_action.xml
@@ -0,0 +1,25 @@
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/notification_media_cancel_action.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/notification_media_cancel_action.xml
new file mode 100644
index 0000000..2ea0e6c
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/notification_media_cancel_action.xml
@@ -0,0 +1,28 @@
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/notification_template_big_media.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/notification_template_big_media.xml
new file mode 100644
index 0000000..2d95321
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/notification_template_big_media.xml
@@ -0,0 +1,61 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/notification_template_big_media_narrow.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/notification_template_big_media_narrow.xml
new file mode 100644
index 0000000..e1e4ff5
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/notification_template_big_media_narrow.xml
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/notification_template_lines.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/notification_template_lines.xml
new file mode 100644
index 0000000..7cdaaf9
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/notification_template_lines.xml
@@ -0,0 +1,108 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/notification_template_media.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/notification_template_media.xml
new file mode 100644
index 0000000..0c53d24
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/notification_template_media.xml
@@ -0,0 +1,53 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/notification_template_part_chronometer.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/notification_template_part_chronometer.xml
new file mode 100644
index 0000000..b76205c
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/notification_template_part_chronometer.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/notification_template_part_time.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/notification_template_part_time.xml
new file mode 100644
index 0000000..e5d3864
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/notification_template_part_time.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/select_dialog_item_material.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/select_dialog_item_material.xml
new file mode 100644
index 0000000..91f62f8
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/select_dialog_item_material.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/select_dialog_multichoice_material.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/select_dialog_multichoice_material.xml
new file mode 100644
index 0000000..76d2c37
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/select_dialog_multichoice_material.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/select_dialog_singlechoice_material.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/select_dialog_singlechoice_material.xml
new file mode 100644
index 0000000..eeccbc2
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/select_dialog_singlechoice_material.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/support_simple_spinner_dropdown_item.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/support_simple_spinner_dropdown_item.xml
new file mode 100644
index 0000000..7c17788
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/layout/support_simple_spinner_dropdown_item.xml
@@ -0,0 +1,25 @@
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-af/values-af.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-af/values-af.xml
new file mode 100644
index 0000000..8050f0d
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-af/values-af.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Navigeer tuis"
+ "Navigeer op"
+ "Nog opsies"
+ "Klaar"
+ "Sien alles"
+ "Kies \'n program"
+ "Vee navraag uit"
+ "Soeknavraag"
+ "Soek"
+ "Dien navraag in"
+ "Stemsoektog"
+ "Deel met"
+ "Deel met %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-am/values-am.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-am/values-am.xml
new file mode 100644
index 0000000..bceeaf6
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-am/values-am.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "ወደ መነሻ ይዳስሱ"
+ "ወደ ላይ ይዳስሱ"
+ "ተጨማሪ አማራጮች"
+ "ተከናውኗል"
+ "ሁሉንም ይመልከቱ"
+ "መተግበሪያ ይምረጡ"
+ "መጠይቅ አጽዳ"
+ "የፍለጋ ጥያቄ"
+ "ፍለጋ"
+ "መጠይቅ ያስረክቡ"
+ "የድምፅ ፍለጋ"
+ "ከሚከተለው ጋር ያጋሩ"
+ "ከ%s ጋር ያጋሩ"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-ar/values-ar.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-ar/values-ar.xml
new file mode 100644
index 0000000..495be02
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-ar/values-ar.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "التنقل إلى الشاشة الرئيسية"
+ "التنقل إلى أعلى"
+ "خيارات إضافية"
+ "تم"
+ "عرض الكل"
+ "اختيار تطبيق"
+ "محو طلب البحث"
+ "طلب البحث"
+ "بحث"
+ "إرسال طلب البحث"
+ "البحث الصوتي"
+ "مشاركة مع"
+ "مشاركة مع %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-bg/values-bg.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-bg/values-bg.xml
new file mode 100644
index 0000000..39a0b8c
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-bg/values-bg.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Придвижване към „Начало“"
+ "Придвижване нагоре"
+ "Още опции"
+ "Готово"
+ "Вижте всички"
+ "Изберете приложение"
+ "Изчистване на заявката"
+ "Заявка за търсене"
+ "Търсене"
+ "Изпращане на заявката"
+ "Гласово търсене"
+ "Споделяне със:"
+ "Споделяне със: %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-bn-rBD/values-bn-rBD.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-bn-rBD/values-bn-rBD.xml
new file mode 100644
index 0000000..078dd47
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-bn-rBD/values-bn-rBD.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "হোম এ নেভিগেট করুন"
+ "উপরের দিকে নেভিগেট করুন"
+ "আরো বিকল্প"
+ "সম্পন্ন হয়েছে"
+ "সবগুলো দেখুন"
+ "একটি অ্যাপ্লিকেশান চয়ন করুন"
+ "ক্যোয়ারী সাফ করুন"
+ "ক্যোয়ারী অনুসন্ধান করুন"
+ "অনুসন্ধান করুন"
+ "ক্যোয়ারী জমা দিন"
+ "ভয়েস অনুসন্ধান"
+ "এর সাথে ভাগ করুন"
+ "%s এর সাথে ভাগ করুন"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-ca/values-ca.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-ca/values-ca.xml
new file mode 100644
index 0000000..16e784b
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-ca/values-ca.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Navega a la pàgina d\'inici"
+ "Navega cap a dalt"
+ "Més opcions"
+ "Fet"
+ "Mostra\'ls tots"
+ "Selecciona una aplicació"
+ "Esborra la consulta"
+ "Consulta de cerca"
+ "Cerca"
+ "Envia la consulta"
+ "Cerca per veu"
+ "Comparteix amb"
+ "Comparteix amb %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-cs/values-cs.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-cs/values-cs.xml
new file mode 100644
index 0000000..ef5477c
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-cs/values-cs.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Přejít na plochu"
+ "Přejít nahoru"
+ "Více možností"
+ "Hotovo"
+ "Zobrazit vše"
+ "Vybrat aplikaci"
+ "Smazat dotaz"
+ "Vyhledávací dotaz"
+ "Hledat"
+ "Odeslat dotaz"
+ "Hlasové vyhledávání"
+ "Sdílet pomocí"
+ "Sdílet pomocí %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-da/values-da.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-da/values-da.xml
new file mode 100644
index 0000000..3d9628d
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-da/values-da.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Naviger hjem"
+ "Naviger op"
+ "Flere muligheder"
+ "Luk"
+ "Se alle"
+ "Vælg en app"
+ "Ryd forespørgslen"
+ "Søgeforespørgsel"
+ "Søg"
+ "Indsend forespørgslen"
+ "Stemmesøgning"
+ "Del med"
+ "Del med %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-de/values-de.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-de/values-de.xml
new file mode 100644
index 0000000..33867f2
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-de/values-de.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Zur Startseite"
+ "Nach oben"
+ "Weitere Optionen"
+ "Fertig"
+ "Alle ansehen"
+ "App auswählen"
+ "Suchanfrage löschen"
+ "Suchanfrage"
+ "Suchen"
+ "Suchanfrage senden"
+ "Sprachsuche"
+ "Freigeben für"
+ "Freigeben für %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-el/values-el.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-el/values-el.xml
new file mode 100644
index 0000000..24b8e51
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-el/values-el.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Πλοήγηση στην αρχική σελίδα"
+ "Πλοήγηση προς τα επάνω"
+ "Περισσότερες επιλογές"
+ "Τέλος"
+ "Προβολή όλων"
+ "Επιλέξτε κάποια εφαρμογή"
+ "Διαγραφή ερωτήματος"
+ "Ερώτημα αναζήτησης"
+ "Αναζήτηση"
+ "Υποβολή ερωτήματος"
+ "Φωνητική αναζήτηση"
+ "Κοινή χρήση με"
+ "Κοινή χρήση με %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-en-rGB/values-en-rGB.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-en-rGB/values-en-rGB.xml
new file mode 100644
index 0000000..cd0bcbe
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-en-rGB/values-en-rGB.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Navigate home"
+ "Navigate up"
+ "More options"
+ "Finished"
+ "See all"
+ "Choose an app"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-en-rIN/values-en-rIN.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-en-rIN/values-en-rIN.xml
new file mode 100644
index 0000000..ab5fea6
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-en-rIN/values-en-rIN.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Navigate home"
+ "Navigate up"
+ "More options"
+ "Finished"
+ "See all"
+ "Choose an app"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-es-rUS/values-es-rUS.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-es-rUS/values-es-rUS.xml
new file mode 100644
index 0000000..df9949f
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-es-rUS/values-es-rUS.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Navegar a la página principal"
+ "Navegar hacia arriba"
+ "Más opciones"
+ "Listo"
+ "Ver todo"
+ "Elige una aplicación."
+ "Eliminar la consulta"
+ "Consulta de búsqueda"
+ "Búsqueda"
+ "Enviar consulta"
+ "Búsqueda por voz"
+ "Compartir con"
+ "Compartir con %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-es/values-es.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-es/values-es.xml
new file mode 100644
index 0000000..329ddec
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-es/values-es.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Ir a la pantalla de inicio"
+ "Desplazarse hacia arriba"
+ "Más opciones"
+ "Listo"
+ "Ver todo"
+ "Seleccionar una aplicación"
+ "Borrar consulta"
+ "Consulta"
+ "Buscar"
+ "Enviar consulta"
+ "Búsqueda por voz"
+ "Compartir con"
+ "Compartir con %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-et-rEE/values-et-rEE.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-et-rEE/values-et-rEE.xml
new file mode 100644
index 0000000..2caae58
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-et-rEE/values-et-rEE.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Navigeerimine avaekraanile"
+ "Navigeerimine üles"
+ "Rohkem valikuid"
+ "Valmis"
+ "Kuva kõik"
+ "Valige rakendus"
+ "Päringu tühistamine"
+ "Otsingupäring"
+ "Otsing"
+ "Päringu esitamine"
+ "Häälotsing"
+ "Jagamine:"
+ "Jagamine kasutajaga %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-eu-rES/values-eu-rES.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-eu-rES/values-eu-rES.xml
new file mode 100644
index 0000000..e097657
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-eu-rES/values-eu-rES.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Joan orri nagusira"
+ "Joan gora"
+ "Aukera gehiago"
+ "Eginda"
+ "Ikusi guztiak"
+ "Aukeratu aplikazio bat"
+ "Garbitu kontsulta"
+ "Bilaketa-kontsulta"
+ "Bilatu"
+ "Bidali kontsulta"
+ "Ahots bidezko bilaketa"
+ "Partekatu hauekin"
+ "Partekatu %s erabiltzailearekin"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-fa/values-fa.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-fa/values-fa.xml
new file mode 100644
index 0000000..1bd7354
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-fa/values-fa.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "پیمایش به صفحه اصلی"
+ "پیمایش به بالا"
+ "گزینههای بیشتر"
+ "انجام شد"
+ "مشاهده همه"
+ "انتخاب برنامه"
+ "پاک کردن عبارت جستجو"
+ "عبارت جستجو"
+ "جستجو"
+ "ارسال عبارت جستجو"
+ "جستجوی شفاهی"
+ "اشتراکگذاری با"
+ "اشتراکگذاری با %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-fi/values-fi.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-fi/values-fi.xml
new file mode 100644
index 0000000..28ecbb9
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-fi/values-fi.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Siirry etusivulle"
+ "Siirry ylös"
+ "Lisää"
+ "Valmis"
+ "Näytä kaikki"
+ "Valitse sovellus"
+ "Tyhjennä kysely"
+ "Hakulauseke"
+ "Haku"
+ "Lähetä kysely"
+ "Puhehaku"
+ "Jakaminen:"
+ "Jakaminen: %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-fr-rCA/values-fr-rCA.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-fr-rCA/values-fr-rCA.xml
new file mode 100644
index 0000000..703a48a
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-fr-rCA/values-fr-rCA.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Revenir à l\'accueil"
+ "Revenir en haut de la page"
+ "Plus d\'options"
+ "Terminé"
+ "Voir toutes les chaînes"
+ "Sélectionnez une application"
+ "Effacer la requête"
+ "Requête de recherche"
+ "Rechercher"
+ "Envoyer la requête"
+ "Recherche vocale"
+ "Partager avec"
+ "Partager avec %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-fr/values-fr.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-fr/values-fr.xml
new file mode 100644
index 0000000..ee73b76
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-fr/values-fr.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Revenir à l\'accueil"
+ "Revenir en haut de la page"
+ "Plus d\'options"
+ "OK"
+ "Tout afficher"
+ "Sélectionner une application"
+ "Effacer la requête"
+ "Requête de recherche"
+ "Rechercher"
+ "Envoyer la requête"
+ "Recherche vocale"
+ "Partager avec"
+ "Partager avec %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-gl-rES/values-gl-rES.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-gl-rES/values-gl-rES.xml
new file mode 100644
index 0000000..bd0a3ff
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-gl-rES/values-gl-rES.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Ir á páxina de inicio"
+ "Desprazarse cara arriba"
+ "Máis opcións"
+ "Feito"
+ "Ver todas"
+ "Escoller unha aplicación"
+ "Borrar consulta"
+ "Consulta de busca"
+ "Buscar"
+ "Enviar consulta"
+ "Busca de voz"
+ "Compartir con"
+ "Compartir con %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-h720dp/values-h720dp.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-h720dp/values-h720dp.xml
new file mode 100644
index 0000000..7d80f6b
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-h720dp/values-h720dp.xml
@@ -0,0 +1,6 @@
+
+
+
+
+ 54dip
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-hdpi/values-hdpi.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-hdpi/values-hdpi.xml
new file mode 100644
index 0000000..d9db7af
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-hdpi/values-hdpi.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-hi/values-hi.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-hi/values-hi.xml
new file mode 100644
index 0000000..5cee91f
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-hi/values-hi.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "मुखपृष्ठ पर नेविगेट करें"
+ "ऊपर नेविगेट करें"
+ "अधिक विकल्प"
+ "पूर्ण"
+ "सभी देखें"
+ "कोई एप्लिकेशन चुनें"
+ "क्वेरी साफ़ करें"
+ "खोज क्वेरी"
+ "खोजें"
+ "क्वेरी सबमिट करें"
+ "ध्वनि खोज"
+ "इसके द्वारा साझा करें"
+ "%s के साथ साझा करें"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-hr/values-hr.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-hr/values-hr.xml
new file mode 100644
index 0000000..cfbad3e
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-hr/values-hr.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Idi na početnu"
+ "Idi gore"
+ "Dodatne opcije"
+ "Gotovo"
+ "Prikaži sve"
+ "Odabir aplikacije"
+ "Izbriši upit"
+ "Upit za pretraživanje"
+ "Pretraživanje"
+ "Pošalji upit"
+ "Glasovno pretraživanje"
+ "Dijeljenje sa"
+ "Dijeljenje sa: %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-hu/values-hu.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-hu/values-hu.xml
new file mode 100644
index 0000000..4136206
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-hu/values-hu.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Ugrás a főoldalra"
+ "Felfelé mozgatás"
+ "További lehetőségek"
+ "Kész"
+ "Összes megtekintése"
+ "Válasszon ki egy alkalmazást"
+ "Lekérdezés törlése"
+ "Keresési lekérdezés"
+ "Keresés"
+ "Lekérdezés küldése"
+ "Hangalapú keresés"
+ "Megosztás a következővel:"
+ "Megosztás a következővel: %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-hy-rAM/values-hy-rAM.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-hy-rAM/values-hy-rAM.xml
new file mode 100644
index 0000000..d7b69d1
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-hy-rAM/values-hy-rAM.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Ուղղվել տուն"
+ "Ուղղվել վերև"
+ "Այլ ընտրանքներ"
+ "Կատարված է"
+ "Տեսնել բոլորը"
+ "Ընտրել ծրագիր"
+ "Մաքրել հարցումը"
+ "Որոնման հարցում"
+ "Որոնել"
+ "Ուղարկել հարցումը"
+ "Ձայնային որոնում"
+ "Տարածել"
+ "Տարածել ըստ %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-in/values-in.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-in/values-in.xml
new file mode 100644
index 0000000..a78f16e
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-in/values-in.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Navigasi ke beranda"
+ "Navigasi naik"
+ "Opsi lain"
+ "Selesai"
+ "Lihat semua"
+ "Pilih aplikasi"
+ "Hapus kueri"
+ "Kueri penelusuran"
+ "Telusuri"
+ "Kirim kueri"
+ "Penelusuran suara"
+ "Bagikan dengan"
+ "Bagikan dengan %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-is-rIS/values-is-rIS.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-is-rIS/values-is-rIS.xml
new file mode 100644
index 0000000..10416a8
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-is-rIS/values-is-rIS.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Fara heim"
+ "Fara upp"
+ "Fleiri valkostir"
+ "Lokið"
+ "Sjá allt"
+ "Veldu forrit"
+ "Hreinsa fyrirspurn"
+ "Leitarfyrirspurn"
+ "Leita"
+ "Senda fyrirspurn"
+ "Raddleit"
+ "Deila með"
+ "Deila með %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-it/values-it.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-it/values-it.xml
new file mode 100644
index 0000000..e12fdb0
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-it/values-it.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Vai alla home page"
+ "Vai in alto"
+ "Altre opzioni"
+ "Fine"
+ "Visualizza tutte"
+ "Scegli un\'applicazione"
+ "Cancella query"
+ "Query di ricerca"
+ "Cerca"
+ "Invia query"
+ "Ricerca vocale"
+ "Condividi con"
+ "Condividi con %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-iw/values-iw.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-iw/values-iw.xml
new file mode 100644
index 0000000..db23729
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-iw/values-iw.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "נווט לדף הבית"
+ "נווט למעלה"
+ "עוד אפשרויות"
+ "בוצע"
+ "ראה הכול"
+ "בחר אפליקציה"
+ "מחק שאילתה"
+ "שאילתת חיפוש"
+ "חפש"
+ "שלח שאילתה"
+ "חיפוש קולי"
+ "שתף עם"
+ "שתף עם %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-ja/values-ja.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-ja/values-ja.xml
new file mode 100644
index 0000000..167cc12
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-ja/values-ja.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "ホームへ移動"
+ "上へ移動"
+ "その他のオプション"
+ "完了"
+ "すべて表示"
+ "アプリの選択"
+ "検索キーワードを削除"
+ "検索キーワード"
+ "検索"
+ "検索キーワードを送信"
+ "音声検索"
+ "共有"
+ "%sと共有"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-ka-rGE/values-ka-rGE.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-ka-rGE/values-ka-rGE.xml
new file mode 100644
index 0000000..5b2be7f
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-ka-rGE/values-ka-rGE.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "მთავარზე ნავიგაცია"
+ "ზემოთ ნავიგაცია"
+ "მეტი ვარიანტები"
+ "დასრულდა"
+ "ყველას ნახვა"
+ "აპის არჩევა"
+ "მოთხოვნის გასუფთავება"
+ "ძიების მოთხოვნა"
+ "ძიება"
+ "მოთხოვნის გადაგზავნა"
+ "ხმოვანი ძიება"
+ "გაზიარება:"
+ "%s-თან გაზიარება"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-kk-rKZ/values-kk-rKZ.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-kk-rKZ/values-kk-rKZ.xml
new file mode 100644
index 0000000..ca71cff
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-kk-rKZ/values-kk-rKZ.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Негізгі бетте қозғалу"
+ "Жоғары қозғалу"
+ "Басқа опциялар"
+ "Орындалды"
+ "Барлығын көру"
+ "Қолданбаны таңдау"
+ "Сұрақты жою"
+ "Сұрақты іздеу"
+ "Іздеу"
+ "Сұрақты жіберу"
+ "Дауыс арқылы іздеу"
+ "Бөлісу"
+ "%s бөлісу"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-km-rKH/values-km-rKH.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-km-rKH/values-km-rKH.xml
new file mode 100644
index 0000000..88d4282
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-km-rKH/values-km-rKH.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "រកមើលទៅដើម"
+ "រកមើលឡើងលើ"
+ "ជម្រើសច្រើនទៀត"
+ "រួចរាល់"
+ "មើលទាំងអស់"
+ "ជ្រើសកម្មវិធី"
+ "សម្អាតសំណួរ"
+ "ស្វែងរកសំណួរ"
+ "ស្វែងរក"
+ "ដាក់ស្នើសំណួរ"
+ "ការស្វែងរកសំឡេង"
+ "ចែករំលែកជាមួយ"
+ "ចែករំលែកជាមួយ %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-kn-rIN/values-kn-rIN.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-kn-rIN/values-kn-rIN.xml
new file mode 100644
index 0000000..cbb7321
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-kn-rIN/values-kn-rIN.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"
+ "ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"
+ "ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು"
+ "ಮುಗಿದಿದೆ"
+ "ಎಲ್ಲವನ್ನೂ ನೋಡಿ"
+ "ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ"
+ "ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು"
+ "ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ"
+ "ಹುಡುಕು"
+ "ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು"
+ "ಧ್ವನಿ ಹುಡುಕಾಟ"
+ "ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ"
+ "%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-ko/values-ko.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-ko/values-ko.xml
new file mode 100644
index 0000000..01665e9
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-ko/values-ko.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "홈 탐색"
+ "위로 탐색"
+ "옵션 더보기"
+ "완료"
+ "전체 보기"
+ "앱 선택"
+ "검색어 삭제"
+ "검색어"
+ "검색"
+ "검색어 보내기"
+ "음성 검색"
+ "공유 대상"
+ "%s와(과) 공유"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-ky-rKG/values-ky-rKG.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-ky-rKG/values-ky-rKG.xml
new file mode 100644
index 0000000..c3e1291
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-ky-rKG/values-ky-rKG.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Үйгө багыттоо"
+ "Жогору"
+ "Көбүрөөк мүмкүнчүлүктөр"
+ "Даяр"
+ "Бардыгын көрүү"
+ "Колдонмо тандоо"
+ "Талаптарды тазалоо"
+ "Издөө талаптары"
+ "Издөө"
+ "Талап жөнөтүү"
+ "Үн аркылуу издөө"
+ "Бөлүшүү"
+ "%s аркылуу бөлүшүү"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-land/values-land.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-land/values-land.xml
new file mode 100644
index 0000000..75a944b
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-land/values-land.xml
@@ -0,0 +1,20 @@
+
+
+
+
+ true
+
+
+ true
+
+
+ 48dp
+ 0dp
+
+
+ 32dp
+
+
+ 12dp
+ 14dp
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-large/values-large.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-large/values-large.xml
new file mode 100644
index 0000000..fa578f9
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-large/values-large.xml
@@ -0,0 +1,22 @@
+
+
+
+
+ true
+
+
+ true
+ 440dp
+
+
+ 192dip
+ 60%
+ 90%
+ 60%
+ 90%
+ 4
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-lo-rLA/values-lo-rLA.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-lo-rLA/values-lo-rLA.xml
new file mode 100644
index 0000000..2dccd57
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-lo-rLA/values-lo-rLA.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "ກັບໄປໜ້າຫຼັກ"
+ "ຂຶ້ນເທິງ"
+ "ໂຕເລືອກອື່ນ"
+ "ແລ້ວໆ"
+ "ເບິ່ງທັງຫມົດ"
+ "ເລືອກແອັບຯ"
+ "ລຶບຂໍ້ຄວາມຊອກຫາ"
+ "ຊອກຫາ"
+ "ຊອກຫາ"
+ "ສົ່ງການຊອກຫາ"
+ "ຊອກຫາດ້ວຍສຽງ"
+ "ແບ່ງປັນກັບ"
+ "ແບ່ງປັນກັບ %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-lt/values-lt.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-lt/values-lt.xml
new file mode 100644
index 0000000..4dae547
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-lt/values-lt.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Eiti į pagrindinį puslapį"
+ "Eiti į viršų"
+ "Daugiau parinkčių"
+ "Atlikta"
+ "Peržiūrėti viską"
+ "Pasirinkti programą"
+ "Išvalyti užklausą"
+ "Paieškos užklausa"
+ "Paieška"
+ "Pateikti užklausą"
+ "Paieška balsu"
+ "Bendrinti naudojant"
+ "Bendrinti naudojant „%s“"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-lv/values-lv.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-lv/values-lv.xml
new file mode 100644
index 0000000..c5284bd
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-lv/values-lv.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Pārvietoties uz sākuma ekrānu"
+ "Pārvietoties augšup"
+ "Vairāk opciju"
+ "Gatavs"
+ "Skatīt visu"
+ "Izvēlieties lietotni"
+ "Notīrīt vaicājumu"
+ "Meklēšanas vaicājums"
+ "Meklēt"
+ "Iesniegt vaicājumu"
+ "Meklēšana ar balsi"
+ "Kopīgot ar:"
+ "Kopīgot ar %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-mk-rMK/values-mk-rMK.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-mk-rMK/values-mk-rMK.xml
new file mode 100644
index 0000000..c52ce99
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-mk-rMK/values-mk-rMK.xml
@@ -0,0 +1,17 @@
+
+
+
+
+ "Движи се кон дома"
+ "Движи се нагоре"
+ "Повеќе опции"
+ "Готово"
+ "Види ги сите"
+ "Избери апликација"
+ "Исчисти барање"
+ "Пребарај барање"
+ "Пребарај"
+ "Поднеси барање"
+ "Гласовно пребарување"
+ "Сподели со"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-ml-rIN/values-ml-rIN.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-ml-rIN/values-ml-rIN.xml
new file mode 100644
index 0000000..24a1606
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-ml-rIN/values-ml-rIN.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "ഹോമിലേക്ക് നാവിഗേറ്റുചെയ്യുക"
+ "മുകളിലേക്ക് നാവിഗേറ്റുചെയ്യുക"
+ "കൂടുതല് ഓപ്ഷനുകള്"
+ "പൂർത്തിയാക്കി"
+ "എല്ലാം കാണുക"
+ "ഒരു അപ്ലിക്കേഷൻ തിരഞ്ഞെടുക്കുക"
+ "അന്വേഷണം മായ്ക്കുക"
+ "തിരയൽ അന്വേഷണം"
+ "തിരയൽ"
+ "അന്വേഷണം സമർപ്പിക്കുക"
+ "വോയ്സ് തിരയൽ"
+ "ഇവരുമായി പങ്കിടുക"
+ "%s എന്നതുമായി പങ്കിടുക"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-mn-rMN/values-mn-rMN.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-mn-rMN/values-mn-rMN.xml
new file mode 100644
index 0000000..6a742c1
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-mn-rMN/values-mn-rMN.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Нүүр хуудас руу шилжих"
+ "Дээш шилжих"
+ "Нэмэлт сонголтууд"
+ "Дууссан"
+ "Бүгдийг харах"
+ "Апп сонгох"
+ "Асуулгыг цэвэрлэх"
+ "Хайх асуулга"
+ "Хайх"
+ "Асуулгыг илгээх"
+ "Дуут хайлт"
+ "Хуваалцах"
+ "%s-тай хуваалцах"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-mr-rIN/values-mr-rIN.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-mr-rIN/values-mr-rIN.xml
new file mode 100644
index 0000000..6408c6a
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-mr-rIN/values-mr-rIN.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "मुख्यपृष्ठ नेव्हिगेट करा"
+ "वर नेव्हिगेट करा"
+ "अधिक पर्याय"
+ "पूर्ण झाले"
+ "सर्व पहा"
+ "एक अॅप निवडा"
+ "क्वेरी स्पष्ट करा"
+ "शोध क्वेरी"
+ "शोध"
+ "क्वेरी सबमिट करा"
+ "व्हॉइस शोध"
+ "यांच्यासह सामायिक करा"
+ "%s सह सामायिक करा"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-ms-rMY/values-ms-rMY.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-ms-rMY/values-ms-rMY.xml
new file mode 100644
index 0000000..8c4d77b
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-ms-rMY/values-ms-rMY.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Navigasi skrin utama"
+ "Navigasi ke atas"
+ "Lagi pilihan"
+ "Selesai"
+ "Lihat semua"
+ "Pilih apl"
+ "Kosongkan pertanyaan"
+ "Pertanyaan carian"
+ "Cari"
+ "Serah pertanyaan"
+ "Carian suara"
+ "Kongsi dengan"
+ "Kongsi dengan %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-my-rMM/values-my-rMM.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-my-rMM/values-my-rMM.xml
new file mode 100644
index 0000000..8881c68
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-my-rMM/values-my-rMM.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "မူလနေရာကို သွားရန်"
+ "အပေါ်သို့သွားရန်"
+ "ပိုမိုရွေးချယ်စရာများ"
+ "ပြီးဆုံးပါပြီ"
+ "အားလုံးကို ကြည့်ရန်"
+ "အပလီကေးရှင်း တစ်ခုခုကို ရွေးချယ်ပါ"
+ "ရှာစရာ အချက်အလက်များ ရှင်းလင်းရန်"
+ "ရှာစရာ အချက်အလက်နေရာ"
+ "ရှာဖွေရန်"
+ "ရှာဖွေစရာ အချက်အလက်ကို အတည်ပြုရန်"
+ "အသံဖြင့် ရှာဖွေခြင်း"
+ "မျှဝေဖို့ ရွေးပါ"
+ "%s ကို မျှဝေပါရန်"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-nb/values-nb.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-nb/values-nb.xml
new file mode 100644
index 0000000..56a3b44
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-nb/values-nb.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Gå til startsiden"
+ "Gå opp"
+ "Flere alternativer"
+ "Ferdig"
+ "Se alle"
+ "Velg en app"
+ "Slett søket"
+ "Søkeord"
+ "Søk"
+ "Utfør søket"
+ "Talesøk"
+ "Del med"
+ "Del med %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-ne-rNP/values-ne-rNP.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-ne-rNP/values-ne-rNP.xml
new file mode 100644
index 0000000..58f2061
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-ne-rNP/values-ne-rNP.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "गृह खोज्नुहोस्"
+ "माथि खोज्नुहोस्"
+ "थप विकल्पहरू"
+ "सम्पन्न भयो"
+ "सबै हेर्नुहोस्"
+ "एउटा अनुप्रयोग छान्नुहोस्"
+ "प्रश्न हटाउनुहोस्"
+ "जिज्ञासाको खोज गर्नुहोस्"
+ "खोज्नुहोस्"
+ "जिज्ञासा पेस गर्नुहोस्"
+ "भ्वाइस खोजी"
+ "साझेदारी गर्नुहोस्..."
+ "%s सँग साझेदारी गर्नुहोस्"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-nl/values-nl.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-nl/values-nl.xml
new file mode 100644
index 0000000..b50f3b0
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-nl/values-nl.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Navigeren naar startpositie"
+ "Omhoog navigeren"
+ "Meer opties"
+ "Gereed"
+ "Alles weergeven"
+ "Een app selecteren"
+ "Zoekopdracht wissen"
+ "Zoekopdracht"
+ "Zoeken"
+ "Zoekopdracht verzenden"
+ "Gesproken zoekopdracht"
+ "Delen met"
+ "Delen met %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-pl/values-pl.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-pl/values-pl.xml
new file mode 100644
index 0000000..d13752f
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-pl/values-pl.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Przejdź do strony głównej"
+ "Przejdź wyżej"
+ "Więcej opcji"
+ "Gotowe"
+ "Zobacz wszystkie"
+ "Wybierz aplikację"
+ "Wyczyść zapytanie"
+ "Wyszukiwane hasło"
+ "Szukaj"
+ "Wyślij zapytanie"
+ "Wyszukiwanie głosowe"
+ "Udostępnij dla"
+ "Udostępnij dla %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-port/values-port.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-port/values-port.xml
new file mode 100644
index 0000000..1f0e3b9
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-port/values-port.xml
@@ -0,0 +1,6 @@
+
+
+
+
+ false
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-pt-rPT/values-pt-rPT.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-pt-rPT/values-pt-rPT.xml
new file mode 100644
index 0000000..547dadc
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-pt-rPT/values-pt-rPT.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Navegar para a página inicial"
+ "Navegar para cima"
+ "Mais opções"
+ "Concluído"
+ "Ver tudo"
+ "Escolher uma aplicação"
+ "Limpar consulta"
+ "Consulta de pesquisa"
+ "Pesquisar"
+ "Enviar consulta"
+ "Pesquisa por voz"
+ "Partilhar com"
+ "Partilhar com %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-pt/values-pt.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-pt/values-pt.xml
new file mode 100644
index 0000000..d481d7b
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-pt/values-pt.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Navegar para a página inicial"
+ "Navegar para cima"
+ "Mais opções"
+ "Concluído"
+ "Ver tudo"
+ "Selecione um aplicativo"
+ "Limpar consulta"
+ "Consulta de pesquisa"
+ "Pesquisar"
+ "Enviar consulta"
+ "Pesquisa por voz"
+ "Compartilhar com"
+ "Compartilhar com %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-ro/values-ro.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-ro/values-ro.xml
new file mode 100644
index 0000000..f3f7acd
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-ro/values-ro.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Navigați la ecranul de pornire"
+ "Navigați în sus"
+ "Mai multe opțiuni"
+ "Terminat"
+ "Afișați-le pe toate"
+ "Alegeți o aplicaţie"
+ "Ștergeți interogarea"
+ "Interogare de căutare"
+ "Căutați"
+ "Trimiteți interogarea"
+ "Căutare vocală"
+ "Trimiteți la"
+ "Trimiteți la %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-ru/values-ru.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-ru/values-ru.xml
new file mode 100644
index 0000000..30e114e
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-ru/values-ru.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Перейти на главный экран"
+ "Перейти вверх"
+ "Другие параметры"
+ "Готово"
+ "Показать все"
+ "Выбрать приложение"
+ "Удалить запрос"
+ "Поисковый запрос"
+ "Поиск"
+ "Отправить запрос"
+ "Голосовой поиск"
+ "Открыть доступ"
+ "Открыть доступ пользователю %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-si-rLK/values-si-rLK.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-si-rLK/values-si-rLK.xml
new file mode 100644
index 0000000..f1ea4b3
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-si-rLK/values-si-rLK.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "ගෙදරට සංචාලනය කරන්න"
+ "ඉහලට සංචාලනය කරන්න"
+ "තවත් විකල්ප"
+ "අවසාන වූ"
+ "සියල්ල බලන්න"
+ "යෙදුමක් තෝරන්න"
+ "විමසුම හිස් කරන්න"
+ "සෙවුම් විමසුම"
+ "සෙවීම"
+ "විමසුම යොමු කරන්න"
+ "හඬ සෙවීම"
+ "සමඟ බෙදාගන්න"
+ "%s සමඟ බෙදාගන්න"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-sk/values-sk.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-sk/values-sk.xml
new file mode 100644
index 0000000..aafad0f
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-sk/values-sk.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Prejsť na plochu"
+ "Prejsť hore"
+ "Ďalšie možnosti"
+ "Hotovo"
+ "Zobraziť všetko"
+ "Zvoľte aplikáciu"
+ "Vymazať dopyt"
+ "Vyhľadávací dopyt"
+ "Hľadať"
+ "Odoslať dopyt"
+ "Hlasové vyhľadávanie"
+ "Zdieľať pomocou"
+ "Zdieľať pomocou %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-sl/values-sl.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-sl/values-sl.xml
new file mode 100644
index 0000000..36e3412
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-sl/values-sl.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Krmarjenje domov"
+ "Krmarjenje navzgor"
+ "Več možnosti"
+ "Končano"
+ "Pokaži vse"
+ "Izbira aplikacije"
+ "Izbris poizvedbe"
+ "Iskalna poizvedba"
+ "Iskanje"
+ "Pošiljanje poizvedbe"
+ "Glasovno iskanje"
+ "Deljenje z"
+ "Deljenje z:"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-sr/values-sr.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-sr/values-sr.xml
new file mode 100644
index 0000000..071ddaa
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-sr/values-sr.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Одлазак на Почетну"
+ "Кретање нагоре"
+ "Још опција"
+ "Готово"
+ "Прикажи све"
+ "Избор апликације"
+ "Брисање упита"
+ "Упит за претрагу"
+ "Претрага"
+ "Слање упита"
+ "Гласовна претрага"
+ "Дели са"
+ "Дели са апликацијом %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-sv/values-sv.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-sv/values-sv.xml
new file mode 100644
index 0000000..ac3d4b8
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-sv/values-sv.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Visa startsidan"
+ "Navigera uppåt"
+ "Fler alternativ"
+ "Klart"
+ "Visa alla"
+ "Välj en app"
+ "Ta bort frågan"
+ "Sökfråga"
+ "Sök"
+ "Skicka fråga"
+ "Röstsökning"
+ "Dela med"
+ "Dela med %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-sw/values-sw.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-sw/values-sw.xml
new file mode 100644
index 0000000..0e96241
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-sw/values-sw.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Nenda mwanzo"
+ "Nenda juu"
+ "Chaguo zaidi"
+ "Nimemaliza"
+ "Angalia zote"
+ "Chagua programu"
+ "Futa hoja"
+ "Hoja ya utafutaji"
+ "Tafuta"
+ "Wasilisha hoja"
+ "Tafuta kwa kutamka"
+ "Shiriki na:"
+ "Shiriki na %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-sw600dp/values-sw600dp.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-sw600dp/values-sw600dp.xml
new file mode 100644
index 0000000..1f76c38
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-sw600dp/values-sw600dp.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ 24dp
+ 64dp
+ 4dp
+ 8dp
+ 18dp
+
+
+ 580dp
+
+
+ 16dp
+ 20dp
+ 5
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-ta-rIN/values-ta-rIN.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-ta-rIN/values-ta-rIN.xml
new file mode 100644
index 0000000..5443056
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-ta-rIN/values-ta-rIN.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "முகப்பிற்கு வழிசெலுத்து"
+ "மேலே வழிசெலுத்து"
+ "மேலும் விருப்பங்கள்"
+ "முடிந்தது"
+ "எல்லாம் காட்டு"
+ "பயன்பாட்டைத் தேர்வுசெய்க"
+ "வினவலை அழி"
+ "தேடல் வினவல்"
+ "தேடு"
+ "வினவலைச் சமர்ப்பி"
+ "குரல் தேடல்"
+ "இதனுடன் பகிர்"
+ "%s உடன் பகிர்"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-te-rIN/values-te-rIN.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-te-rIN/values-te-rIN.xml
new file mode 100644
index 0000000..a2a85f2
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-te-rIN/values-te-rIN.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "హోమ్కు నావిగేట్ చేయండి"
+ "పైకి నావిగేట్ చేయండి"
+ "మరిన్ని ఎంపికలు"
+ "పూర్తయింది"
+ "అన్నీ చూడండి"
+ "అనువర్తనాన్ని ఎంచుకోండి"
+ "ప్రశ్నను క్లియర్ చేయి"
+ "ప్రశ్న శోధించండి"
+ "శోధించు"
+ "ప్రశ్నని సమర్పించు"
+ "వాయిస్ శోధన"
+ "వీరితో భాగస్వామ్యం చేయి"
+ "%sతో భాగస్వామ్యం చేయి"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-th/values-th.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-th/values-th.xml
new file mode 100644
index 0000000..e126e07
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-th/values-th.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "นำทางไปหน้าแรก"
+ "นำทางขึ้น"
+ "ตัวเลือกอื่น"
+ "เสร็จสิ้น"
+ "ดูทั้งหมด"
+ "เลือกแอป"
+ "ล้างข้อความค้นหา"
+ "ข้อความค้นหา"
+ "ค้นหา"
+ "ส่งข้อความค้นหา"
+ "ค้นหาด้วยเสียง"
+ "แชร์กับ"
+ "แชร์กับ %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-tl/values-tl.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-tl/values-tl.xml
new file mode 100644
index 0000000..f67e79f
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-tl/values-tl.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Mag-navigate patungo sa home"
+ "Mag-navigate pataas"
+ "Higit pang mga opsyon"
+ "Tapos na"
+ "Tingnan lahat"
+ "Pumili ng isang app"
+ "I-clear ang query"
+ "Query sa paghahanap"
+ "Maghanap"
+ "Isumite ang query"
+ "Paghahanap gamit ang boses"
+ "Ibahagi sa/kay"
+ "Ibahagi sa/kay %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-tr/values-tr.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-tr/values-tr.xml
new file mode 100644
index 0000000..9fe3516
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-tr/values-tr.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Ana ekrana git"
+ "Yukarı git"
+ "Diğer seçenekler"
+ "Tamamlandı"
+ "Tümünü göster"
+ "Bir uygulama seçin"
+ "Sorguyu temizle"
+ "Arama sorgusu"
+ "Ara"
+ "Sorguyu gönder"
+ "Sesli arama"
+ "Şununla paylaş"
+ "%s ile paylaş"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-uk/values-uk.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-uk/values-uk.xml
new file mode 100644
index 0000000..13e26c3
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-uk/values-uk.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Перейти на головний"
+ "Перейти вгору"
+ "Інші опції"
+ "Готово"
+ "Переглянути всі"
+ "Вибрати програму"
+ "Очистити запит"
+ "Пошуковий запит"
+ "Пошук"
+ "Надіслати запит"
+ "Голосовий пошук"
+ "Надіслати через"
+ "Надіслати через %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-ur-rPK/values-ur-rPK.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-ur-rPK/values-ur-rPK.xml
new file mode 100644
index 0000000..c656d55
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-ur-rPK/values-ur-rPK.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "ہوم پر نیویگیٹ کریں"
+ "اوپر نیویگیٹ کریں"
+ "مزید اختیارات"
+ "ہو گیا"
+ "سبھی دیکھیں"
+ "ایک ایپ منتخب کریں"
+ "استفسار صاف کریں"
+ "استفسار تلاش کریں"
+ "تلاش کریں"
+ "استفسار جمع کرائیں"
+ "صوتی تلاش"
+ "اشتراک کریں مع"
+ "%s کے ساتھ اشتراک کریں"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-uz-rUZ/values-uz-rUZ.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-uz-rUZ/values-uz-rUZ.xml
new file mode 100644
index 0000000..6292661
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-uz-rUZ/values-uz-rUZ.xml
@@ -0,0 +1,17 @@
+
+
+
+
+ "Boshiga o‘tish"
+ "Yuqoriga o‘tish"
+ "Qo‘shimcha sozlamalar"
+ "Tayyor"
+ "Barchasini ko‘rish"
+ "Dastur tanlang"
+ "So‘rovni tozalash"
+ "So‘rovni izlash"
+ "Izlash"
+ "So‘rov yaratish"
+ "Ovozli qidiruv"
+ "Bo‘lishish:"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-v11/values-v11.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-v11/values-v11.xml
new file mode 100644
index 0000000..734fb2f
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-v11/values-v11.xml
@@ -0,0 +1,173 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-v12/values-v12.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-v12/values-v12.xml
new file mode 100644
index 0000000..6e5ba69
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-v12/values-v12.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-v14/values-v14.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-v14/values-v14.xml
new file mode 100644
index 0000000..8433f44
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-v14/values-v14.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-v17/values-v17.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-v17/values-v17.xml
new file mode 100644
index 0000000..ec51b3d
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-v17/values-v17.xml
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-v18/values-v18.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-v18/values-v18.xml
new file mode 100644
index 0000000..79ff579
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-v18/values-v18.xml
@@ -0,0 +1,6 @@
+
+
+
+
+ 0px
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-v21/values-v21.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-v21/values-v21.xml
new file mode 100644
index 0000000..9f0083a
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-v21/values-v21.xml
@@ -0,0 +1,277 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-vi/values-vi.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-vi/values-vi.xml
new file mode 100644
index 0000000..8fd629b
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-vi/values-vi.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Điều hướng về trang chủ"
+ "Điều hướng lên trên"
+ "Thêm tùy chọn"
+ "Xong"
+ "Xem tất cả"
+ "Chọn một ứng dụng"
+ "Xóa truy vấn"
+ "Tìm kiếm truy vấn"
+ "Tìm kiếm"
+ "Gửi truy vấn"
+ "Tìm kiếm bằng giọng nói"
+ "Chia sẻ với"
+ "Chia sẻ với %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-w360dp/values-w360dp.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-w360dp/values-w360dp.xml
new file mode 100644
index 0000000..2c8ee7d
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-w360dp/values-w360dp.xml
@@ -0,0 +1,6 @@
+
+
+
+
+ 3
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-w480dp/values-w480dp.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-w480dp/values-w480dp.xml
new file mode 100644
index 0000000..060127b
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-w480dp/values-w480dp.xml
@@ -0,0 +1,9 @@
+
+
+
+
+ true
+
+
+ true
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-w500dp/values-w500dp.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-w500dp/values-w500dp.xml
new file mode 100644
index 0000000..67b3b2f
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-w500dp/values-w500dp.xml
@@ -0,0 +1,6 @@
+
+
+
+
+ 4
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-w600dp/values-w600dp.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-w600dp/values-w600dp.xml
new file mode 100644
index 0000000..aef006d
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-w600dp/values-w600dp.xml
@@ -0,0 +1,7 @@
+
+
+
+
+ 192dip
+ 5
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-w720dp/values-w720dp.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-w720dp/values-w720dp.xml
new file mode 100644
index 0000000..66422e8
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-w720dp/values-w720dp.xml
@@ -0,0 +1,6 @@
+
+
+
+
+ false
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-xlarge-land/values-xlarge-land.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-xlarge-land/values-xlarge-land.xml
new file mode 100644
index 0000000..5041515
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-xlarge-land/values-xlarge-land.xml
@@ -0,0 +1,6 @@
+
+
+
+
+ 256dip
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-xlarge/values-xlarge.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-xlarge/values-xlarge.xml
new file mode 100644
index 0000000..35ed941
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-xlarge/values-xlarge.xml
@@ -0,0 +1,14 @@
+
+
+
+
+ false
+
+
+ 192dip
+ 60%
+ 90%
+ 50%
+ 70%
+ 5
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-zh-rCN/values-zh-rCN.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-zh-rCN/values-zh-rCN.xml
new file mode 100644
index 0000000..495f124
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-zh-rCN/values-zh-rCN.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "转到主屏幕"
+ "转到上一层级"
+ "更多选项"
+ "完成"
+ "查看全部"
+ "选择应用"
+ "清除查询"
+ "搜索查询"
+ "搜索"
+ "提交查询"
+ "语音搜索"
+ "分享方式"
+ "通过%s分享"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-zh-rHK/values-zh-rHK.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-zh-rHK/values-zh-rHK.xml
new file mode 100644
index 0000000..23ab4be
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-zh-rHK/values-zh-rHK.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "瀏覽主頁"
+ "向上瀏覽"
+ "更多選項"
+ "完成"
+ "顯示全部"
+ "選擇應用程式"
+ "清除查詢"
+ "搜尋查詢"
+ "搜尋"
+ "提交查詢"
+ "語音搜尋"
+ "分享對象"
+ "與「%s」分享"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-zh-rTW/values-zh-rTW.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-zh-rTW/values-zh-rTW.xml
new file mode 100644
index 0000000..8e253eb
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-zh-rTW/values-zh-rTW.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "瀏覽首頁"
+ "向上瀏覽"
+ "更多選項"
+ "完成"
+ "查看全部"
+ "選擇應用程式"
+ "清除查詢"
+ "搜尋查詢"
+ "搜尋"
+ "提交查詢"
+ "語音搜尋"
+ "選擇分享對象"
+ "與「%s」分享"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-zu/values-zu.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-zu/values-zu.xml
new file mode 100644
index 0000000..3c8273b
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values-zu/values-zu.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Zulazulela ekhaya"
+ "Zulazulela phezulu"
+ "Izinketho eziningi"
+ "Kwenziwe"
+ "Buka konke"
+ "Khetha uhlelo lokusebenza"
+ "Sula inkinga"
+ "Umbuzo wosesho"
+ "Sesha"
+ "Hambisa umbuzo"
+ "Ukusesha ngezwi"
+ "Yabelana no-"
+ "Yabelana no-%s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values/values.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values/values.xml
new file mode 100644
index 0000000..b32de0f
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values/values.xml
@@ -0,0 +1,1518 @@
+
+
+
+
+
+
+
+
+
+
+ true
+ false
+ true
+
+
+ true
+ false
+ true
+
+
+ false
+
+
+ @android:color/black
+ #7fa87f
+ @android:color/black
+ @android:color/black
+
+
+ @color/material_deep_teal_200
+ @color/material_deep_teal_500
+ #ff424242
+ #ffeeeeee
+ #ff303030
+ #ffeeeeee
+ #80ffffff
+ #80000000
+ @color/bright_foreground_material_light
+ @color/bright_foreground_material_dark
+ @android:color/white
+ @android:color/black
+ #ff5a595b
+ #ffd6d7d7
+ #80bebebe
+ #80323232
+ #ffbebebe
+ #ff323232
+ #6680cbc4
+ #66009688
+ @color/bright_foreground_disabled_material_dark
+ @color/bright_foreground_disabled_material_light
+ @color/material_deep_teal_200
+ @color/material_deep_teal_500
+ #ff37474f
+ #ff263238
+ #ff21272b
+ #ff80cbc4
+ #ff009688
+ #ff000000
+ #ff757575
+ #ff212121
+ #ffefefef
+ #ffffffff
+ #de000000
+ #4Dffffff
+ #39000000
+ #4dffffff
+ #1f000000
+ #b3ffffff
+ #8a000000
+ #36ffffff
+ #24000000
+ #ff616161
+ #ffbdbdbd
+ #ffbdbdbd
+ #fff1f1f1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 16dp
+ 56dp
+ 4dp
+ 16dp
+ 0dp
+ 10dp
+ 6dp
+
+
+ 40dp
+ 48dp
+ 180dp
+
+
+ 5dp
+ -3dp
+ 48dp
+ 48dp
+ 36dp
+
+
+ 48dp
+ @dimen/abc_control_inset_material
+ 6dp
+ 8dp
+ @dimen/abc_control_padding_material
+
+
+ 320dp
+
+
+ 2dp
+ 4dp
+ 4dp
+ 8dp
+ 65%
+ 95%
+ 24dp
+ 18dp
+
+
+ 0.30
+ 0.26
+
+
+ 32dip
+ 8dip
+ 8dip
+ 7dp
+ 4dp
+ 10dp
+
+
+ 16dp
+ @dimen/abc_action_bar_content_inset_material
+
+
+ 296dp
+ 320dip
+ 160dip
+ 3dp
+
+
+ 14sp
+ 14sp
+ 14sp
+ 12sp
+ 34sp
+ 45sp
+ 56sp
+ 112sp
+ 24sp
+ 22sp
+ 18sp
+ 16sp
+ 14sp
+ 16sp
+ 16dp
+ 20sp
+ 20dp
+
+
+ 80%
+ 100%
+ 320dp
+ 320dp
+
+
+ 0.30
+ 0.26
+
+
+ 64dp
+ 64dp
+ 12dp
+
+
+ #3333B5E5
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 220
+ 150
+
+
+ 2
+
+
+ 127
+ 999
+
+
+ Navigate home
+ %1$s, %2$s
+ %1$s, %2$s, %3$s
+ Navigate up
+ More options
+ Done
+ See all
+ Choose an app
+ Search…
+ Clear query
+ Search query
+ Search
+ Submit query
+ Voice search
+ Share with
+ Share with %s
+ Collapse
+ 999+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/support-v4/22.2.0/AndroidManifest.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/support-v4/22.2.0/AndroidManifest.xml
new file mode 100644
index 0000000..f273269
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/support-v4/22.2.0/AndroidManifest.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/support-v4/22.2.0/aapt/AndroidManifest.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/support-v4/22.2.0/aapt/AndroidManifest.xml
new file mode 100644
index 0000000..f273269
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/support-v4/22.2.0/aapt/AndroidManifest.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/support-v4/22.2.0/aidl/android/support/v4/media/MediaMetadataCompat.aidl b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/support-v4/22.2.0/aidl/android/support/v4/media/MediaMetadataCompat.aidl
new file mode 100644
index 0000000..6d36b97
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/support-v4/22.2.0/aidl/android/support/v4/media/MediaMetadataCompat.aidl
@@ -0,0 +1,18 @@
+/* Copyright 2014, The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+** http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+
+package android.support.v4.media;
+
+parcelable MediaMetadataCompat;
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/support-v4/22.2.0/aidl/android/support/v4/media/RatingCompat.aidl b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/support-v4/22.2.0/aidl/android/support/v4/media/RatingCompat.aidl
new file mode 100644
index 0000000..223fd5c
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/support-v4/22.2.0/aidl/android/support/v4/media/RatingCompat.aidl
@@ -0,0 +1,18 @@
+/* Copyright 2014, The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+** http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+
+package android.support.v4.media;
+
+parcelable RatingCompat;
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/support-v4/22.2.0/aidl/android/support/v4/media/session/MediaSessionCompat.aidl b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/support-v4/22.2.0/aidl/android/support/v4/media/session/MediaSessionCompat.aidl
new file mode 100644
index 0000000..d0c2f6f
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/support-v4/22.2.0/aidl/android/support/v4/media/session/MediaSessionCompat.aidl
@@ -0,0 +1,20 @@
+/* Copyright 2014, The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+** http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+
+package android.support.v4.media.session;
+
+parcelable MediaSessionCompat.Token;
+parcelable MediaSessionCompat.QueueItem;
+parcelable MediaSessionCompat.ResultReceiverWrapper;
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/support-v4/22.2.0/aidl/android/support/v4/media/session/ParcelableVolumeInfo.aidl b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/support-v4/22.2.0/aidl/android/support/v4/media/session/ParcelableVolumeInfo.aidl
new file mode 100644
index 0000000..2e77c4f
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/support-v4/22.2.0/aidl/android/support/v4/media/session/ParcelableVolumeInfo.aidl
@@ -0,0 +1,18 @@
+/* Copyright 2014, The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+** http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+
+package android.support.v4.media.session;
+
+parcelable ParcelableVolumeInfo;
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/support-v4/22.2.0/aidl/android/support/v4/media/session/PlaybackStateCompat.aidl b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/support-v4/22.2.0/aidl/android/support/v4/media/session/PlaybackStateCompat.aidl
new file mode 100644
index 0000000..3d4ef59
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/support-v4/22.2.0/aidl/android/support/v4/media/session/PlaybackStateCompat.aidl
@@ -0,0 +1,18 @@
+/* Copyright 2014, The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+** http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+
+package android.support.v4.media.session;
+
+parcelable PlaybackStateCompat;
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/support-v4/22.2.0/annotations.zip b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/support-v4/22.2.0/annotations.zip
new file mode 100644
index 0000000..9693cfa
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/support-v4/22.2.0/annotations.zip differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/support-v4/22.2.0/jars/classes.jar b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/support-v4/22.2.0/jars/classes.jar
new file mode 100644
index 0000000..e02d845
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/support-v4/22.2.0/jars/classes.jar differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/support-v4/22.2.0/jars/libs/internal_impl-22.2.0.jar b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/support-v4/22.2.0/jars/libs/internal_impl-22.2.0.jar
new file mode 100644
index 0000000..d3c0945
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/support-v4/22.2.0/jars/libs/internal_impl-22.2.0.jar differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/incremental/aidl/androidTest/debug/dependency.store b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/incremental/aidl/androidTest/debug/dependency.store
new file mode 100644
index 0000000..8b8400d
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/incremental/aidl/androidTest/debug/dependency.store differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/incremental/aidl/debug/dependency.store b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/incremental/aidl/debug/dependency.store
new file mode 100644
index 0000000..8b8400d
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/incremental/aidl/debug/dependency.store differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/incremental/mergeAssets/androidTest/debug/merger.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/incremental/mergeAssets/androidTest/debug/merger.xml
new file mode 100644
index 0000000..efd88e4
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/incremental/mergeAssets/androidTest/debug/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/incremental/mergeAssets/debug/merger.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/incremental/mergeAssets/debug/merger.xml
new file mode 100644
index 0000000..44b78aa
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/incremental/mergeAssets/debug/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/incremental/mergeResourcesandroidTest/debug/merger.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/incremental/mergeResourcesandroidTest/debug/merger.xml
new file mode 100644
index 0000000..35a8d43
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/incremental/mergeResourcesandroidTest/debug/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/incremental/mergeResourcesdebug/merger.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/incremental/mergeResourcesdebug/merger.xml
new file mode 100644
index 0000000..b9540b5
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/incremental/mergeResourcesdebug/merger.xml
@@ -0,0 +1,1340 @@
+
+20dp14sptrue56dp@android:color/black8dp#ff2632382dp16dpSee all8dp#8a000000Share with %s48dp#1f000000Choose an app999#36ffffff@color/material_deep_teal_200#6680cbc4#ff5a595bfalse@dimen/abc_control_padding_materialtrue@android:color/black#80fffffffalse10dpDone#ffffffff320dp4dp28dipSearch#ff616161#3900000064dp@android:color/white7dp64dp0.26#66009688#de00000012sp@color/material_deep_teal_20048dp#ff80cbc436dpSubmit query320dip14sp@color/bright_foreground_disabled_material_light#ffeeeeee48dp#ff00000056sp14sp95%16sp999+Collapse#ffd6d7d7-3dp%1$s, %2$s, %3$s8dip0.3080%4dp#7fa87f#ff3030305dp#4dffffff296dp@color/bright_foreground_material_light#24000000#80bebebe180dp10dp#ffeeeeee12714sp@dimen/abc_action_bar_content_inset_material40dp#ff212121@android:color/black#ffefefef22sp34sp16sp24sp12dpSearch query#ff009688#3333B5E56dpNavigate up3dp#80323232#ffbdbdbdMore options320dp0dp220100%320dp20sp15024dp#4Dffffff@color/bright_foreground_material_dark32dipNavigate home0.30112sp16dp0.2616dp#ff323232160dip#fff1f1f1#b3ffffff4dp#ff21272b16dpShare with@color/material_deep_teal_500%1$s, %2$s45sp@android:color/black#ffbebebe#ff757575Voice searchfalse#80000000@color/material_deep_teal_50018sp18dp#ff42424248dp65%Clear querytrue#ffbdbdbd4dp@dimen/abc_control_inset_material#ff37474f6dptrueSearch…@color/bright_foreground_disabled_material_dark"Soeknavraag""Sien alles""Deel met""Kies \'n program""Soek""Stemsoektog""Deel met %s""Navigeer tuis""Nog opsies""Vee navraag uit""Klaar""Dien navraag in""Navigeer op""መጠይቅ ያስረክቡ""የድምፅ ፍለጋ""ከሚከተለው ጋር ያጋሩ""ወደ መነሻ ይዳስሱ""መተግበሪያ ይምረጡ""መጠይቅ አጽዳ""ተጨማሪ አማራጮች""የፍለጋ ጥያቄ""ወደ ላይ ይዳስሱ""ከ%s ጋር ያጋሩ""ተከናውኗል""ፍለጋ""ሁሉንም ይመልከቱ""محو طلب البحث""خيارات إضافية""التنقل إلى أعلى""تم""إرسال طلب البحث""طلب البحث""اختيار تطبيق""التنقل إلى الشاشة الرئيسية""مشاركة مع %s""البحث الصوتي""بحث""مشاركة مع""عرض الكل""Търсене""Още опции""Заявка за търсене""Изчистване на заявката""Готово""Споделяне със: %s""Изпращане на заявката""Изберете приложение""Гласово търсене""Придвижване нагоре""Придвижване към „Начало“""Вижте всички""Споделяне със:""হোম এ নেভিগেট করুন""একটি অ্যাপ্লিকেশান চয়ন করুন""উপরের দিকে নেভিগেট করুন""ক্যোয়ারী সাফ করুন""এর সাথে ভাগ করুন""ক্যোয়ারী জমা দিন""%s এর সাথে ভাগ করুন""ক্যোয়ারী অনুসন্ধান করুন""আরো বিকল্প""সবগুলো দেখুন""সম্পন্ন হয়েছে""অনুসন্ধান করুন""ভয়েস অনুসন্ধান""Selecciona una aplicació""Esborra la consulta""Envia la consulta""Navega cap a dalt""Comparteix amb""Navega a la pàgina d\'inici""Mostra\'ls tots""Comparteix amb %s""Consulta de cerca""Cerca""Fet""Cerca per veu""Més opcions""Sdílet pomocí %s""Hledat""Zobrazit vše""Hlasové vyhledávání""Přejít na plochu""Odeslat dotaz""Sdílet pomocí""Hotovo""Více možností""Smazat dotaz""Přejít nahoru""Vyhledávací dotaz""Vybrat aplikaci""Vælg en app""Indsend forespørgslen""Ryd forespørgslen""Søgeforespørgsel""Naviger hjem""Se alle""Søg""Del med""Naviger op""Luk""Del med %s""Flere muligheder""Stemmesøgning""Sprachsuche""Weitere Optionen""Suchanfrage löschen""Suchanfrage""Alle ansehen""Fertig""Zur Startseite""Freigeben für""Suchen""Freigeben für %s""Nach oben""App auswählen""Suchanfrage senden""Φωνητική αναζήτηση""Κοινή χρήση με %s""Υποβολή ερωτήματος""Κοινή χρήση με""Επιλέξτε κάποια εφαρμογή""Διαγραφή ερωτήματος""Πλοήγηση προς τα επάνω""Περισσότερες επιλογές""Τέλος""Πλοήγηση στην αρχική σελίδα""Ερώτημα αναζήτησης""Προβολή όλων""Αναζήτηση""Voice search""Submit query""See all""Clear query""Navigate home""Finished""More options""Search""Search query""Navigate up""Share with""Choose an app""Share with %s""Navigate home""Finished""See all""Voice search""Search""Choose an app""Clear query""Navigate up""Share with %s""More options""Submit query""Share with""Search query""Buscar""Ver todo""Consulta""Borrar consulta""Seleccionar una aplicación""Enviar consulta""Ir a la pantalla de inicio""Compartir con %s""Desplazarse hacia arriba""Búsqueda por voz""Listo""Más opciones""Compartir con""Navegar a la página principal""Elige una aplicación.""Navegar hacia arriba""Búsqueda por voz""Consulta de búsqueda""Enviar consulta""Compartir con""Listo""Compartir con %s""Más opciones""Eliminar la consulta""Ver todo""Búsqueda""Päringu tühistamine""Navigeerimine avaekraanile""Valmis""Jagamine kasutajaga %s""Päringu esitamine""Jagamine:""Rohkem valikuid""Otsingupäring""Kuva kõik""Otsing""Valige rakendus""Navigeerimine üles""Häälotsing""Bilatu""Joan orri nagusira""Garbitu kontsulta""Partekatu hauekin""Aukera gehiago""Partekatu %s erabiltzailearekin""Bilaketa-kontsulta""Bidali kontsulta""Ahots bidezko bilaketa""Joan gora""Eginda""Aukeratu aplikazio bat""Ikusi guztiak""اشتراکگذاری با""انتخاب برنامه""ارسال عبارت جستجو""پیمایش به صفحه اصلی""گزینههای بیشتر""جستجو""جستجوی شفاهی""عبارت جستجو""اشتراکگذاری با %s""پیمایش به بالا""مشاهده همه""انجام شد""پاک کردن عبارت جستجو""Valmis""Lähetä kysely""Jakaminen:""Siirry ylös""Siirry etusivulle""Valitse sovellus""Lisää""Näytä kaikki""Haku""Tyhjennä kysely""Puhehaku""Hakulauseke""Jakaminen: %s""Tout afficher""Partager avec""Rechercher""Sélectionner une application""Envoyer la requête""Revenir à l\'accueil""Plus d\'options""OK""Requête de recherche""Revenir en haut de la page""Partager avec %s""Effacer la requête""Recherche vocale""Revenir à l\'accueil""Partager avec %s""Terminé""Sélectionnez une application""Rechercher""Recherche vocale""Partager avec""Voir toutes les chaînes""Effacer la requête""Envoyer la requête""Requête de recherche""Plus d\'options""Revenir en haut de la page""Consulta de busca""Buscar""Compartir con %s""Desprazarse cara arriba""Borrar consulta""Feito""Enviar consulta""Máis opcións""Compartir con""Ver todas""Ir á páxina de inicio""Busca de voz""Escoller unha aplicación"54dip"पूर्ण""ध्वनि खोज""क्वेरी साफ़ करें""%s के साथ साझा करें""अधिक विकल्प""कोई एप्लिकेशन चुनें""सभी देखें""खोज क्वेरी""मुखपृष्ठ पर नेविगेट करें""खोजें""इसके द्वारा साझा करें""ऊपर नेविगेट करें""क्वेरी सबमिट करें""Gotovo""Prikaži sve""Odabir aplikacije""Idi na početnu""Pretraživanje""Dodatne opcije""Glasovno pretraživanje""Dijeljenje sa: %s""Upit za pretraživanje""Dijeljenje sa""Pošalji upit""Idi gore""Izbriši upit""Lekérdezés küldése""Ugrás a főoldalra""Lekérdezés törlése""Megosztás a következővel: %s""Hangalapú keresés""Kész""További lehetőségek""Megosztás a következővel:""Összes megtekintése""Felfelé mozgatás""Válasszon ki egy alkalmazást""Keresés""Keresési lekérdezés""Ուղարկել հարցումը""Տարածել""Տեսնել բոլորը""Այլ ընտրանքներ""Ուղղվել տուն""Կատարված է""Որոնել""Մաքրել հարցումը""Ձայնային որոնում""Ուղղվել վերև""Որոնման հարցում""Ընտրել ծրագիր""Տարածել ըստ %s""Navigasi ke beranda""Lihat semua""Bagikan dengan %s""Navigasi naik""Telusuri""Bagikan dengan""Opsi lain""Pilih aplikasi""Penelusuran suara""Selesai""Hapus kueri""Kirim kueri""Kueri penelusuran""Leita""Fara heim""Leitarfyrirspurn""Deila með""Raddleit""Fleiri valkostir""Hreinsa fyrirspurn""Deila með %s""Senda fyrirspurn""Sjá allt""Lokið""Fara upp""Veldu forrit""Scegli un\'applicazione""Ricerca vocale""Cancella query""Altre opzioni""Fine""Condividi con %s""Visualizza tutte""Vai in alto""Cerca""Invia query""Condividi con""Query di ricerca""Vai alla home page""מחק שאילתה""חפש""בחר אפליקציה""ראה הכול""שתף עם %s""עוד אפשרויות""בוצע""שלח שאילתה""שאילתת חיפוש""נווט לדף הבית""חיפוש קולי""שתף עם""נווט למעלה""アプリの選択""検索キーワードを削除""共有""検索キーワードを送信""上へ移動""%sと共有""すべて表示""その他のオプション""検索キーワード""検索""完了""音声検索""ホームへ移動""მოთხოვნის გადაგზავნა""ხმოვანი ძიება""მოთხოვნის გასუფთავება""გაზიარება:""მეტი ვარიანტები""%s-თან გაზიარება""მთავარზე ნავიგაცია""დასრულდა""ძიება""ზემოთ ნავიგაცია""ყველას ნახვა""აპის არჩევა""ძიების მოთხოვნა""Сұрақты іздеу""Іздеу""Орындалды""%s бөлісу""Дауыс арқылы іздеу""Жоғары қозғалу""Сұрақты жіберу""Бөлісу""Сұрақты жою""Басқа опциялар""Қолданбаны таңдау""Барлығын көру""Негізгі бетте қозғалу""ជម្រើសច្រើនទៀត""រួចរាល់""សម្អាតសំណួរ""ដាក់ស្នើសំណួរ""ស្វែងរកសំណួរ""ចែករំលែកជាមួយ %s""មើលទាំងអស់""ការស្វែងរកសំឡេង""រកមើលឡើងលើ""ចែករំលែកជាមួយ""រកមើលទៅដើម""ស្វែងរក""ជ្រើសកម្មវិធី""ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ""ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ""ಹುಡುಕು""ಮುಗಿದಿದೆ""ಎಲ್ಲವನ್ನೂ ನೋಡಿ""ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ""%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ""ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು""ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ""ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ""ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು""ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು""ಧ್ವನಿ ಹುಡುಕಾಟ""옵션 더보기""검색""%s와(과) 공유""검색어""위로 탐색""검색어 삭제""음성 검색""검색어 보내기""공유 대상""완료""홈 탐색""전체 보기""앱 선택""Бөлүшүү""Издөө талаптары""%s аркылуу бөлүшүү""Колдонмо тандоо""Издөө""Үйгө багыттоо""Үн аркылуу издөө""Бардыгын көрүү""Талаптарды тазалоо""Талап жөнөтүү""Даяр""Көбүрөөк мүмкүнчүлүктөр""Жогору"32dp14dptrue48dp12dp0dptrue60%60%true192dip90%90%4true440dp"ສົ່ງການຊອກຫາ""ໂຕເລືອກອື່ນ""ແບ່ງປັນກັບ %s""ລຶບຂໍ້ຄວາມຊອກຫາ""ຊອກຫາດ້ວຍສຽງ""ຂຶ້ນເທິງ""ເລືອກແອັບຯ""ຊອກຫາ""ຊອກຫາ""ແບ່ງປັນກັບ""ກັບໄປໜ້າຫຼັກ""ເບິ່ງທັງຫມົດ""ແລ້ວໆ""Išvalyti užklausą""Pasirinkti programą""Pateikti užklausą""Bendrinti naudojant „%s“""Eiti į viršų""Bendrinti naudojant""Paieška balsu""Atlikta""Paieškos užklausa""Eiti į pagrindinį puslapį""Paieška""Daugiau parinkčių""Peržiūrėti viską""Skatīt visu""Izvēlieties lietotni""Pārvietoties uz sākuma ekrānu""Meklēt""Meklēšana ar balsi""Gatavs""Meklēšanas vaicājums""Kopīgot ar:""Iesniegt vaicājumu""Vairāk opciju""Pārvietoties augšup""Notīrīt vaicājumu""Kopīgot ar %s""Пребарај барање""Движи се нагоре""Поднеси барање""Види ги сите""Избери апликација""Повеќе опции""Пребарај""Сподели со""Гласовно пребарување""Готово""Движи се кон дома""Исчисти барање""ഇവരുമായി പങ്കിടുക""തിരയൽ""തിരയൽ അന്വേഷണം""%s എന്നതുമായി പങ്കിടുക""മുകളിലേക്ക് നാവിഗേറ്റുചെയ്യുക""എല്ലാം കാണുക""ഒരു അപ്ലിക്കേഷൻ തിരഞ്ഞെടുക്കുക""കൂടുതല് ഓപ്ഷനുകള്""പൂർത്തിയാക്കി""വോയ്സ് തിരയൽ""ഹോമിലേക്ക് നാവിഗേറ്റുചെയ്യുക""അന്വേഷണം മായ്ക്കുക""അന്വേഷണം സമർപ്പിക്കുക""Хайх""Нүүр хуудас руу шилжих""Нэмэлт сонголтууд""Бүгдийг харах""Хайх асуулга""Хуваалцах""%s-тай хуваалцах""Асуулгыг цэвэрлэх""Апп сонгох""Дууссан""Дуут хайлт""Дээш шилжих""Асуулгыг илгээх""क्वेरी स्पष्ट करा""शोध""%s सह सामायिक करा""सर्व पहा""एक अॅप निवडा""वर नेव्हिगेट करा""पूर्ण झाले""क्वेरी सबमिट करा""शोध क्वेरी""यांच्यासह सामायिक करा""मुख्यपृष्ठ नेव्हिगेट करा""व्हॉइस शोध""अधिक पर्याय""Pilih apl""Selesai""Lagi pilihan""Lihat semua""Carian suara""Kongsi dengan %s""Navigasi skrin utama""Navigasi ke atas""Cari""Kongsi dengan""Pertanyaan carian""Serah pertanyaan""Kosongkan pertanyaan""ပြီးဆုံးပါပြီ""အပလီကေးရှင်း တစ်ခုခုကို ရွေးချယ်ပါ""ရှာဖွေစရာ အချက်အလက်ကို အတည်ပြုရန်""အားလုံးကို ကြည့်ရန်""အပေါ်သို့သွားရန်""ရှာစရာ အချက်အလက်များ ရှင်းလင်းရန်""%s ကို မျှဝေပါရန်""ပိုမိုရွေးချယ်စရာများ""ရှာစရာ အချက်အလက်နေရာ""မျှဝေဖို့ ရွေးပါ""ရှာဖွေရန်""အသံဖြင့် ရှာဖွေခြင်း""မူလနေရာကို သွားရန်""Flere alternativer""Del med %s""Del med""Se alle""Slett søket""Søk""Søkeord""Velg en app""Gå til startsiden""Ferdig""Gå opp""Utfør søket""Talesøk""भ्वाइस खोजी""एउटा अनुप्रयोग छान्नुहोस्""जिज्ञासा पेस गर्नुहोस्""प्रश्न हटाउनुहोस्""जिज्ञासाको खोज गर्नुहोस्""साझेदारी गर्नुहोस्...""%s सँग साझेदारी गर्नुहोस्""सबै हेर्नुहोस्""सम्पन्न भयो""खोज्नुहोस्""गृह खोज्नुहोस्""माथि खोज्नुहोस्""थप विकल्पहरू""Meer opties""Gereed""Navigeren naar startpositie""Alles weergeven""Gesproken zoekopdracht""Zoeken""Een app selecteren""Delen met %s""Zoekopdracht""Delen met""Zoekopdracht wissen""Zoekopdracht verzenden""Omhoog navigeren""Udostępnij dla %s""Wyczyść zapytanie""Wyszukiwanie głosowe""Więcej opcji""Udostępnij dla""Gotowe""Szukaj""Przejdź do strony głównej""Wybierz aplikację""Zobacz wszystkie""Wyszukiwane hasło""Wyślij zapytanie""Przejdź wyżej"false"Limpar consulta""Mais opções""Compartilhar com %s""Enviar consulta""Navegar para cima""Concluído""Consulta de pesquisa""Navegar para a página inicial""Ver tudo""Compartilhar com""Pesquisar""Pesquisa por voz""Selecione um aplicativo""Enviar consulta""Consulta de pesquisa""Partilhar com %s""Mais opções""Partilhar com""Escolher uma aplicação""Concluído""Navegar para a página inicial""Pesquisar""Limpar consulta""Ver tudo""Pesquisa por voz""Navegar para cima""Mai multe opțiuni""Căutați""Afișați-le pe toate""Interogare de căutare""Navigați la ecranul de pornire""Alegeți o aplicaţie""Terminat""Ștergeți interogarea""Trimiteți la""Căutare vocală""Trimiteți interogarea""Trimiteți la %s""Navigați în sus""Поисковый запрос""Отправить запрос""Открыть доступ пользователю %s""Перейти на главный экран""Показать все""Голосовой поиск""Открыть доступ""Выбрать приложение""Поиск""Удалить запрос""Перейти вверх""Готово""Другие параметры""අවසාන වූ""සෙවුම් විමසුම""ඉහලට සංචාලනය කරන්න""විමසුම යොමු කරන්න""යෙදුමක් තෝරන්න""විමසුම හිස් කරන්න""සියල්ල බලන්න""සමඟ බෙදාගන්න""%s සමඟ බෙදාගන්න""ගෙදරට සංචාලනය කරන්න""සෙවීම""තවත් විකල්ප""හඬ සෙවීම""Vymazať dopyt""Hľadať""Prejsť na plochu""Zobraziť všetko""Zdieľať pomocou""Hlasové vyhľadávanie""Vyhľadávací dopyt""Zdieľať pomocou %s""Ďalšie možnosti""Prejsť hore""Odoslať dopyt""Zvoľte aplikáciu""Hotovo""Krmarjenje navzgor""Deljenje z:""Iskanje""Deljenje z""Krmarjenje domov""Glasovno iskanje""Izbira aplikacije""Iskalna poizvedba""Končano""Pošiljanje poizvedbe""Pokaži vse""Izbris poizvedbe""Več možnosti""Одлазак на Почетну""Избор апликације""Дели са апликацијом %s""Још опција""Слање упита""Гласовна претрага""Кретање нагоре""Брисање упита""Претрага""Готово""Дели са""Упит за претрагу""Прикажи све""Dela med""Visa alla""Sök""Ta bort frågan""Navigera uppåt""Fler alternativ""Dela med %s""Klart""Röstsökning""Sökfråga""Skicka fråga""Välj en app""Visa startsidan""Tafuta""Shiriki na:""Shiriki na %s""Hoja ya utafutaji""Chagua programu""Futa hoja""Nenda mwanzo""Wasilisha hoja""Tafuta kwa kutamka""Nenda juu""Nimemaliza""Chaguo zaidi""Angalia zote"64dp8dp24dp580dp4dp18dp16dp20dp5"முடிந்தது""தேடல் வினவல்""மேலே வழிசெலுத்து""%s உடன் பகிர்""இதனுடன் பகிர்""முகப்பிற்கு வழிசெலுத்து""பயன்பாட்டைத் தேர்வுசெய்க""மேலும் விருப்பங்கள்""வினவலை அழி""வினவலைச் சமர்ப்பி""குரல் தேடல்""தேடு""எல்லாம் காட்டு""ప్రశ్నను క్లియర్ చేయి""వీరితో భాగస్వామ్యం చేయి""పైకి నావిగేట్ చేయండి""అనువర్తనాన్ని ఎంచుకోండి""వాయిస్ శోధన""శోధించు""%sతో భాగస్వామ్యం చేయి""అన్నీ చూడండి""పూర్తయింది""మరిన్ని ఎంపికలు""హోమ్కు నావిగేట్ చేయండి""ప్రశ్నని సమర్పించు""ప్రశ్న శోధించండి""ค้นหาด้วยเสียง""เสร็จสิ้น""นำทางไปหน้าแรก""แชร์กับ""แชร์กับ %s""ส่งข้อความค้นหา""นำทางขึ้น""ตัวเลือกอื่น""ดูทั้งหมด""ข้อความค้นหา""ค้นหา""เลือกแอป""ล้างข้อความค้นหา""Ibahagi sa/kay %s""Tapos na""Mag-navigate patungo sa home""Paghahanap gamit ang boses""Ibahagi sa/kay""Pumili ng isang app""Mag-navigate pataas""Isumite ang query""Maghanap""Tingnan lahat""I-clear ang query""Higit pang mga opsyon""Query sa paghahanap""Bir uygulama seçin""Sorguyu temizle""Şununla paylaş""Yukarı git""Diğer seçenekler""Tamamlandı""Sorguyu gönder""%s ile paylaş""Arama sorgusu""Sesli arama""Tümünü göster""Ana ekrana git""Ara""Пошуковий запит""Вибрати програму""Пошук""Переглянути всі""Голосовий пошук""Надіслати через %s""Перейти на головний""Інші опції""Очистити запит""Готово""Надіслати запит""Надіслати через""Перейти вгору""استفسار صاف کریں""استفسار جمع کرائیں""اشتراک کریں مع""اوپر نیویگیٹ کریں""ہوم پر نیویگیٹ کریں""صوتی تلاش""مزید اختیارات""%s کے ساتھ اشتراک کریں""استفسار تلاش کریں""ایک ایپ منتخب کریں""سبھی دیکھیں""تلاش کریں""ہو گیا""So‘rovni izlash""Yuqoriga o‘tish""So‘rovni tozalash""Tayyor""Ovozli qidiruv""Dastur tanlang""Boshiga o‘tish""Izlash""So‘rov yaratish""Qo‘shimcha sozlamalar""Barchasini ko‘rish""Bo‘lishish:"0px"Gửi truy vấn""Xóa truy vấn""Chọn một ứng dụng""Chia sẻ với %s""Thêm tùy chọn""Xong""Tìm kiếm bằng giọng nói""Xem tất cả""Tìm kiếm""Tìm kiếm truy vấn""Chia sẻ với""Điều hướng lên trên""Điều hướng về trang chủ"3truetrue45192dipfalse70%60%192dipfalse50%590%256dip"提交查询""转到上一层级""更多选项""语音搜索""转到主屏幕""分享方式""搜索""选择应用""查看全部""搜索查询""完成""清除查询""通过%s分享""清除查詢""更多選項""提交查詢""與「%s」分享""向上瀏覽""語音搜尋""顯示全部""選擇應用程式""搜尋""完成""搜尋查詢""分享對象""瀏覽主頁""提交查詢""選擇分享對象""查看全部""選擇應用程式""清除查詢""更多選項""與「%s」分享""搜尋""搜尋查詢""語音搜尋""向上瀏覽""瀏覽首頁""完成""Hambisa umbuzo""Yabelana no-%s""Izinketho eziningi""Kwenziwe""Umbuzo wosesho""Zulazulela phezulu""Sula inkinga""Sesha""Yabelana no-""Ukusesha ngezwi""Khetha uhlelo lokusebenza""Zulazulela ekhaya""Buka konke"16dp16dpHello World!SettingsParse Starter ProjectuRDoLRe6epHSgInvqHcAPnl2h1IWjoZxRnA7RiAVEGmUWB7VvrlWfvnjxhC9lBwsoN4FnoMeklYoUJ3H64dp
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/manifest/androidTest/debug/AndroidManifest.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/manifest/androidTest/debug/AndroidManifest.xml
new file mode 100644
index 0000000..d6ec0e9
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/manifest/androidTest/debug/AndroidManifest.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/manifests/full/debug/AndroidManifest.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/manifests/full/debug/AndroidManifest.xml
new file mode 100644
index 0000000..534fab5
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/manifests/full/debug/AndroidManifest.xml
@@ -0,0 +1,80 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/pre-dexed/debug/bolts-tasks-1.3.0-d37ca15e74654697192addf850c73c2526a3b14b.jar b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/pre-dexed/debug/bolts-tasks-1.3.0-d37ca15e74654697192addf850c73c2526a3b14b.jar
new file mode 100644
index 0000000..a43be0b
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/pre-dexed/debug/bolts-tasks-1.3.0-d37ca15e74654697192addf850c73c2526a3b14b.jar differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/pre-dexed/debug/classes-968f7e383418849296d7e712ea7ed54730456bab.jar b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/pre-dexed/debug/classes-968f7e383418849296d7e712ea7ed54730456bab.jar
new file mode 100644
index 0000000..c8a4634
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/pre-dexed/debug/classes-968f7e383418849296d7e712ea7ed54730456bab.jar differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/pre-dexed/debug/classes-d890e3efd863e136498ed53ae91e22ecc0bddf59.jar b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/pre-dexed/debug/classes-d890e3efd863e136498ed53ae91e22ecc0bddf59.jar
new file mode 100644
index 0000000..b431879
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/pre-dexed/debug/classes-d890e3efd863e136498ed53ae91e22ecc0bddf59.jar differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/pre-dexed/debug/internal_impl-22.2.0-74b482df276ce01d8fa9cc23c2fdeaca3a56629e.jar b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/pre-dexed/debug/internal_impl-22.2.0-74b482df276ce01d8fa9cc23c2fdeaca3a56629e.jar
new file mode 100644
index 0000000..3394e90
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/pre-dexed/debug/internal_impl-22.2.0-74b482df276ce01d8fa9cc23c2fdeaca3a56629e.jar differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/pre-dexed/debug/parse-android-1.12.0-c2ade73c87d0889f67353574a6fb33974757dc1c.jar b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/pre-dexed/debug/parse-android-1.12.0-c2ade73c87d0889f67353574a6fb33974757dc1c.jar
new file mode 100644
index 0000000..6af770b
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/pre-dexed/debug/parse-android-1.12.0-c2ade73c87d0889f67353574a6fb33974757dc1c.jar differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/pre-dexed/debug/support-annotations-22.2.0-d4b21d3be5ae31cb11bdf18e10b8bc2f5541eb0a.jar b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/pre-dexed/debug/support-annotations-22.2.0-d4b21d3be5ae31cb11bdf18e10b8bc2f5541eb0a.jar
new file mode 100644
index 0000000..de25f7e
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/pre-dexed/debug/support-annotations-22.2.0-d4b21d3be5ae31cb11bdf18e10b8bc2f5541eb0a.jar differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/anim/abc_fade_in.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/anim/abc_fade_in.xml
new file mode 100644
index 0000000..1642edd
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/anim/abc_fade_in.xml
@@ -0,0 +1,20 @@
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/anim/abc_fade_out.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/anim/abc_fade_out.xml
new file mode 100644
index 0000000..fc11df3
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/anim/abc_fade_out.xml
@@ -0,0 +1,20 @@
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/anim/abc_grow_fade_in_from_bottom.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/anim/abc_grow_fade_in_from_bottom.xml
new file mode 100644
index 0000000..c48c3ba
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/anim/abc_grow_fade_in_from_bottom.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/anim/abc_popup_enter.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/anim/abc_popup_enter.xml
new file mode 100644
index 0000000..a977a61
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/anim/abc_popup_enter.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/anim/abc_popup_exit.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/anim/abc_popup_exit.xml
new file mode 100644
index 0000000..1d51b9c
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/anim/abc_popup_exit.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/anim/abc_shrink_fade_out_from_bottom.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/anim/abc_shrink_fade_out_from_bottom.xml
new file mode 100644
index 0000000..f6e5944
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/anim/abc_shrink_fade_out_from_bottom.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/anim/abc_slide_in_bottom.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/anim/abc_slide_in_bottom.xml
new file mode 100644
index 0000000..cef7ea7
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/anim/abc_slide_in_bottom.xml
@@ -0,0 +1,20 @@
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/anim/abc_slide_in_top.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/anim/abc_slide_in_top.xml
new file mode 100644
index 0000000..bab2f47
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/anim/abc_slide_in_top.xml
@@ -0,0 +1,19 @@
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/anim/abc_slide_out_bottom.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/anim/abc_slide_out_bottom.xml
new file mode 100644
index 0000000..a9d8f10
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/anim/abc_slide_out_bottom.xml
@@ -0,0 +1,19 @@
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/anim/abc_slide_out_top.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/anim/abc_slide_out_top.xml
new file mode 100644
index 0000000..393d461
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/anim/abc_slide_out_top.xml
@@ -0,0 +1,19 @@
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_dark.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_dark.xml
new file mode 100644
index 0000000..9fcc232
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_dark.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_light.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_light.xml
new file mode 100644
index 0000000..2a37e0b
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/color-v11/abc_background_cache_hint_selector_material_light.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/color/abc_background_cache_hint_selector_material_dark.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/color/abc_background_cache_hint_selector_material_dark.xml
new file mode 100644
index 0000000..94c59ac
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/color/abc_background_cache_hint_selector_material_dark.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/color/abc_background_cache_hint_selector_material_light.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/color/abc_background_cache_hint_selector_material_light.xml
new file mode 100644
index 0000000..5c53b7b
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/color/abc_background_cache_hint_selector_material_light.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_dark.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_dark.xml
new file mode 100644
index 0000000..1f2eab6
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_dark.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_light.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_light.xml
new file mode 100644
index 0000000..c400bbb
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/color/abc_primary_text_disable_only_material_light.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/color/abc_primary_text_material_dark.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/color/abc_primary_text_material_dark.xml
new file mode 100644
index 0000000..eac3f71
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/color/abc_primary_text_material_dark.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/color/abc_primary_text_material_light.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/color/abc_primary_text_material_light.xml
new file mode 100644
index 0000000..dde40ad
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/color/abc_primary_text_material_light.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/color/abc_search_url_text.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/color/abc_search_url_text.xml
new file mode 100644
index 0000000..dc8efca
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/color/abc_search_url_text.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/color/abc_secondary_text_material_dark.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/color/abc_secondary_text_material_dark.xml
new file mode 100644
index 0000000..d1022cd
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/color/abc_secondary_text_material_dark.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/color/abc_secondary_text_material_light.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/color/abc_secondary_text_material_light.xml
new file mode 100644
index 0000000..43b745f
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/color/abc_secondary_text_material_light.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/color/switch_thumb_material_dark.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/color/switch_thumb_material_dark.xml
new file mode 100644
index 0000000..6644b93
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/color/switch_thumb_material_dark.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/color/switch_thumb_material_light.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/color/switch_thumb_material_light.xml
new file mode 100644
index 0000000..de993a8
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/color/switch_thumb_material_light.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png
new file mode 100644
index 0000000..f534f58
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 0000000..cbc36f6
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 0000000..c31cf86
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 0000000..90e9c39
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 0000000..fb38e86
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png
new file mode 100644
index 0000000..d8f877f
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png
new file mode 100644
index 0000000..cc4c713
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 0000000..38a55f9
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 0000000..50a350f
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png
new file mode 100644
index 0000000..1e0d4c3
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 0000000..7abd12b
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_clear_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_clear_mtrl_alpha.png
new file mode 100644
index 0000000..cc83d7b
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_clear_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png
new file mode 100644
index 0000000..9240aed
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png
new file mode 100644
index 0000000..f35df93
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 0000000..93577af
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 0000000..02c783f
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png
new file mode 100644
index 0000000..ef8c2b0
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 0000000..2bd4fc1
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 0000000..3a7e98a
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 0000000..4e921f0
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png
new file mode 100644
index 0000000..140c1b2
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png
new file mode 100644
index 0000000..4f175a0
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png
new file mode 100644
index 0000000..3becd3a
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_focused_holo.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_focused_holo.9.png
new file mode 100644
index 0000000..7ffeb1d
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_focused_holo.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_longpressed_holo.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_longpressed_holo.9.png
new file mode 100644
index 0000000..658b694
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_longpressed_holo.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_pressed_holo_dark.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_pressed_holo_dark.9.png
new file mode 100644
index 0000000..c10a7bf
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_pressed_holo_dark.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_pressed_holo_light.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_pressed_holo_light.9.png
new file mode 100644
index 0000000..d290ccb
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_pressed_holo_light.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png
new file mode 100644
index 0000000..e66354d
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png
new file mode 100644
index 0000000..dc1616c
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png
new file mode 100644
index 0000000..2bf5a21
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_popup_background_mtrl_mult.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_popup_background_mtrl_mult.9.png
new file mode 100644
index 0000000..2db7619
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_popup_background_mtrl_mult.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 0000000..8b21cc9
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 0000000..09edb6b
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 0000000..43fd9ee
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_text_cursor_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_text_cursor_mtrl_alpha.9.png
new file mode 100644
index 0000000..74ef96a
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_text_cursor_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png
new file mode 100644
index 0000000..2cb0180
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png
new file mode 100644
index 0000000..92ad582
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png
new file mode 100644
index 0000000..42e291e
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png
new file mode 100644
index 0000000..18dc90c
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 0000000..e2414d4
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 0000000..8e6b11f
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 0000000..4e8ffd4
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 0000000..d8cb2d6
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 0000000..fba9cdb
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 0000000..12210f3
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 0000000..03f5115
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 0000000..9a97bd2
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 0000000..316b535
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 0000000..be4b613
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 0000000..514a08c
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 0000000..c0f4d7f
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 0000000..0ff2b9f
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 0000000..a988bff
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 0000000..3270585
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 0000000..4398d0a
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 0000000..60d647d
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 0000000..42ee760
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 0000000..241df42
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 0000000..5da32c3
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png
new file mode 100644
index 0000000..b7d0119
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 0000000..441869a
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 0000000..3a6dfe5
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 0000000..bbd2930
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 0000000..a0b4fda
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png
new file mode 100644
index 0000000..2677759
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png
new file mode 100644
index 0000000..a3f43bd
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 0000000..32cae24
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 0000000..8ea96f4
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png
new file mode 100644
index 0000000..d81b526
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 0000000..01316d7
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_clear_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_clear_mtrl_alpha.png
new file mode 100644
index 0000000..329aabe
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_clear_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png
new file mode 100644
index 0000000..84a05d3
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png
new file mode 100644
index 0000000..74e80d6
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 0000000..eb051f7
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 0000000..0b6e858
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png
new file mode 100644
index 0000000..d7c003e
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 0000000..e3d41d4
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 0000000..c33227f
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 0000000..d9352a2
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png
new file mode 100644
index 0000000..4e144e6
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png
new file mode 100644
index 0000000..fe13750
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png
new file mode 100644
index 0000000..3becd3a
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_focused_holo.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_focused_holo.9.png
new file mode 100644
index 0000000..0678971
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_focused_holo.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_longpressed_holo.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_longpressed_holo.9.png
new file mode 100644
index 0000000..9180502
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_longpressed_holo.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_pressed_holo_dark.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_pressed_holo_dark.9.png
new file mode 100644
index 0000000..f7aa675
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_pressed_holo_dark.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_pressed_holo_light.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_pressed_holo_light.9.png
new file mode 100644
index 0000000..f16bf97
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_pressed_holo_light.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png
new file mode 100644
index 0000000..4a3adf3
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png
new file mode 100644
index 0000000..b2b9f27
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png
new file mode 100644
index 0000000..91613e8
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_popup_background_mtrl_mult.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_popup_background_mtrl_mult.9.png
new file mode 100644
index 0000000..4b6a668
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_popup_background_mtrl_mult.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 0000000..a354a15
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 0000000..3417be3
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 0000000..d9b3186
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_text_cursor_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_text_cursor_mtrl_alpha.9.png
new file mode 100644
index 0000000..944637b
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_text_cursor_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png
new file mode 100644
index 0000000..be107a9
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png
new file mode 100644
index 0000000..2311405
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png
new file mode 100644
index 0000000..b9ce196
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png
new file mode 100644
index 0000000..0cb1ce8
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png
new file mode 100644
index 0000000..fdec4e7
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 0000000..6b754b2
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 0000000..2cb1fad
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 0000000..19c161d
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 0000000..a11a793
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png
new file mode 100644
index 0000000..a5c3b6a
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png
new file mode 100644
index 0000000..1014888
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 0000000..365c467
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 0000000..061990d
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png
new file mode 100644
index 0000000..a07ebea
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 0000000..253c4ce
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png
new file mode 100644
index 0000000..b504fa2
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png
new file mode 100644
index 0000000..c75b932
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png
new file mode 100644
index 0000000..9861e96
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 0000000..cc41394
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 0000000..4f400a4
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png
new file mode 100644
index 0000000..c695e31
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 0000000..0ed85a8
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 0000000..646caba
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 0000000..65ae95b
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png
new file mode 100644
index 0000000..3d3b511
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png
new file mode 100644
index 0000000..ce673e3
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png
new file mode 100644
index 0000000..3becd3a
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_focused_holo.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_focused_holo.9.png
new file mode 100644
index 0000000..8965f3e
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_focused_holo.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_longpressed_holo.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_longpressed_holo.9.png
new file mode 100644
index 0000000..d1bffd0
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_longpressed_holo.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_pressed_holo_dark.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_pressed_holo_dark.9.png
new file mode 100644
index 0000000..defab44
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_pressed_holo_dark.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_pressed_holo_light.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_pressed_holo_light.9.png
new file mode 100644
index 0000000..6a609c5
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_pressed_holo_light.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png
new file mode 100644
index 0000000..d4678b5
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png
new file mode 100644
index 0000000..5b84092
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png
new file mode 100644
index 0000000..7fea0d6
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png
new file mode 100644
index 0000000..f4a52e9
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 0000000..4fbd907
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 0000000..d3a8147
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 0000000..c5a2319
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_text_cursor_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_text_cursor_mtrl_alpha.9.png
new file mode 100644
index 0000000..66d44a2
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_text_cursor_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png
new file mode 100644
index 0000000..1b69efe
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png
new file mode 100644
index 0000000..fd13b79
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png
new file mode 100644
index 0000000..96a5832
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png
new file mode 100644
index 0000000..8053d16
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png
new file mode 100644
index 0000000..e0411c0
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 0000000..96c5ead
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 0000000..ea9f8a0
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 0000000..9e8a671
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 0000000..d818583
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png
new file mode 100644
index 0000000..a14548b
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png
new file mode 100644
index 0000000..490098c
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 0000000..2d20150
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 0000000..739e098
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png
new file mode 100644
index 0000000..b9c2101
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 0000000..eceafab
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png
new file mode 100644
index 0000000..63cf5a3
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png
new file mode 100644
index 0000000..cd20661
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png
new file mode 100644
index 0000000..00659e6
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 0000000..dafc1a6
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 0000000..0e7fed5
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png
new file mode 100644
index 0000000..575aa76
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 0000000..db4091c
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 0000000..ce16e11
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 0000000..5457ef9
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png
new file mode 100644
index 0000000..dd04580
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png
new file mode 100644
index 0000000..b510682
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png
new file mode 100644
index 0000000..8065ce2
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_focused_holo.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_focused_holo.9.png
new file mode 100644
index 0000000..195b9b4
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_focused_holo.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_longpressed_holo.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_longpressed_holo.9.png
new file mode 100644
index 0000000..83e741b
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_longpressed_holo.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png
new file mode 100644
index 0000000..e8cf10a
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_pressed_holo_light.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_pressed_holo_light.9.png
new file mode 100644
index 0000000..2fc23a0
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_pressed_holo_light.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png
new file mode 100644
index 0000000..b643f2f
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png
new file mode 100644
index 0000000..ec17300
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png
new file mode 100644
index 0000000..fdd5c71
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png
new file mode 100644
index 0000000..6d4ab34
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 0000000..84e2087
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 0000000..f9dbd01
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 0000000..39ee874
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_text_cursor_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_text_cursor_mtrl_alpha.9.png
new file mode 100644
index 0000000..c7b64a6
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_text_cursor_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png
new file mode 100644
index 0000000..e806d42
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png
new file mode 100644
index 0000000..c72f1a2
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png
new file mode 100644
index 0000000..8ee3d7c
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png
new file mode 100644
index 0000000..24a2d7b
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png
new file mode 100644
index 0000000..c4f38cc
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png
new file mode 100644
index 0000000..93ff40e
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png
new file mode 100644
index 0000000..9bd5dda
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png
new file mode 100644
index 0000000..a4d9e8e
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png
new file mode 100644
index 0000000..893d3b5
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png
new file mode 100644
index 0000000..b8c9cfa
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png
new file mode 100644
index 0000000..8287475
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png
new file mode 100644
index 0000000..74439ee
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png
new file mode 100644
index 0000000..45d0100
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png
new file mode 100644
index 0000000..56e1347
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png
new file mode 100644
index 0000000..e80690a
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png
new file mode 100644
index 0000000..1fb028a
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png
new file mode 100644
index 0000000..0341a44
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png
new file mode 100644
index 0000000..be3c6fe
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png
new file mode 100644
index 0000000..10fe9fb
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png
new file mode 100644
index 0000000..398ae02
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png
new file mode 100644
index 0000000..a3d4f8d
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png
new file mode 100644
index 0000000..3317c6e
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png
new file mode 100644
index 0000000..cbfcb0b
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_btn_borderless_material.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_btn_borderless_material.xml
new file mode 100644
index 0000000..58bb02f
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_btn_borderless_material.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_btn_check_material.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_btn_check_material.xml
new file mode 100644
index 0000000..3d9957b
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_btn_check_material.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_btn_default_mtrl_shape.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_btn_default_mtrl_shape.xml
new file mode 100644
index 0000000..0f7185a
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_btn_default_mtrl_shape.xml
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_btn_radio_material.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_btn_radio_material.xml
new file mode 100644
index 0000000..97ae99d
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_btn_radio_material.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_cab_background_internal_bg.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_cab_background_internal_bg.xml
new file mode 100644
index 0000000..70d89cc
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_cab_background_internal_bg.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_cab_background_top_material.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_cab_background_top_material.xml
new file mode 100644
index 0000000..575ebeb
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_cab_background_top_material.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_dialog_material_background_dark.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_dialog_material_background_dark.xml
new file mode 100644
index 0000000..4b050e5
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_dialog_material_background_dark.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_dialog_material_background_light.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_dialog_material_background_light.xml
new file mode 100644
index 0000000..482524a
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_dialog_material_background_light.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_edit_text_material.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_edit_text_material.xml
new file mode 100644
index 0000000..9010af6
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_edit_text_material.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_item_background_holo_dark.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_item_background_holo_dark.xml
new file mode 100644
index 0000000..f1b810b
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_item_background_holo_dark.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_item_background_holo_light.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_item_background_holo_light.xml
new file mode 100644
index 0000000..aa618d2
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_item_background_holo_light.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_dark.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_dark.xml
new file mode 100644
index 0000000..1fb17a7
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_dark.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_light.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_light.xml
new file mode 100644
index 0000000..c16c851
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_list_selector_background_transition_holo_light.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_dark.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_dark.xml
new file mode 100644
index 0000000..4ff2b01
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_dark.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_light.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_light.xml
new file mode 100644
index 0000000..46ee8ac
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_list_selector_holo_light.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_ratingbar_full_material.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_ratingbar_full_material.xml
new file mode 100644
index 0000000..6773d79
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_ratingbar_full_material.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_spinner_textfield_background_material.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_spinner_textfield_background_material.xml
new file mode 100644
index 0000000..cff3d75
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_spinner_textfield_background_material.xml
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_switch_thumb_material.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_switch_thumb_material.xml
new file mode 100644
index 0000000..8c8f5f0
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_switch_thumb_material.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_tab_indicator_material.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_tab_indicator_material.xml
new file mode 100644
index 0000000..20fafb9
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_tab_indicator_material.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_textfield_search_material.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_textfield_search_material.xml
new file mode 100644
index 0000000..be9e6da
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/drawable/abc_textfield_search_material.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_action_bar_title_item.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_action_bar_title_item.xml
new file mode 100644
index 0000000..49baca1
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_action_bar_title_item.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_action_bar_up_container.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_action_bar_up_container.xml
new file mode 100644
index 0000000..36b2bee
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_action_bar_up_container.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_action_bar_view_list_nav_layout.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_action_bar_view_list_nav_layout.xml
new file mode 100644
index 0000000..341d83f
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_action_bar_view_list_nav_layout.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_action_menu_item_layout.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_action_menu_item_layout.xml
new file mode 100644
index 0000000..95eb823
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_action_menu_item_layout.xml
@@ -0,0 +1,31 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_action_menu_layout.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_action_menu_layout.xml
new file mode 100644
index 0000000..ef1202e
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_action_menu_layout.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_action_mode_bar.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_action_mode_bar.xml
new file mode 100644
index 0000000..46fc813
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_action_mode_bar.xml
@@ -0,0 +1,26 @@
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_action_mode_close_item_material.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_action_mode_close_item_material.xml
new file mode 100644
index 0000000..74a69bc
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_action_mode_close_item_material.xml
@@ -0,0 +1,26 @@
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_activity_chooser_view.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_activity_chooser_view.xml
new file mode 100644
index 0000000..2af4352
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_activity_chooser_view.xml
@@ -0,0 +1,72 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_activity_chooser_view_list_item.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_activity_chooser_view_list_item.xml
new file mode 100644
index 0000000..0d99740
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_activity_chooser_view_list_item.xml
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_alert_dialog_material.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_alert_dialog_material.xml
new file mode 100644
index 0000000..973d45d
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_alert_dialog_material.xml
@@ -0,0 +1,148 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_dialog_title_material.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_dialog_title_material.xml
new file mode 100644
index 0000000..2ba7dc3
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_dialog_title_material.xml
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_expanded_menu_layout.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_expanded_menu_layout.xml
new file mode 100644
index 0000000..d66589f
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_expanded_menu_layout.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_list_menu_item_checkbox.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_list_menu_item_checkbox.xml
new file mode 100644
index 0000000..a15d261
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_list_menu_item_checkbox.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_list_menu_item_icon.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_list_menu_item_icon.xml
new file mode 100644
index 0000000..fc46fe1
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_list_menu_item_icon.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_list_menu_item_layout.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_list_menu_item_layout.xml
new file mode 100644
index 0000000..ebabd25
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_list_menu_item_layout.xml
@@ -0,0 +1,61 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_list_menu_item_radio.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_list_menu_item_radio.xml
new file mode 100644
index 0000000..66403af
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_list_menu_item_radio.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_popup_menu_item_layout.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_popup_menu_item_layout.xml
new file mode 100644
index 0000000..2a49db1
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_popup_menu_item_layout.xml
@@ -0,0 +1,62 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_screen_content_include.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_screen_content_include.xml
new file mode 100644
index 0000000..4f5b4b2
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_screen_content_include.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_screen_simple.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_screen_simple.xml
new file mode 100644
index 0000000..48a0484
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_screen_simple.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_screen_simple_overlay_action_mode.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_screen_simple_overlay_action_mode.xml
new file mode 100644
index 0000000..007686c
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_screen_simple_overlay_action_mode.xml
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_screen_toolbar.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_screen_toolbar.xml
new file mode 100644
index 0000000..f026676
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_screen_toolbar.xml
@@ -0,0 +1,54 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_search_dropdown_item_icons_2line.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_search_dropdown_item_icons_2line.xml
new file mode 100644
index 0000000..20fd8ee
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_search_dropdown_item_icons_2line.xml
@@ -0,0 +1,86 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_search_view.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_search_view.xml
new file mode 100644
index 0000000..9d54548
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_search_view.xml
@@ -0,0 +1,142 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_select_dialog_material.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_select_dialog_material.xml
new file mode 100644
index 0000000..5c01270
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_select_dialog_material.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_simple_dropdown_hint.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_simple_dropdown_hint.xml
new file mode 100644
index 0000000..aef9ebd
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/abc_simple_dropdown_hint.xml
@@ -0,0 +1,23 @@
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/activity_main.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/activity_main.xml
new file mode 100644
index 0000000..407876e
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/activity_main.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/notification_media_action.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/notification_media_action.xml
new file mode 100644
index 0000000..f901b22
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/notification_media_action.xml
@@ -0,0 +1,25 @@
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/notification_media_cancel_action.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/notification_media_cancel_action.xml
new file mode 100644
index 0000000..07bc506
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/notification_media_cancel_action.xml
@@ -0,0 +1,28 @@
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/notification_template_big_media.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/notification_template_big_media.xml
new file mode 100644
index 0000000..e6a89e8
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/notification_template_big_media.xml
@@ -0,0 +1,61 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/notification_template_big_media_narrow.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/notification_template_big_media_narrow.xml
new file mode 100644
index 0000000..fdf7125
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/notification_template_big_media_narrow.xml
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/notification_template_lines.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/notification_template_lines.xml
new file mode 100644
index 0000000..405d8f0
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/notification_template_lines.xml
@@ -0,0 +1,108 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/notification_template_media.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/notification_template_media.xml
new file mode 100644
index 0000000..1174b3d
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/notification_template_media.xml
@@ -0,0 +1,53 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/notification_template_part_chronometer.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/notification_template_part_chronometer.xml
new file mode 100644
index 0000000..bc4cbe6
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/notification_template_part_chronometer.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/notification_template_part_time.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/notification_template_part_time.xml
new file mode 100644
index 0000000..cdafd86
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/notification_template_part_time.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/select_dialog_item_material.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/select_dialog_item_material.xml
new file mode 100644
index 0000000..e9f38c7
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/select_dialog_item_material.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/select_dialog_multichoice_material.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/select_dialog_multichoice_material.xml
new file mode 100644
index 0000000..5eff677
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/select_dialog_multichoice_material.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/select_dialog_singlechoice_material.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/select_dialog_singlechoice_material.xml
new file mode 100644
index 0000000..748345b
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/select_dialog_singlechoice_material.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/support_simple_spinner_dropdown_item.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/support_simple_spinner_dropdown_item.xml
new file mode 100644
index 0000000..d5a855d
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/layout/support_simple_spinner_dropdown_item.xml
@@ -0,0 +1,25 @@
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/menu/menu_main.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/menu/menu_main.xml
new file mode 100644
index 0000000..1083ba4
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/menu/menu_main.xml
@@ -0,0 +1,18 @@
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/mipmap-hdpi/ic_launcher.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/mipmap-hdpi/ic_launcher.png
new file mode 100644
index 0000000..1dbefa9
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/mipmap-hdpi/ic_launcher.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/mipmap-mdpi/ic_launcher.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/mipmap-mdpi/ic_launcher.png
new file mode 100644
index 0000000..c8e2986
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/mipmap-mdpi/ic_launcher.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/mipmap-xhdpi/ic_launcher.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/mipmap-xhdpi/ic_launcher.png
new file mode 100644
index 0000000..c0cad09
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/mipmap-xhdpi/ic_launcher.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/mipmap-xxhdpi/ic_launcher.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/mipmap-xxhdpi/ic_launcher.png
new file mode 100644
index 0000000..82b5407
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/mipmap-xxhdpi/ic_launcher.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-af/values-af.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-af/values-af.xml
new file mode 100644
index 0000000..8beae36
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-af/values-af.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Navigeer tuis"
+ "Navigeer op"
+ "Nog opsies"
+ "Klaar"
+ "Sien alles"
+ "Kies \'n program"
+ "Vee navraag uit"
+ "Soeknavraag"
+ "Soek"
+ "Dien navraag in"
+ "Stemsoektog"
+ "Deel met"
+ "Deel met %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-am/values-am.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-am/values-am.xml
new file mode 100644
index 0000000..f2fee18
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-am/values-am.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "ወደ መነሻ ይዳስሱ"
+ "ወደ ላይ ይዳስሱ"
+ "ተጨማሪ አማራጮች"
+ "ተከናውኗል"
+ "ሁሉንም ይመልከቱ"
+ "መተግበሪያ ይምረጡ"
+ "መጠይቅ አጽዳ"
+ "የፍለጋ ጥያቄ"
+ "ፍለጋ"
+ "መጠይቅ ያስረክቡ"
+ "የድምፅ ፍለጋ"
+ "ከሚከተለው ጋር ያጋሩ"
+ "ከ%s ጋር ያጋሩ"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-ar/values-ar.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-ar/values-ar.xml
new file mode 100644
index 0000000..2ecc5c9
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-ar/values-ar.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "التنقل إلى الشاشة الرئيسية"
+ "التنقل إلى أعلى"
+ "خيارات إضافية"
+ "تم"
+ "عرض الكل"
+ "اختيار تطبيق"
+ "محو طلب البحث"
+ "طلب البحث"
+ "بحث"
+ "إرسال طلب البحث"
+ "البحث الصوتي"
+ "مشاركة مع"
+ "مشاركة مع %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-bg/values-bg.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-bg/values-bg.xml
new file mode 100644
index 0000000..5655284
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-bg/values-bg.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Придвижване към „Начало“"
+ "Придвижване нагоре"
+ "Още опции"
+ "Готово"
+ "Вижте всички"
+ "Изберете приложение"
+ "Изчистване на заявката"
+ "Заявка за търсене"
+ "Търсене"
+ "Изпращане на заявката"
+ "Гласово търсене"
+ "Споделяне със:"
+ "Споделяне със: %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-bn-rBD/values-bn-rBD.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-bn-rBD/values-bn-rBD.xml
new file mode 100644
index 0000000..a998965
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-bn-rBD/values-bn-rBD.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "হোম এ নেভিগেট করুন"
+ "উপরের দিকে নেভিগেট করুন"
+ "আরো বিকল্প"
+ "সম্পন্ন হয়েছে"
+ "সবগুলো দেখুন"
+ "একটি অ্যাপ্লিকেশান চয়ন করুন"
+ "ক্যোয়ারী সাফ করুন"
+ "ক্যোয়ারী অনুসন্ধান করুন"
+ "অনুসন্ধান করুন"
+ "ক্যোয়ারী জমা দিন"
+ "ভয়েস অনুসন্ধান"
+ "এর সাথে ভাগ করুন"
+ "%s এর সাথে ভাগ করুন"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-ca/values-ca.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-ca/values-ca.xml
new file mode 100644
index 0000000..2522299
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-ca/values-ca.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Navega a la pàgina d\'inici"
+ "Navega cap a dalt"
+ "Més opcions"
+ "Fet"
+ "Mostra\'ls tots"
+ "Selecciona una aplicació"
+ "Esborra la consulta"
+ "Consulta de cerca"
+ "Cerca"
+ "Envia la consulta"
+ "Cerca per veu"
+ "Comparteix amb"
+ "Comparteix amb %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-cs/values-cs.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-cs/values-cs.xml
new file mode 100644
index 0000000..fb1ee7b
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-cs/values-cs.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Přejít na plochu"
+ "Přejít nahoru"
+ "Více možností"
+ "Hotovo"
+ "Zobrazit vše"
+ "Vybrat aplikaci"
+ "Smazat dotaz"
+ "Vyhledávací dotaz"
+ "Hledat"
+ "Odeslat dotaz"
+ "Hlasové vyhledávání"
+ "Sdílet pomocí"
+ "Sdílet pomocí %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-da/values-da.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-da/values-da.xml
new file mode 100644
index 0000000..c0471bc
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-da/values-da.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Naviger hjem"
+ "Naviger op"
+ "Flere muligheder"
+ "Luk"
+ "Se alle"
+ "Vælg en app"
+ "Ryd forespørgslen"
+ "Søgeforespørgsel"
+ "Søg"
+ "Indsend forespørgslen"
+ "Stemmesøgning"
+ "Del med"
+ "Del med %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-de/values-de.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-de/values-de.xml
new file mode 100644
index 0000000..3350a87
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-de/values-de.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Zur Startseite"
+ "Nach oben"
+ "Weitere Optionen"
+ "Fertig"
+ "Alle ansehen"
+ "App auswählen"
+ "Suchanfrage löschen"
+ "Suchanfrage"
+ "Suchen"
+ "Suchanfrage senden"
+ "Sprachsuche"
+ "Freigeben für"
+ "Freigeben für %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-el/values-el.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-el/values-el.xml
new file mode 100644
index 0000000..76bd6f9
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-el/values-el.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Πλοήγηση στην αρχική σελίδα"
+ "Πλοήγηση προς τα επάνω"
+ "Περισσότερες επιλογές"
+ "Τέλος"
+ "Προβολή όλων"
+ "Επιλέξτε κάποια εφαρμογή"
+ "Διαγραφή ερωτήματος"
+ "Ερώτημα αναζήτησης"
+ "Αναζήτηση"
+ "Υποβολή ερωτήματος"
+ "Φωνητική αναζήτηση"
+ "Κοινή χρήση με"
+ "Κοινή χρήση με %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-en-rGB/values-en-rGB.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-en-rGB/values-en-rGB.xml
new file mode 100644
index 0000000..be957c1
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-en-rGB/values-en-rGB.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Navigate home"
+ "Navigate up"
+ "More options"
+ "Finished"
+ "See all"
+ "Choose an app"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-en-rIN/values-en-rIN.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-en-rIN/values-en-rIN.xml
new file mode 100644
index 0000000..5332c7b
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-en-rIN/values-en-rIN.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Navigate home"
+ "Navigate up"
+ "More options"
+ "Finished"
+ "See all"
+ "Choose an app"
+ "Clear query"
+ "Search query"
+ "Search"
+ "Submit query"
+ "Voice search"
+ "Share with"
+ "Share with %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-es-rUS/values-es-rUS.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-es-rUS/values-es-rUS.xml
new file mode 100644
index 0000000..0af0717
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-es-rUS/values-es-rUS.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Navegar a la página principal"
+ "Navegar hacia arriba"
+ "Más opciones"
+ "Listo"
+ "Ver todo"
+ "Elige una aplicación."
+ "Eliminar la consulta"
+ "Consulta de búsqueda"
+ "Búsqueda"
+ "Enviar consulta"
+ "Búsqueda por voz"
+ "Compartir con"
+ "Compartir con %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-es/values-es.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-es/values-es.xml
new file mode 100644
index 0000000..45e5bee
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-es/values-es.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Ir a la pantalla de inicio"
+ "Desplazarse hacia arriba"
+ "Más opciones"
+ "Listo"
+ "Ver todo"
+ "Seleccionar una aplicación"
+ "Borrar consulta"
+ "Consulta"
+ "Buscar"
+ "Enviar consulta"
+ "Búsqueda por voz"
+ "Compartir con"
+ "Compartir con %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-et-rEE/values-et-rEE.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-et-rEE/values-et-rEE.xml
new file mode 100644
index 0000000..6a75b00
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-et-rEE/values-et-rEE.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Navigeerimine avaekraanile"
+ "Navigeerimine üles"
+ "Rohkem valikuid"
+ "Valmis"
+ "Kuva kõik"
+ "Valige rakendus"
+ "Päringu tühistamine"
+ "Otsingupäring"
+ "Otsing"
+ "Päringu esitamine"
+ "Häälotsing"
+ "Jagamine:"
+ "Jagamine kasutajaga %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-eu-rES/values-eu-rES.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-eu-rES/values-eu-rES.xml
new file mode 100644
index 0000000..6166eb6
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-eu-rES/values-eu-rES.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Joan orri nagusira"
+ "Joan gora"
+ "Aukera gehiago"
+ "Eginda"
+ "Ikusi guztiak"
+ "Aukeratu aplikazio bat"
+ "Garbitu kontsulta"
+ "Bilaketa-kontsulta"
+ "Bilatu"
+ "Bidali kontsulta"
+ "Ahots bidezko bilaketa"
+ "Partekatu hauekin"
+ "Partekatu %s erabiltzailearekin"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-fa/values-fa.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-fa/values-fa.xml
new file mode 100644
index 0000000..9d481b1
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-fa/values-fa.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "پیمایش به صفحه اصلی"
+ "پیمایش به بالا"
+ "گزینههای بیشتر"
+ "انجام شد"
+ "مشاهده همه"
+ "انتخاب برنامه"
+ "پاک کردن عبارت جستجو"
+ "عبارت جستجو"
+ "جستجو"
+ "ارسال عبارت جستجو"
+ "جستجوی شفاهی"
+ "اشتراکگذاری با"
+ "اشتراکگذاری با %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-fi/values-fi.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-fi/values-fi.xml
new file mode 100644
index 0000000..2a956eb
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-fi/values-fi.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Siirry etusivulle"
+ "Siirry ylös"
+ "Lisää"
+ "Valmis"
+ "Näytä kaikki"
+ "Valitse sovellus"
+ "Tyhjennä kysely"
+ "Hakulauseke"
+ "Haku"
+ "Lähetä kysely"
+ "Puhehaku"
+ "Jakaminen:"
+ "Jakaminen: %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-fr-rCA/values-fr-rCA.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-fr-rCA/values-fr-rCA.xml
new file mode 100644
index 0000000..321c346
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-fr-rCA/values-fr-rCA.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Revenir à l\'accueil"
+ "Revenir en haut de la page"
+ "Plus d\'options"
+ "Terminé"
+ "Voir toutes les chaînes"
+ "Sélectionnez une application"
+ "Effacer la requête"
+ "Requête de recherche"
+ "Rechercher"
+ "Envoyer la requête"
+ "Recherche vocale"
+ "Partager avec"
+ "Partager avec %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-fr/values-fr.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-fr/values-fr.xml
new file mode 100644
index 0000000..537b095
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-fr/values-fr.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Revenir à l\'accueil"
+ "Revenir en haut de la page"
+ "Plus d\'options"
+ "OK"
+ "Tout afficher"
+ "Sélectionner une application"
+ "Effacer la requête"
+ "Requête de recherche"
+ "Rechercher"
+ "Envoyer la requête"
+ "Recherche vocale"
+ "Partager avec"
+ "Partager avec %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-gl-rES/values-gl-rES.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-gl-rES/values-gl-rES.xml
new file mode 100644
index 0000000..14c8763
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-gl-rES/values-gl-rES.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Ir á páxina de inicio"
+ "Desprazarse cara arriba"
+ "Máis opcións"
+ "Feito"
+ "Ver todas"
+ "Escoller unha aplicación"
+ "Borrar consulta"
+ "Consulta de busca"
+ "Buscar"
+ "Enviar consulta"
+ "Busca de voz"
+ "Compartir con"
+ "Compartir con %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-h720dp/values-h720dp.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-h720dp/values-h720dp.xml
new file mode 100644
index 0000000..7059fcd
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-h720dp/values-h720dp.xml
@@ -0,0 +1,6 @@
+
+
+
+
+ 54dip
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-hdpi/values-hdpi.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-hdpi/values-hdpi.xml
new file mode 100644
index 0000000..fef974a
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-hdpi/values-hdpi.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-hi/values-hi.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-hi/values-hi.xml
new file mode 100644
index 0000000..c4beca8
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-hi/values-hi.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "मुखपृष्ठ पर नेविगेट करें"
+ "ऊपर नेविगेट करें"
+ "अधिक विकल्प"
+ "पूर्ण"
+ "सभी देखें"
+ "कोई एप्लिकेशन चुनें"
+ "क्वेरी साफ़ करें"
+ "खोज क्वेरी"
+ "खोजें"
+ "क्वेरी सबमिट करें"
+ "ध्वनि खोज"
+ "इसके द्वारा साझा करें"
+ "%s के साथ साझा करें"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-hr/values-hr.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-hr/values-hr.xml
new file mode 100644
index 0000000..81be1b1
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-hr/values-hr.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Idi na početnu"
+ "Idi gore"
+ "Dodatne opcije"
+ "Gotovo"
+ "Prikaži sve"
+ "Odabir aplikacije"
+ "Izbriši upit"
+ "Upit za pretraživanje"
+ "Pretraživanje"
+ "Pošalji upit"
+ "Glasovno pretraživanje"
+ "Dijeljenje sa"
+ "Dijeljenje sa: %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-hu/values-hu.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-hu/values-hu.xml
new file mode 100644
index 0000000..af82268
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-hu/values-hu.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Ugrás a főoldalra"
+ "Felfelé mozgatás"
+ "További lehetőségek"
+ "Kész"
+ "Összes megtekintése"
+ "Válasszon ki egy alkalmazást"
+ "Lekérdezés törlése"
+ "Keresési lekérdezés"
+ "Keresés"
+ "Lekérdezés küldése"
+ "Hangalapú keresés"
+ "Megosztás a következővel:"
+ "Megosztás a következővel: %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-hy-rAM/values-hy-rAM.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-hy-rAM/values-hy-rAM.xml
new file mode 100644
index 0000000..caa61c2
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-hy-rAM/values-hy-rAM.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Ուղղվել տուն"
+ "Ուղղվել վերև"
+ "Այլ ընտրանքներ"
+ "Կատարված է"
+ "Տեսնել բոլորը"
+ "Ընտրել ծրագիր"
+ "Մաքրել հարցումը"
+ "Որոնման հարցում"
+ "Որոնել"
+ "Ուղարկել հարցումը"
+ "Ձայնային որոնում"
+ "Տարածել"
+ "Տարածել ըստ %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-in/values-in.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-in/values-in.xml
new file mode 100644
index 0000000..5e1caec
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-in/values-in.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Navigasi ke beranda"
+ "Navigasi naik"
+ "Opsi lain"
+ "Selesai"
+ "Lihat semua"
+ "Pilih aplikasi"
+ "Hapus kueri"
+ "Kueri penelusuran"
+ "Telusuri"
+ "Kirim kueri"
+ "Penelusuran suara"
+ "Bagikan dengan"
+ "Bagikan dengan %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-is-rIS/values-is-rIS.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-is-rIS/values-is-rIS.xml
new file mode 100644
index 0000000..007855c
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-is-rIS/values-is-rIS.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Fara heim"
+ "Fara upp"
+ "Fleiri valkostir"
+ "Lokið"
+ "Sjá allt"
+ "Veldu forrit"
+ "Hreinsa fyrirspurn"
+ "Leitarfyrirspurn"
+ "Leita"
+ "Senda fyrirspurn"
+ "Raddleit"
+ "Deila með"
+ "Deila með %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-it/values-it.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-it/values-it.xml
new file mode 100644
index 0000000..8e6ad61
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-it/values-it.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Vai alla home page"
+ "Vai in alto"
+ "Altre opzioni"
+ "Fine"
+ "Visualizza tutte"
+ "Scegli un\'applicazione"
+ "Cancella query"
+ "Query di ricerca"
+ "Cerca"
+ "Invia query"
+ "Ricerca vocale"
+ "Condividi con"
+ "Condividi con %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-iw/values-iw.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-iw/values-iw.xml
new file mode 100644
index 0000000..38bb478
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-iw/values-iw.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "נווט לדף הבית"
+ "נווט למעלה"
+ "עוד אפשרויות"
+ "בוצע"
+ "ראה הכול"
+ "בחר אפליקציה"
+ "מחק שאילתה"
+ "שאילתת חיפוש"
+ "חפש"
+ "שלח שאילתה"
+ "חיפוש קולי"
+ "שתף עם"
+ "שתף עם %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-ja/values-ja.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-ja/values-ja.xml
new file mode 100644
index 0000000..6426471
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-ja/values-ja.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "ホームへ移動"
+ "上へ移動"
+ "その他のオプション"
+ "完了"
+ "すべて表示"
+ "アプリの選択"
+ "検索キーワードを削除"
+ "検索キーワード"
+ "検索"
+ "検索キーワードを送信"
+ "音声検索"
+ "共有"
+ "%sと共有"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-ka-rGE/values-ka-rGE.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-ka-rGE/values-ka-rGE.xml
new file mode 100644
index 0000000..75b08c6
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-ka-rGE/values-ka-rGE.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "მთავარზე ნავიგაცია"
+ "ზემოთ ნავიგაცია"
+ "მეტი ვარიანტები"
+ "დასრულდა"
+ "ყველას ნახვა"
+ "აპის არჩევა"
+ "მოთხოვნის გასუფთავება"
+ "ძიების მოთხოვნა"
+ "ძიება"
+ "მოთხოვნის გადაგზავნა"
+ "ხმოვანი ძიება"
+ "გაზიარება:"
+ "%s-თან გაზიარება"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-kk-rKZ/values-kk-rKZ.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-kk-rKZ/values-kk-rKZ.xml
new file mode 100644
index 0000000..ffa2c62
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-kk-rKZ/values-kk-rKZ.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Негізгі бетте қозғалу"
+ "Жоғары қозғалу"
+ "Басқа опциялар"
+ "Орындалды"
+ "Барлығын көру"
+ "Қолданбаны таңдау"
+ "Сұрақты жою"
+ "Сұрақты іздеу"
+ "Іздеу"
+ "Сұрақты жіберу"
+ "Дауыс арқылы іздеу"
+ "Бөлісу"
+ "%s бөлісу"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-km-rKH/values-km-rKH.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-km-rKH/values-km-rKH.xml
new file mode 100644
index 0000000..80b4ff8
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-km-rKH/values-km-rKH.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "រកមើលទៅដើម"
+ "រកមើលឡើងលើ"
+ "ជម្រើសច្រើនទៀត"
+ "រួចរាល់"
+ "មើលទាំងអស់"
+ "ជ្រើសកម្មវិធី"
+ "សម្អាតសំណួរ"
+ "ស្វែងរកសំណួរ"
+ "ស្វែងរក"
+ "ដាក់ស្នើសំណួរ"
+ "ការស្វែងរកសំឡេង"
+ "ចែករំលែកជាមួយ"
+ "ចែករំលែកជាមួយ %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-kn-rIN/values-kn-rIN.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-kn-rIN/values-kn-rIN.xml
new file mode 100644
index 0000000..560001e
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-kn-rIN/values-kn-rIN.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"
+ "ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"
+ "ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು"
+ "ಮುಗಿದಿದೆ"
+ "ಎಲ್ಲವನ್ನೂ ನೋಡಿ"
+ "ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ"
+ "ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು"
+ "ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ"
+ "ಹುಡುಕು"
+ "ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು"
+ "ಧ್ವನಿ ಹುಡುಕಾಟ"
+ "ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ"
+ "%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-ko/values-ko.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-ko/values-ko.xml
new file mode 100644
index 0000000..bbe21f1
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-ko/values-ko.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "홈 탐색"
+ "위로 탐색"
+ "옵션 더보기"
+ "완료"
+ "전체 보기"
+ "앱 선택"
+ "검색어 삭제"
+ "검색어"
+ "검색"
+ "검색어 보내기"
+ "음성 검색"
+ "공유 대상"
+ "%s와(과) 공유"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-ky-rKG/values-ky-rKG.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-ky-rKG/values-ky-rKG.xml
new file mode 100644
index 0000000..4501463
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-ky-rKG/values-ky-rKG.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Үйгө багыттоо"
+ "Жогору"
+ "Көбүрөөк мүмкүнчүлүктөр"
+ "Даяр"
+ "Бардыгын көрүү"
+ "Колдонмо тандоо"
+ "Талаптарды тазалоо"
+ "Издөө талаптары"
+ "Издөө"
+ "Талап жөнөтүү"
+ "Үн аркылуу издөө"
+ "Бөлүшүү"
+ "%s аркылуу бөлүшүү"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-land/values-land.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-land/values-land.xml
new file mode 100644
index 0000000..414ff76
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-land/values-land.xml
@@ -0,0 +1,12 @@
+
+
+
+
+ true
+ true
+ 48dp
+ 0dp
+ 32dp
+ 12dp
+ 14dp
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-large/values-large.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-large/values-large.xml
new file mode 100644
index 0000000..df32365
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-large/values-large.xml
@@ -0,0 +1,16 @@
+
+
+
+
+ true
+ true
+ 440dp
+ 192dip
+ 60%
+ 90%
+ 60%
+ 90%
+ 4
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-lo-rLA/values-lo-rLA.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-lo-rLA/values-lo-rLA.xml
new file mode 100644
index 0000000..8ce408e
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-lo-rLA/values-lo-rLA.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "ກັບໄປໜ້າຫຼັກ"
+ "ຂຶ້ນເທິງ"
+ "ໂຕເລືອກອື່ນ"
+ "ແລ້ວໆ"
+ "ເບິ່ງທັງຫມົດ"
+ "ເລືອກແອັບຯ"
+ "ລຶບຂໍ້ຄວາມຊອກຫາ"
+ "ຊອກຫາ"
+ "ຊອກຫາ"
+ "ສົ່ງການຊອກຫາ"
+ "ຊອກຫາດ້ວຍສຽງ"
+ "ແບ່ງປັນກັບ"
+ "ແບ່ງປັນກັບ %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-lt/values-lt.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-lt/values-lt.xml
new file mode 100644
index 0000000..9287d0f
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-lt/values-lt.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Eiti į pagrindinį puslapį"
+ "Eiti į viršų"
+ "Daugiau parinkčių"
+ "Atlikta"
+ "Peržiūrėti viską"
+ "Pasirinkti programą"
+ "Išvalyti užklausą"
+ "Paieškos užklausa"
+ "Paieška"
+ "Pateikti užklausą"
+ "Paieška balsu"
+ "Bendrinti naudojant"
+ "Bendrinti naudojant „%s“"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-lv/values-lv.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-lv/values-lv.xml
new file mode 100644
index 0000000..a2aa060
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-lv/values-lv.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Pārvietoties uz sākuma ekrānu"
+ "Pārvietoties augšup"
+ "Vairāk opciju"
+ "Gatavs"
+ "Skatīt visu"
+ "Izvēlieties lietotni"
+ "Notīrīt vaicājumu"
+ "Meklēšanas vaicājums"
+ "Meklēt"
+ "Iesniegt vaicājumu"
+ "Meklēšana ar balsi"
+ "Kopīgot ar:"
+ "Kopīgot ar %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-mk-rMK/values-mk-rMK.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-mk-rMK/values-mk-rMK.xml
new file mode 100644
index 0000000..a0d1067
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-mk-rMK/values-mk-rMK.xml
@@ -0,0 +1,17 @@
+
+
+
+
+ "Движи се кон дома"
+ "Движи се нагоре"
+ "Повеќе опции"
+ "Готово"
+ "Види ги сите"
+ "Избери апликација"
+ "Исчисти барање"
+ "Пребарај барање"
+ "Пребарај"
+ "Поднеси барање"
+ "Гласовно пребарување"
+ "Сподели со"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-ml-rIN/values-ml-rIN.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-ml-rIN/values-ml-rIN.xml
new file mode 100644
index 0000000..53373e1
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-ml-rIN/values-ml-rIN.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "ഹോമിലേക്ക് നാവിഗേറ്റുചെയ്യുക"
+ "മുകളിലേക്ക് നാവിഗേറ്റുചെയ്യുക"
+ "കൂടുതല് ഓപ്ഷനുകള്"
+ "പൂർത്തിയാക്കി"
+ "എല്ലാം കാണുക"
+ "ഒരു അപ്ലിക്കേഷൻ തിരഞ്ഞെടുക്കുക"
+ "അന്വേഷണം മായ്ക്കുക"
+ "തിരയൽ അന്വേഷണം"
+ "തിരയൽ"
+ "അന്വേഷണം സമർപ്പിക്കുക"
+ "വോയ്സ് തിരയൽ"
+ "ഇവരുമായി പങ്കിടുക"
+ "%s എന്നതുമായി പങ്കിടുക"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-mn-rMN/values-mn-rMN.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-mn-rMN/values-mn-rMN.xml
new file mode 100644
index 0000000..ca7fc5d
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-mn-rMN/values-mn-rMN.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Нүүр хуудас руу шилжих"
+ "Дээш шилжих"
+ "Нэмэлт сонголтууд"
+ "Дууссан"
+ "Бүгдийг харах"
+ "Апп сонгох"
+ "Асуулгыг цэвэрлэх"
+ "Хайх асуулга"
+ "Хайх"
+ "Асуулгыг илгээх"
+ "Дуут хайлт"
+ "Хуваалцах"
+ "%s-тай хуваалцах"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-mr-rIN/values-mr-rIN.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-mr-rIN/values-mr-rIN.xml
new file mode 100644
index 0000000..cdbc0af
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-mr-rIN/values-mr-rIN.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "मुख्यपृष्ठ नेव्हिगेट करा"
+ "वर नेव्हिगेट करा"
+ "अधिक पर्याय"
+ "पूर्ण झाले"
+ "सर्व पहा"
+ "एक अॅप निवडा"
+ "क्वेरी स्पष्ट करा"
+ "शोध क्वेरी"
+ "शोध"
+ "क्वेरी सबमिट करा"
+ "व्हॉइस शोध"
+ "यांच्यासह सामायिक करा"
+ "%s सह सामायिक करा"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-ms-rMY/values-ms-rMY.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-ms-rMY/values-ms-rMY.xml
new file mode 100644
index 0000000..4d42235
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-ms-rMY/values-ms-rMY.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Navigasi skrin utama"
+ "Navigasi ke atas"
+ "Lagi pilihan"
+ "Selesai"
+ "Lihat semua"
+ "Pilih apl"
+ "Kosongkan pertanyaan"
+ "Pertanyaan carian"
+ "Cari"
+ "Serah pertanyaan"
+ "Carian suara"
+ "Kongsi dengan"
+ "Kongsi dengan %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-my-rMM/values-my-rMM.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-my-rMM/values-my-rMM.xml
new file mode 100644
index 0000000..30f5fb8
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-my-rMM/values-my-rMM.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "မူလနေရာကို သွားရန်"
+ "အပေါ်သို့သွားရန်"
+ "ပိုမိုရွေးချယ်စရာများ"
+ "ပြီးဆုံးပါပြီ"
+ "အားလုံးကို ကြည့်ရန်"
+ "အပလီကေးရှင်း တစ်ခုခုကို ရွေးချယ်ပါ"
+ "ရှာစရာ အချက်အလက်များ ရှင်းလင်းရန်"
+ "ရှာစရာ အချက်အလက်နေရာ"
+ "ရှာဖွေရန်"
+ "ရှာဖွေစရာ အချက်အလက်ကို အတည်ပြုရန်"
+ "အသံဖြင့် ရှာဖွေခြင်း"
+ "မျှဝေဖို့ ရွေးပါ"
+ "%s ကို မျှဝေပါရန်"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-nb/values-nb.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-nb/values-nb.xml
new file mode 100644
index 0000000..3a81641
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-nb/values-nb.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Gå til startsiden"
+ "Gå opp"
+ "Flere alternativer"
+ "Ferdig"
+ "Se alle"
+ "Velg en app"
+ "Slett søket"
+ "Søkeord"
+ "Søk"
+ "Utfør søket"
+ "Talesøk"
+ "Del med"
+ "Del med %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-ne-rNP/values-ne-rNP.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-ne-rNP/values-ne-rNP.xml
new file mode 100644
index 0000000..e4e3e8d
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-ne-rNP/values-ne-rNP.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "गृह खोज्नुहोस्"
+ "माथि खोज्नुहोस्"
+ "थप विकल्पहरू"
+ "सम्पन्न भयो"
+ "सबै हेर्नुहोस्"
+ "एउटा अनुप्रयोग छान्नुहोस्"
+ "प्रश्न हटाउनुहोस्"
+ "जिज्ञासाको खोज गर्नुहोस्"
+ "खोज्नुहोस्"
+ "जिज्ञासा पेस गर्नुहोस्"
+ "भ्वाइस खोजी"
+ "साझेदारी गर्नुहोस्..."
+ "%s सँग साझेदारी गर्नुहोस्"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-nl/values-nl.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-nl/values-nl.xml
new file mode 100644
index 0000000..eb3d3e3
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-nl/values-nl.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Navigeren naar startpositie"
+ "Omhoog navigeren"
+ "Meer opties"
+ "Gereed"
+ "Alles weergeven"
+ "Een app selecteren"
+ "Zoekopdracht wissen"
+ "Zoekopdracht"
+ "Zoeken"
+ "Zoekopdracht verzenden"
+ "Gesproken zoekopdracht"
+ "Delen met"
+ "Delen met %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-pl/values-pl.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-pl/values-pl.xml
new file mode 100644
index 0000000..3ffa782
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-pl/values-pl.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Przejdź do strony głównej"
+ "Przejdź wyżej"
+ "Więcej opcji"
+ "Gotowe"
+ "Zobacz wszystkie"
+ "Wybierz aplikację"
+ "Wyczyść zapytanie"
+ "Wyszukiwane hasło"
+ "Szukaj"
+ "Wyślij zapytanie"
+ "Wyszukiwanie głosowe"
+ "Udostępnij dla"
+ "Udostępnij dla %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-port/values-port.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-port/values-port.xml
new file mode 100644
index 0000000..fb2b03a
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-port/values-port.xml
@@ -0,0 +1,6 @@
+
+
+
+
+ false
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-pt-rPT/values-pt-rPT.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-pt-rPT/values-pt-rPT.xml
new file mode 100644
index 0000000..69f5c1f
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-pt-rPT/values-pt-rPT.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Navegar para a página inicial"
+ "Navegar para cima"
+ "Mais opções"
+ "Concluído"
+ "Ver tudo"
+ "Escolher uma aplicação"
+ "Limpar consulta"
+ "Consulta de pesquisa"
+ "Pesquisar"
+ "Enviar consulta"
+ "Pesquisa por voz"
+ "Partilhar com"
+ "Partilhar com %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-pt/values-pt.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-pt/values-pt.xml
new file mode 100644
index 0000000..c4845f1
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-pt/values-pt.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Navegar para a página inicial"
+ "Navegar para cima"
+ "Mais opções"
+ "Concluído"
+ "Ver tudo"
+ "Selecione um aplicativo"
+ "Limpar consulta"
+ "Consulta de pesquisa"
+ "Pesquisar"
+ "Enviar consulta"
+ "Pesquisa por voz"
+ "Compartilhar com"
+ "Compartilhar com %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-ro/values-ro.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-ro/values-ro.xml
new file mode 100644
index 0000000..c86e960
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-ro/values-ro.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Navigați la ecranul de pornire"
+ "Navigați în sus"
+ "Mai multe opțiuni"
+ "Terminat"
+ "Afișați-le pe toate"
+ "Alegeți o aplicaţie"
+ "Ștergeți interogarea"
+ "Interogare de căutare"
+ "Căutați"
+ "Trimiteți interogarea"
+ "Căutare vocală"
+ "Trimiteți la"
+ "Trimiteți la %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-ru/values-ru.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-ru/values-ru.xml
new file mode 100644
index 0000000..782011c
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-ru/values-ru.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Перейти на главный экран"
+ "Перейти вверх"
+ "Другие параметры"
+ "Готово"
+ "Показать все"
+ "Выбрать приложение"
+ "Удалить запрос"
+ "Поисковый запрос"
+ "Поиск"
+ "Отправить запрос"
+ "Голосовой поиск"
+ "Открыть доступ"
+ "Открыть доступ пользователю %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-si-rLK/values-si-rLK.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-si-rLK/values-si-rLK.xml
new file mode 100644
index 0000000..12080c9
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-si-rLK/values-si-rLK.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "ගෙදරට සංචාලනය කරන්න"
+ "ඉහලට සංචාලනය කරන්න"
+ "තවත් විකල්ප"
+ "අවසාන වූ"
+ "සියල්ල බලන්න"
+ "යෙදුමක් තෝරන්න"
+ "විමසුම හිස් කරන්න"
+ "සෙවුම් විමසුම"
+ "සෙවීම"
+ "විමසුම යොමු කරන්න"
+ "හඬ සෙවීම"
+ "සමඟ බෙදාගන්න"
+ "%s සමඟ බෙදාගන්න"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-sk/values-sk.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-sk/values-sk.xml
new file mode 100644
index 0000000..b5a5c18
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-sk/values-sk.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Prejsť na plochu"
+ "Prejsť hore"
+ "Ďalšie možnosti"
+ "Hotovo"
+ "Zobraziť všetko"
+ "Zvoľte aplikáciu"
+ "Vymazať dopyt"
+ "Vyhľadávací dopyt"
+ "Hľadať"
+ "Odoslať dopyt"
+ "Hlasové vyhľadávanie"
+ "Zdieľať pomocou"
+ "Zdieľať pomocou %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-sl/values-sl.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-sl/values-sl.xml
new file mode 100644
index 0000000..df54840
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-sl/values-sl.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Krmarjenje domov"
+ "Krmarjenje navzgor"
+ "Več možnosti"
+ "Končano"
+ "Pokaži vse"
+ "Izbira aplikacije"
+ "Izbris poizvedbe"
+ "Iskalna poizvedba"
+ "Iskanje"
+ "Pošiljanje poizvedbe"
+ "Glasovno iskanje"
+ "Deljenje z"
+ "Deljenje z:"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-sr/values-sr.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-sr/values-sr.xml
new file mode 100644
index 0000000..e53c9a0
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-sr/values-sr.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Одлазак на Почетну"
+ "Кретање нагоре"
+ "Још опција"
+ "Готово"
+ "Прикажи све"
+ "Избор апликације"
+ "Брисање упита"
+ "Упит за претрагу"
+ "Претрага"
+ "Слање упита"
+ "Гласовна претрага"
+ "Дели са"
+ "Дели са апликацијом %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-sv/values-sv.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-sv/values-sv.xml
new file mode 100644
index 0000000..989dd67
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-sv/values-sv.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Visa startsidan"
+ "Navigera uppåt"
+ "Fler alternativ"
+ "Klart"
+ "Visa alla"
+ "Välj en app"
+ "Ta bort frågan"
+ "Sökfråga"
+ "Sök"
+ "Skicka fråga"
+ "Röstsökning"
+ "Dela med"
+ "Dela med %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-sw/values-sw.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-sw/values-sw.xml
new file mode 100644
index 0000000..30d720e
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-sw/values-sw.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Nenda mwanzo"
+ "Nenda juu"
+ "Chaguo zaidi"
+ "Nimemaliza"
+ "Angalia zote"
+ "Chagua programu"
+ "Futa hoja"
+ "Hoja ya utafutaji"
+ "Tafuta"
+ "Wasilisha hoja"
+ "Tafuta kwa kutamka"
+ "Shiriki na:"
+ "Shiriki na %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-sw600dp/values-sw600dp.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-sw600dp/values-sw600dp.xml
new file mode 100644
index 0000000..28861ff
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-sw600dp/values-sw600dp.xml
@@ -0,0 +1,14 @@
+
+
+
+
+ 24dp
+ 64dp
+ 4dp
+ 8dp
+ 18dp
+ 580dp
+ 16dp
+ 20dp
+ 5
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-ta-rIN/values-ta-rIN.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-ta-rIN/values-ta-rIN.xml
new file mode 100644
index 0000000..1c55e0d
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-ta-rIN/values-ta-rIN.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "முகப்பிற்கு வழிசெலுத்து"
+ "மேலே வழிசெலுத்து"
+ "மேலும் விருப்பங்கள்"
+ "முடிந்தது"
+ "எல்லாம் காட்டு"
+ "பயன்பாட்டைத் தேர்வுசெய்க"
+ "வினவலை அழி"
+ "தேடல் வினவல்"
+ "தேடு"
+ "வினவலைச் சமர்ப்பி"
+ "குரல் தேடல்"
+ "இதனுடன் பகிர்"
+ "%s உடன் பகிர்"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-te-rIN/values-te-rIN.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-te-rIN/values-te-rIN.xml
new file mode 100644
index 0000000..c94bbfc
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-te-rIN/values-te-rIN.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "హోమ్కు నావిగేట్ చేయండి"
+ "పైకి నావిగేట్ చేయండి"
+ "మరిన్ని ఎంపికలు"
+ "పూర్తయింది"
+ "అన్నీ చూడండి"
+ "అనువర్తనాన్ని ఎంచుకోండి"
+ "ప్రశ్నను క్లియర్ చేయి"
+ "ప్రశ్న శోధించండి"
+ "శోధించు"
+ "ప్రశ్నని సమర్పించు"
+ "వాయిస్ శోధన"
+ "వీరితో భాగస్వామ్యం చేయి"
+ "%sతో భాగస్వామ్యం చేయి"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-th/values-th.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-th/values-th.xml
new file mode 100644
index 0000000..5686a4c
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-th/values-th.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "นำทางไปหน้าแรก"
+ "นำทางขึ้น"
+ "ตัวเลือกอื่น"
+ "เสร็จสิ้น"
+ "ดูทั้งหมด"
+ "เลือกแอป"
+ "ล้างข้อความค้นหา"
+ "ข้อความค้นหา"
+ "ค้นหา"
+ "ส่งข้อความค้นหา"
+ "ค้นหาด้วยเสียง"
+ "แชร์กับ"
+ "แชร์กับ %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-tl/values-tl.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-tl/values-tl.xml
new file mode 100644
index 0000000..8824e2b
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-tl/values-tl.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Mag-navigate patungo sa home"
+ "Mag-navigate pataas"
+ "Higit pang mga opsyon"
+ "Tapos na"
+ "Tingnan lahat"
+ "Pumili ng isang app"
+ "I-clear ang query"
+ "Query sa paghahanap"
+ "Maghanap"
+ "Isumite ang query"
+ "Paghahanap gamit ang boses"
+ "Ibahagi sa/kay"
+ "Ibahagi sa/kay %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-tr/values-tr.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-tr/values-tr.xml
new file mode 100644
index 0000000..720d032
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-tr/values-tr.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Ana ekrana git"
+ "Yukarı git"
+ "Diğer seçenekler"
+ "Tamamlandı"
+ "Tümünü göster"
+ "Bir uygulama seçin"
+ "Sorguyu temizle"
+ "Arama sorgusu"
+ "Ara"
+ "Sorguyu gönder"
+ "Sesli arama"
+ "Şununla paylaş"
+ "%s ile paylaş"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-uk/values-uk.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-uk/values-uk.xml
new file mode 100644
index 0000000..be25888
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-uk/values-uk.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Перейти на головний"
+ "Перейти вгору"
+ "Інші опції"
+ "Готово"
+ "Переглянути всі"
+ "Вибрати програму"
+ "Очистити запит"
+ "Пошуковий запит"
+ "Пошук"
+ "Надіслати запит"
+ "Голосовий пошук"
+ "Надіслати через"
+ "Надіслати через %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-ur-rPK/values-ur-rPK.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-ur-rPK/values-ur-rPK.xml
new file mode 100644
index 0000000..f7e78e7
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-ur-rPK/values-ur-rPK.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "ہوم پر نیویگیٹ کریں"
+ "اوپر نیویگیٹ کریں"
+ "مزید اختیارات"
+ "ہو گیا"
+ "سبھی دیکھیں"
+ "ایک ایپ منتخب کریں"
+ "استفسار صاف کریں"
+ "استفسار تلاش کریں"
+ "تلاش کریں"
+ "استفسار جمع کرائیں"
+ "صوتی تلاش"
+ "اشتراک کریں مع"
+ "%s کے ساتھ اشتراک کریں"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-uz-rUZ/values-uz-rUZ.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-uz-rUZ/values-uz-rUZ.xml
new file mode 100644
index 0000000..17274d7
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-uz-rUZ/values-uz-rUZ.xml
@@ -0,0 +1,17 @@
+
+
+
+
+ "Boshiga o‘tish"
+ "Yuqoriga o‘tish"
+ "Qo‘shimcha sozlamalar"
+ "Tayyor"
+ "Barchasini ko‘rish"
+ "Dastur tanlang"
+ "So‘rovni tozalash"
+ "So‘rovni izlash"
+ "Izlash"
+ "So‘rov yaratish"
+ "Ovozli qidiruv"
+ "Bo‘lishish:"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-v11/values-v11.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-v11/values-v11.xml
new file mode 100644
index 0000000..3280fbb
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-v11/values-v11.xml
@@ -0,0 +1,167 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-v12/values-v12.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-v12/values-v12.xml
new file mode 100644
index 0000000..cac0382
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-v12/values-v12.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-v14/values-v14.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-v14/values-v14.xml
new file mode 100644
index 0000000..9b9a9ed
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-v14/values-v14.xml
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-v17/values-v17.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-v17/values-v17.xml
new file mode 100644
index 0000000..75f54ee
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-v17/values-v17.xml
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-v18/values-v18.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-v18/values-v18.xml
new file mode 100644
index 0000000..7b679be
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-v18/values-v18.xml
@@ -0,0 +1,6 @@
+
+
+
+
+ 0px
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-v21/values-v21.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-v21/values-v21.xml
new file mode 100644
index 0000000..2ff6051
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-v21/values-v21.xml
@@ -0,0 +1,257 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-vi/values-vi.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-vi/values-vi.xml
new file mode 100644
index 0000000..265dca4
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-vi/values-vi.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Điều hướng về trang chủ"
+ "Điều hướng lên trên"
+ "Thêm tùy chọn"
+ "Xong"
+ "Xem tất cả"
+ "Chọn một ứng dụng"
+ "Xóa truy vấn"
+ "Tìm kiếm truy vấn"
+ "Tìm kiếm"
+ "Gửi truy vấn"
+ "Tìm kiếm bằng giọng nói"
+ "Chia sẻ với"
+ "Chia sẻ với %s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-w360dp/values-w360dp.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-w360dp/values-w360dp.xml
new file mode 100644
index 0000000..43ee72b
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-w360dp/values-w360dp.xml
@@ -0,0 +1,6 @@
+
+
+
+
+ 3
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-w480dp/values-w480dp.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-w480dp/values-w480dp.xml
new file mode 100644
index 0000000..3ee1939
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-w480dp/values-w480dp.xml
@@ -0,0 +1,7 @@
+
+
+
+
+ true
+ true
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-w500dp/values-w500dp.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-w500dp/values-w500dp.xml
new file mode 100644
index 0000000..80cea54
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-w500dp/values-w500dp.xml
@@ -0,0 +1,6 @@
+
+
+
+
+ 4
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-w600dp/values-w600dp.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-w600dp/values-w600dp.xml
new file mode 100644
index 0000000..5fa37d6
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-w600dp/values-w600dp.xml
@@ -0,0 +1,7 @@
+
+
+
+
+ 192dip
+ 5
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-w720dp/values-w720dp.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-w720dp/values-w720dp.xml
new file mode 100644
index 0000000..0b64b62
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-w720dp/values-w720dp.xml
@@ -0,0 +1,6 @@
+
+
+
+
+ false
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-w820dp/values-w820dp.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-w820dp/values-w820dp.xml
new file mode 100644
index 0000000..aa00b02
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-w820dp/values-w820dp.xml
@@ -0,0 +1,6 @@
+
+
+
+
+ 64dp
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-xlarge-land/values-xlarge-land.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-xlarge-land/values-xlarge-land.xml
new file mode 100644
index 0000000..aa701f9
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-xlarge-land/values-xlarge-land.xml
@@ -0,0 +1,6 @@
+
+
+
+
+ 256dip
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-xlarge/values-xlarge.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-xlarge/values-xlarge.xml
new file mode 100644
index 0000000..2967667
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-xlarge/values-xlarge.xml
@@ -0,0 +1,12 @@
+
+
+
+
+ false
+ 192dip
+ 60%
+ 90%
+ 50%
+ 70%
+ 5
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-zh-rCN/values-zh-rCN.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-zh-rCN/values-zh-rCN.xml
new file mode 100644
index 0000000..58a69f1
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-zh-rCN/values-zh-rCN.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "转到主屏幕"
+ "转到上一层级"
+ "更多选项"
+ "完成"
+ "查看全部"
+ "选择应用"
+ "清除查询"
+ "搜索查询"
+ "搜索"
+ "提交查询"
+ "语音搜索"
+ "分享方式"
+ "通过%s分享"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-zh-rHK/values-zh-rHK.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-zh-rHK/values-zh-rHK.xml
new file mode 100644
index 0000000..9ddfe86
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-zh-rHK/values-zh-rHK.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "瀏覽主頁"
+ "向上瀏覽"
+ "更多選項"
+ "完成"
+ "顯示全部"
+ "選擇應用程式"
+ "清除查詢"
+ "搜尋查詢"
+ "搜尋"
+ "提交查詢"
+ "語音搜尋"
+ "分享對象"
+ "與「%s」分享"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-zh-rTW/values-zh-rTW.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-zh-rTW/values-zh-rTW.xml
new file mode 100644
index 0000000..b423412
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-zh-rTW/values-zh-rTW.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "瀏覽首頁"
+ "向上瀏覽"
+ "更多選項"
+ "完成"
+ "查看全部"
+ "選擇應用程式"
+ "清除查詢"
+ "搜尋查詢"
+ "搜尋"
+ "提交查詢"
+ "語音搜尋"
+ "選擇分享對象"
+ "與「%s」分享"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-zu/values-zu.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-zu/values-zu.xml
new file mode 100644
index 0000000..4c20e93
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values-zu/values-zu.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ "Zulazulela ekhaya"
+ "Zulazulela phezulu"
+ "Izinketho eziningi"
+ "Kwenziwe"
+ "Buka konke"
+ "Khetha uhlelo lokusebenza"
+ "Sula inkinga"
+ "Umbuzo wosesho"
+ "Sesha"
+ "Hambisa umbuzo"
+ "Ukusesha ngezwi"
+ "Yabelana no-"
+ "Yabelana no-%s"
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values/values.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values/values.xml
new file mode 100644
index 0000000..20b6b0b
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/res/merged/debug/values/values.xml
@@ -0,0 +1,1460 @@
+
+
+
+
+
+
+
+
+ true
+ false
+ true
+ true
+ false
+ true
+ false
+ @android:color/black
+ #7fa87f
+ @android:color/black
+ @android:color/black
+ @color/material_deep_teal_200
+ @color/material_deep_teal_500
+ #ff424242
+ #ffeeeeee
+ #ff303030
+ #ffeeeeee
+ #80ffffff
+ #80000000
+ @color/bright_foreground_material_light
+ @color/bright_foreground_material_dark
+ @android:color/white
+ @android:color/black
+ #ff5a595b
+ #ffd6d7d7
+ #80bebebe
+ #80323232
+ #ffbebebe
+ #ff323232
+ #6680cbc4
+ #66009688
+ @color/bright_foreground_disabled_material_dark
+ @color/bright_foreground_disabled_material_light
+ @color/material_deep_teal_200
+ @color/material_deep_teal_500
+ #ff37474f
+ #ff263238
+ #ff21272b
+ #ff80cbc4
+ #ff009688
+ #ff000000
+ #ff757575
+ #ff212121
+ #ffefefef
+ #ffffffff
+ #de000000
+ #4Dffffff
+ #39000000
+ #4dffffff
+ #1f000000
+ #b3ffffff
+ #8a000000
+ #36ffffff
+ #24000000
+ #ff616161
+ #ffbdbdbd
+ #ffbdbdbd
+ #fff1f1f1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 16dp
+ 56dp
+ 4dp
+ 16dp
+ 0dp
+ 10dp
+ 6dp
+ 40dp
+ 48dp
+ 180dp
+ 5dp
+ -3dp
+ 48dp
+ 48dp
+ 36dp
+ 48dp
+ @dimen/abc_control_inset_material
+ 6dp
+ 8dp
+ @dimen/abc_control_padding_material
+ 320dp
+ 2dp
+ 4dp
+ 4dp
+ 8dp
+ 65%
+ 95%
+ 24dp
+ 18dp
+ 0.30
+ 0.26
+ 32dip
+ 8dip
+ 8dip
+ 7dp
+ 4dp
+ 10dp
+ 16dp
+ @dimen/abc_action_bar_content_inset_material
+ 296dp
+ 320dip
+ 160dip
+ 3dp
+ 14sp
+ 14sp
+ 14sp
+ 12sp
+ 34sp
+ 45sp
+ 56sp
+ 112sp
+ 24sp
+ 22sp
+ 18sp
+ 16sp
+ 14sp
+ 16sp
+ 16dp
+ 20sp
+ 20dp
+
+
+ 16dp
+ 16dp
+
+
+ 80%
+ 100%
+ 320dp
+ 320dp
+ 0.30
+ 0.26
+ 64dp
+ 64dp
+ 12dp
+ #3333B5E5
+
+
+
+
+
+
+
+
+
+ 220
+ 150
+ 2
+ 127
+ 999
+ Navigate home
+ %1$s, %2$s
+ %1$s, %2$s, %3$s
+ Navigate up
+ More options
+ Done
+ See all
+ Choose an app
+ Search…
+ Clear query
+ Search query
+ Search
+ Submit query
+ Voice search
+ Share with
+ Share with %s
+ Collapse
+
+
+ Settings
+ Parse Starter Project
+ Hello World!
+ EGmUWB7VvrlWfvnjxhC9lBwsoN4FnoMeklYoUJ3H
+ uRDoLRe6epHSgInvqHcAPnl2h1IWjoZxRnA7RiAV
+
+
+ 999+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/symbols/debug/R.txt b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/symbols/debug/R.txt
new file mode 100644
index 0000000..afb16c1
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/symbols/debug/R.txt
@@ -0,0 +1,1173 @@
+int anim abc_fade_in 0x7f050000
+int anim abc_fade_out 0x7f050001
+int anim abc_grow_fade_in_from_bottom 0x7f050002
+int anim abc_popup_enter 0x7f050003
+int anim abc_popup_exit 0x7f050004
+int anim abc_shrink_fade_out_from_bottom 0x7f050005
+int anim abc_slide_in_bottom 0x7f050006
+int anim abc_slide_in_top 0x7f050007
+int anim abc_slide_out_bottom 0x7f050008
+int anim abc_slide_out_top 0x7f050009
+int attr actionBarDivider 0x7f010064
+int attr actionBarItemBackground 0x7f010065
+int attr actionBarPopupTheme 0x7f01005e
+int attr actionBarSize 0x7f010063
+int attr actionBarSplitStyle 0x7f010060
+int attr actionBarStyle 0x7f01005f
+int attr actionBarTabBarStyle 0x7f01005a
+int attr actionBarTabStyle 0x7f010059
+int attr actionBarTabTextStyle 0x7f01005b
+int attr actionBarTheme 0x7f010061
+int attr actionBarWidgetTheme 0x7f010062
+int attr actionButtonStyle 0x7f01007e
+int attr actionDropDownStyle 0x7f01007a
+int attr actionLayout 0x7f010031
+int attr actionMenuTextAppearance 0x7f010066
+int attr actionMenuTextColor 0x7f010067
+int attr actionModeBackground 0x7f01006a
+int attr actionModeCloseButtonStyle 0x7f010069
+int attr actionModeCloseDrawable 0x7f01006c
+int attr actionModeCopyDrawable 0x7f01006e
+int attr actionModeCutDrawable 0x7f01006d
+int attr actionModeFindDrawable 0x7f010072
+int attr actionModePasteDrawable 0x7f01006f
+int attr actionModePopupWindowStyle 0x7f010074
+int attr actionModeSelectAllDrawable 0x7f010070
+int attr actionModeShareDrawable 0x7f010071
+int attr actionModeSplitBackground 0x7f01006b
+int attr actionModeStyle 0x7f010068
+int attr actionModeWebSearchDrawable 0x7f010073
+int attr actionOverflowButtonStyle 0x7f01005c
+int attr actionOverflowMenuStyle 0x7f01005d
+int attr actionProviderClass 0x7f010033
+int attr actionViewClass 0x7f010032
+int attr activityChooserViewStyle 0x7f010086
+int attr alertDialogButtonGroupStyle 0x7f0100a7
+int attr alertDialogCenterButtons 0x7f0100a8
+int attr alertDialogStyle 0x7f0100a6
+int attr alertDialogTheme 0x7f0100a9
+int attr autoCompleteTextViewStyle 0x7f0100ae
+int attr background 0x7f01000c
+int attr backgroundSplit 0x7f01000e
+int attr backgroundStacked 0x7f01000d
+int attr backgroundTint 0x7f0100c7
+int attr backgroundTintMode 0x7f0100c8
+int attr barSize 0x7f01002b
+int attr borderlessButtonStyle 0x7f010083
+int attr buttonBarButtonStyle 0x7f010080
+int attr buttonBarNegativeButtonStyle 0x7f0100ac
+int attr buttonBarNeutralButtonStyle 0x7f0100ad
+int attr buttonBarPositiveButtonStyle 0x7f0100ab
+int attr buttonBarStyle 0x7f01007f
+int attr buttonPanelSideLayout 0x7f01001f
+int attr buttonStyle 0x7f0100af
+int attr buttonStyleSmall 0x7f0100b0
+int attr checkboxStyle 0x7f0100b1
+int attr checkedTextViewStyle 0x7f0100b2
+int attr closeIcon 0x7f01003b
+int attr closeItemLayout 0x7f01001c
+int attr collapseContentDescription 0x7f0100c1
+int attr collapseIcon 0x7f0100c0
+int attr color 0x7f010025
+int attr colorAccent 0x7f0100a0
+int attr colorButtonNormal 0x7f0100a4
+int attr colorControlActivated 0x7f0100a2
+int attr colorControlHighlight 0x7f0100a3
+int attr colorControlNormal 0x7f0100a1
+int attr colorPrimary 0x7f01009e
+int attr colorPrimaryDark 0x7f01009f
+int attr colorSwitchThumbNormal 0x7f0100a5
+int attr commitIcon 0x7f010040
+int attr contentInsetEnd 0x7f010017
+int attr contentInsetLeft 0x7f010018
+int attr contentInsetRight 0x7f010019
+int attr contentInsetStart 0x7f010016
+int attr customNavigationLayout 0x7f01000f
+int attr defaultQueryHint 0x7f01003a
+int attr dialogPreferredPadding 0x7f010078
+int attr dialogTheme 0x7f010077
+int attr disableChildrenWhenDisabled 0x7f010047
+int attr displayOptions 0x7f010005
+int attr divider 0x7f01000b
+int attr dividerHorizontal 0x7f010085
+int attr dividerPadding 0x7f01002f
+int attr dividerVertical 0x7f010084
+int attr drawableSize 0x7f010027
+int attr drawerArrowStyle 0x7f010000
+int attr dropDownListViewStyle 0x7f010096
+int attr dropdownListPreferredItemHeight 0x7f01007b
+int attr editTextBackground 0x7f01008c
+int attr editTextColor 0x7f01008b
+int attr editTextStyle 0x7f0100b3
+int attr elevation 0x7f01001a
+int attr expandActivityOverflowButtonDrawable 0x7f01001e
+int attr gapBetweenBars 0x7f010028
+int attr goIcon 0x7f01003c
+int attr height 0x7f010001
+int attr hideOnContentScroll 0x7f010015
+int attr homeAsUpIndicator 0x7f01007d
+int attr homeLayout 0x7f010010
+int attr icon 0x7f010009
+int attr iconifiedByDefault 0x7f010038
+int attr indeterminateProgressStyle 0x7f010012
+int attr initialActivityCount 0x7f01001d
+int attr isLightTheme 0x7f010002
+int attr itemPadding 0x7f010014
+int attr layout 0x7f010037
+int attr listChoiceBackgroundIndicator 0x7f01009d
+int attr listDividerAlertDialog 0x7f010079
+int attr listItemLayout 0x7f010023
+int attr listLayout 0x7f010020
+int attr listPopupWindowStyle 0x7f010097
+int attr listPreferredItemHeight 0x7f010091
+int attr listPreferredItemHeightLarge 0x7f010093
+int attr listPreferredItemHeightSmall 0x7f010092
+int attr listPreferredItemPaddingLeft 0x7f010094
+int attr listPreferredItemPaddingRight 0x7f010095
+int attr logo 0x7f01000a
+int attr maxButtonHeight 0x7f0100bf
+int attr measureWithLargestChild 0x7f01002d
+int attr middleBarArrowSize 0x7f01002a
+int attr multiChoiceItemLayout 0x7f010021
+int attr navigationContentDescription 0x7f0100c3
+int attr navigationIcon 0x7f0100c2
+int attr navigationMode 0x7f010004
+int attr overlapAnchor 0x7f010035
+int attr paddingEnd 0x7f0100c5
+int attr paddingStart 0x7f0100c4
+int attr panelBackground 0x7f01009a
+int attr panelMenuListTheme 0x7f01009c
+int attr panelMenuListWidth 0x7f01009b
+int attr popupMenuStyle 0x7f010089
+int attr popupPromptView 0x7f010046
+int attr popupTheme 0x7f01001b
+int attr popupWindowStyle 0x7f01008a
+int attr preserveIconSpacing 0x7f010034
+int attr progressBarPadding 0x7f010013
+int attr progressBarStyle 0x7f010011
+int attr prompt 0x7f010044
+int attr queryBackground 0x7f010042
+int attr queryHint 0x7f010039
+int attr radioButtonStyle 0x7f0100b4
+int attr ratingBarStyle 0x7f0100b5
+int attr searchHintIcon 0x7f01003e
+int attr searchIcon 0x7f01003d
+int attr searchViewStyle 0x7f010090
+int attr selectableItemBackground 0x7f010081
+int attr selectableItemBackgroundBorderless 0x7f010082
+int attr showAsAction 0x7f010030
+int attr showDividers 0x7f01002e
+int attr showText 0x7f01004e
+int attr singleChoiceItemLayout 0x7f010022
+int attr spinBars 0x7f010026
+int attr spinnerDropDownItemStyle 0x7f01007c
+int attr spinnerMode 0x7f010045
+int attr spinnerStyle 0x7f0100b6
+int attr splitTrack 0x7f01004d
+int attr state_above_anchor 0x7f010036
+int attr submitBackground 0x7f010043
+int attr subtitle 0x7f010006
+int attr subtitleTextAppearance 0x7f0100b9
+int attr subtitleTextStyle 0x7f010008
+int attr suggestionRowLayout 0x7f010041
+int attr switchMinWidth 0x7f01004b
+int attr switchPadding 0x7f01004c
+int attr switchStyle 0x7f0100b7
+int attr switchTextAppearance 0x7f01004a
+int attr textAllCaps 0x7f010024
+int attr textAppearanceLargePopupMenu 0x7f010075
+int attr textAppearanceListItem 0x7f010098
+int attr textAppearanceListItemSmall 0x7f010099
+int attr textAppearanceSearchResultSubtitle 0x7f01008e
+int attr textAppearanceSearchResultTitle 0x7f01008d
+int attr textAppearanceSmallPopupMenu 0x7f010076
+int attr textColorAlertDialogListItem 0x7f0100aa
+int attr textColorSearchUrl 0x7f01008f
+int attr theme 0x7f0100c6
+int attr thickness 0x7f01002c
+int attr thumbTextPadding 0x7f010049
+int attr title 0x7f010003
+int attr titleMarginBottom 0x7f0100be
+int attr titleMarginEnd 0x7f0100bc
+int attr titleMarginStart 0x7f0100bb
+int attr titleMarginTop 0x7f0100bd
+int attr titleMargins 0x7f0100ba
+int attr titleTextAppearance 0x7f0100b8
+int attr titleTextStyle 0x7f010007
+int attr toolbarNavigationButtonStyle 0x7f010088
+int attr toolbarStyle 0x7f010087
+int attr topBottomBarArrowSize 0x7f010029
+int attr track 0x7f010048
+int attr voiceIcon 0x7f01003f
+int attr windowActionBar 0x7f01004f
+int attr windowActionBarOverlay 0x7f010051
+int attr windowActionModeOverlay 0x7f010052
+int attr windowFixedHeightMajor 0x7f010056
+int attr windowFixedHeightMinor 0x7f010054
+int attr windowFixedWidthMajor 0x7f010053
+int attr windowFixedWidthMinor 0x7f010055
+int attr windowMinWidthMajor 0x7f010057
+int attr windowMinWidthMinor 0x7f010058
+int attr windowNoTitle 0x7f010050
+int bool abc_action_bar_embed_tabs 0x7f090002
+int bool abc_action_bar_embed_tabs_pre_jb 0x7f090000
+int bool abc_action_bar_expanded_action_views_exclusive 0x7f090003
+int bool abc_config_actionMenuItemAllCaps 0x7f090004
+int bool abc_config_allowActionMenuItemTextWithIcon 0x7f090001
+int bool abc_config_closeDialogWhenTouchOutside 0x7f090005
+int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f090006
+int color abc_background_cache_hint_selector_material_dark 0x7f0b0033
+int color abc_background_cache_hint_selector_material_light 0x7f0b0034
+int color abc_input_method_navigation_guard 0x7f0b0000
+int color abc_primary_text_disable_only_material_dark 0x7f0b0035
+int color abc_primary_text_disable_only_material_light 0x7f0b0036
+int color abc_primary_text_material_dark 0x7f0b0037
+int color abc_primary_text_material_light 0x7f0b0038
+int color abc_search_url_text 0x7f0b0039
+int color abc_search_url_text_normal 0x7f0b0001
+int color abc_search_url_text_pressed 0x7f0b0002
+int color abc_search_url_text_selected 0x7f0b0003
+int color abc_secondary_text_material_dark 0x7f0b003a
+int color abc_secondary_text_material_light 0x7f0b003b
+int color accent_material_dark 0x7f0b0004
+int color accent_material_light 0x7f0b0005
+int color background_floating_material_dark 0x7f0b0006
+int color background_floating_material_light 0x7f0b0007
+int color background_material_dark 0x7f0b0008
+int color background_material_light 0x7f0b0009
+int color bright_foreground_disabled_material_dark 0x7f0b000a
+int color bright_foreground_disabled_material_light 0x7f0b000b
+int color bright_foreground_inverse_material_dark 0x7f0b000c
+int color bright_foreground_inverse_material_light 0x7f0b000d
+int color bright_foreground_material_dark 0x7f0b000e
+int color bright_foreground_material_light 0x7f0b000f
+int color button_material_dark 0x7f0b0010
+int color button_material_light 0x7f0b0011
+int color dim_foreground_disabled_material_dark 0x7f0b0012
+int color dim_foreground_disabled_material_light 0x7f0b0013
+int color dim_foreground_material_dark 0x7f0b0014
+int color dim_foreground_material_light 0x7f0b0015
+int color highlighted_text_material_dark 0x7f0b0016
+int color highlighted_text_material_light 0x7f0b0017
+int color hint_foreground_material_dark 0x7f0b0018
+int color hint_foreground_material_light 0x7f0b0019
+int color link_text_material_dark 0x7f0b001a
+int color link_text_material_light 0x7f0b001b
+int color material_blue_grey_800 0x7f0b001c
+int color material_blue_grey_900 0x7f0b001d
+int color material_blue_grey_950 0x7f0b001e
+int color material_deep_teal_200 0x7f0b001f
+int color material_deep_teal_500 0x7f0b0020
+int color primary_dark_material_dark 0x7f0b0021
+int color primary_dark_material_light 0x7f0b0022
+int color primary_material_dark 0x7f0b0023
+int color primary_material_light 0x7f0b0024
+int color primary_text_default_material_dark 0x7f0b0025
+int color primary_text_default_material_light 0x7f0b0026
+int color primary_text_disabled_material_dark 0x7f0b0027
+int color primary_text_disabled_material_light 0x7f0b0028
+int color ripple_material_dark 0x7f0b0029
+int color ripple_material_light 0x7f0b002a
+int color secondary_text_default_material_dark 0x7f0b002b
+int color secondary_text_default_material_light 0x7f0b002c
+int color secondary_text_disabled_material_dark 0x7f0b002d
+int color secondary_text_disabled_material_light 0x7f0b002e
+int color switch_thumb_disabled_material_dark 0x7f0b002f
+int color switch_thumb_disabled_material_light 0x7f0b0030
+int color switch_thumb_material_dark 0x7f0b003c
+int color switch_thumb_material_light 0x7f0b003d
+int color switch_thumb_normal_material_dark 0x7f0b0031
+int color switch_thumb_normal_material_light 0x7f0b0032
+int dimen abc_action_bar_content_inset_material 0x7f07000c
+int dimen abc_action_bar_default_height_material 0x7f070001
+int dimen abc_action_bar_default_padding_material 0x7f070002
+int dimen abc_action_bar_icon_vertical_padding_material 0x7f070011
+int dimen abc_action_bar_navigation_padding_start_material 0x7f07000d
+int dimen abc_action_bar_overflow_padding_end_material 0x7f07000e
+int dimen abc_action_bar_overflow_padding_start_material 0x7f070012
+int dimen abc_action_bar_progress_bar_size 0x7f070003
+int dimen abc_action_bar_stacked_max_height 0x7f070013
+int dimen abc_action_bar_stacked_tab_max_width 0x7f070014
+int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f070015
+int dimen abc_action_bar_subtitle_top_margin_material 0x7f070016
+int dimen abc_action_button_min_height_material 0x7f070017
+int dimen abc_action_button_min_width_material 0x7f070018
+int dimen abc_action_button_min_width_overflow_material 0x7f070019
+int dimen abc_alert_dialog_button_bar_height 0x7f070000
+int dimen abc_button_inset_horizontal_material 0x7f07001a
+int dimen abc_button_inset_vertical_material 0x7f07001b
+int dimen abc_button_padding_horizontal_material 0x7f07001c
+int dimen abc_button_padding_vertical_material 0x7f07001d
+int dimen abc_config_prefDialogWidth 0x7f070006
+int dimen abc_control_corner_material 0x7f07001e
+int dimen abc_control_inset_material 0x7f07001f
+int dimen abc_control_padding_material 0x7f070020
+int dimen abc_dialog_list_padding_vertical_material 0x7f070021
+int dimen abc_dialog_min_width_major 0x7f070022
+int dimen abc_dialog_min_width_minor 0x7f070023
+int dimen abc_dialog_padding_material 0x7f070024
+int dimen abc_dialog_padding_top_material 0x7f070025
+int dimen abc_disabled_alpha_material_dark 0x7f070026
+int dimen abc_disabled_alpha_material_light 0x7f070027
+int dimen abc_dropdownitem_icon_width 0x7f070028
+int dimen abc_dropdownitem_text_padding_left 0x7f070029
+int dimen abc_dropdownitem_text_padding_right 0x7f07002a
+int dimen abc_edit_text_inset_bottom_material 0x7f07002b
+int dimen abc_edit_text_inset_horizontal_material 0x7f07002c
+int dimen abc_edit_text_inset_top_material 0x7f07002d
+int dimen abc_floating_window_z 0x7f07002e
+int dimen abc_list_item_padding_horizontal_material 0x7f07002f
+int dimen abc_panel_menu_list_width 0x7f070030
+int dimen abc_search_view_preferred_width 0x7f070031
+int dimen abc_search_view_text_min_width 0x7f070007
+int dimen abc_switch_padding 0x7f07000f
+int dimen abc_text_size_body_1_material 0x7f070032
+int dimen abc_text_size_body_2_material 0x7f070033
+int dimen abc_text_size_button_material 0x7f070034
+int dimen abc_text_size_caption_material 0x7f070035
+int dimen abc_text_size_display_1_material 0x7f070036
+int dimen abc_text_size_display_2_material 0x7f070037
+int dimen abc_text_size_display_3_material 0x7f070038
+int dimen abc_text_size_display_4_material 0x7f070039
+int dimen abc_text_size_headline_material 0x7f07003a
+int dimen abc_text_size_large_material 0x7f07003b
+int dimen abc_text_size_medium_material 0x7f07003c
+int dimen abc_text_size_menu_material 0x7f07003d
+int dimen abc_text_size_small_material 0x7f07003e
+int dimen abc_text_size_subhead_material 0x7f07003f
+int dimen abc_text_size_subtitle_material_toolbar 0x7f070004
+int dimen abc_text_size_title_material 0x7f070040
+int dimen abc_text_size_title_material_toolbar 0x7f070005
+int dimen activity_horizontal_margin 0x7f070010
+int dimen activity_vertical_margin 0x7f070041
+int dimen dialog_fixed_height_major 0x7f070008
+int dimen dialog_fixed_height_minor 0x7f070009
+int dimen dialog_fixed_width_major 0x7f07000a
+int dimen dialog_fixed_width_minor 0x7f07000b
+int dimen disabled_alpha_material_dark 0x7f070042
+int dimen disabled_alpha_material_light 0x7f070043
+int dimen notification_large_icon_height 0x7f070044
+int dimen notification_large_icon_width 0x7f070045
+int dimen notification_subtext_size 0x7f070046
+int drawable abc_ab_share_pack_mtrl_alpha 0x7f020000
+int drawable abc_btn_borderless_material 0x7f020001
+int drawable abc_btn_check_material 0x7f020002
+int drawable abc_btn_check_to_on_mtrl_000 0x7f020003
+int drawable abc_btn_check_to_on_mtrl_015 0x7f020004
+int drawable abc_btn_default_mtrl_shape 0x7f020005
+int drawable abc_btn_radio_material 0x7f020006
+int drawable abc_btn_radio_to_on_mtrl_000 0x7f020007
+int drawable abc_btn_radio_to_on_mtrl_015 0x7f020008
+int drawable abc_btn_rating_star_off_mtrl_alpha 0x7f020009
+int drawable abc_btn_rating_star_on_mtrl_alpha 0x7f02000a
+int drawable abc_btn_switch_to_on_mtrl_00001 0x7f02000b
+int drawable abc_btn_switch_to_on_mtrl_00012 0x7f02000c
+int drawable abc_cab_background_internal_bg 0x7f02000d
+int drawable abc_cab_background_top_material 0x7f02000e
+int drawable abc_cab_background_top_mtrl_alpha 0x7f02000f
+int drawable abc_dialog_material_background_dark 0x7f020010
+int drawable abc_dialog_material_background_light 0x7f020011
+int drawable abc_edit_text_material 0x7f020012
+int drawable abc_ic_ab_back_mtrl_am_alpha 0x7f020013
+int drawable abc_ic_clear_mtrl_alpha 0x7f020014
+int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f020015
+int drawable abc_ic_go_search_api_mtrl_alpha 0x7f020016
+int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f020017
+int drawable abc_ic_menu_cut_mtrl_alpha 0x7f020018
+int drawable abc_ic_menu_moreoverflow_mtrl_alpha 0x7f020019
+int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f02001a
+int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f02001b
+int drawable abc_ic_menu_share_mtrl_alpha 0x7f02001c
+int drawable abc_ic_search_api_mtrl_alpha 0x7f02001d
+int drawable abc_ic_voice_search_api_mtrl_alpha 0x7f02001e
+int drawable abc_item_background_holo_dark 0x7f02001f
+int drawable abc_item_background_holo_light 0x7f020020
+int drawable abc_list_divider_mtrl_alpha 0x7f020021
+int drawable abc_list_focused_holo 0x7f020022
+int drawable abc_list_longpressed_holo 0x7f020023
+int drawable abc_list_pressed_holo_dark 0x7f020024
+int drawable abc_list_pressed_holo_light 0x7f020025
+int drawable abc_list_selector_background_transition_holo_dark 0x7f020026
+int drawable abc_list_selector_background_transition_holo_light 0x7f020027
+int drawable abc_list_selector_disabled_holo_dark 0x7f020028
+int drawable abc_list_selector_disabled_holo_light 0x7f020029
+int drawable abc_list_selector_holo_dark 0x7f02002a
+int drawable abc_list_selector_holo_light 0x7f02002b
+int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f02002c
+int drawable abc_popup_background_mtrl_mult 0x7f02002d
+int drawable abc_ratingbar_full_material 0x7f02002e
+int drawable abc_spinner_mtrl_am_alpha 0x7f02002f
+int drawable abc_spinner_textfield_background_material 0x7f020030
+int drawable abc_switch_thumb_material 0x7f020031
+int drawable abc_switch_track_mtrl_alpha 0x7f020032
+int drawable abc_tab_indicator_material 0x7f020033
+int drawable abc_tab_indicator_mtrl_alpha 0x7f020034
+int drawable abc_text_cursor_mtrl_alpha 0x7f020035
+int drawable abc_textfield_activated_mtrl_alpha 0x7f020036
+int drawable abc_textfield_default_mtrl_alpha 0x7f020037
+int drawable abc_textfield_search_activated_mtrl_alpha 0x7f020038
+int drawable abc_textfield_search_default_mtrl_alpha 0x7f020039
+int drawable abc_textfield_search_material 0x7f02003a
+int drawable notification_template_icon_bg 0x7f02003b
+int id action0 0x7f0c004f
+int id action_bar 0x7f0c0040
+int id action_bar_activity_content 0x7f0c0000
+int id action_bar_container 0x7f0c003f
+int id action_bar_root 0x7f0c003b
+int id action_bar_spinner 0x7f0c0001
+int id action_bar_subtitle 0x7f0c0024
+int id action_bar_title 0x7f0c0023
+int id action_context_bar 0x7f0c0041
+int id action_divider 0x7f0c0053
+int id action_menu_divider 0x7f0c0002
+int id action_menu_presenter 0x7f0c0003
+int id action_mode_bar 0x7f0c003d
+int id action_mode_bar_stub 0x7f0c003c
+int id action_mode_close_button 0x7f0c0025
+int id action_settings 0x7f0c005c
+int id activity_chooser_view_content 0x7f0c0026
+int id alertTitle 0x7f0c0030
+int id always 0x7f0c0016
+int id beginning 0x7f0c0013
+int id buttonPanel 0x7f0c0036
+int id cancel_action 0x7f0c0050
+int id checkbox 0x7f0c0038
+int id chronometer 0x7f0c0056
+int id collapseActionView 0x7f0c0017
+int id contentPanel 0x7f0c0031
+int id custom 0x7f0c0035
+int id customPanel 0x7f0c0034
+int id decor_content_parent 0x7f0c003e
+int id default_activity_button 0x7f0c0029
+int id dialog 0x7f0c001b
+int id disableHome 0x7f0c000c
+int id dropdown 0x7f0c001c
+int id edit_query 0x7f0c0042
+int id end 0x7f0c0014
+int id end_padder 0x7f0c005b
+int id expand_activities_button 0x7f0c0027
+int id expanded_menu 0x7f0c0037
+int id home 0x7f0c0004
+int id homeAsUp 0x7f0c000d
+int id icon 0x7f0c002b
+int id ifRoom 0x7f0c0018
+int id image 0x7f0c0028
+int id info 0x7f0c005a
+int id line1 0x7f0c0054
+int id line3 0x7f0c0058
+int id listMode 0x7f0c0009
+int id list_item 0x7f0c002a
+int id media_actions 0x7f0c0052
+int id middle 0x7f0c0015
+int id multiply 0x7f0c001e
+int id never 0x7f0c0019
+int id none 0x7f0c000e
+int id normal 0x7f0c000a
+int id parentPanel 0x7f0c002d
+int id progress_circular 0x7f0c0005
+int id progress_horizontal 0x7f0c0006
+int id radio 0x7f0c003a
+int id screen 0x7f0c001f
+int id scrollView 0x7f0c0032
+int id search_badge 0x7f0c0044
+int id search_bar 0x7f0c0043
+int id search_button 0x7f0c0045
+int id search_close_btn 0x7f0c004a
+int id search_edit_frame 0x7f0c0046
+int id search_go_btn 0x7f0c004c
+int id search_mag_icon 0x7f0c0047
+int id search_plate 0x7f0c0048
+int id search_src_text 0x7f0c0049
+int id search_voice_btn 0x7f0c004d
+int id select_dialog_listview 0x7f0c004e
+int id shortcut 0x7f0c0039
+int id showCustom 0x7f0c000f
+int id showHome 0x7f0c0010
+int id showTitle 0x7f0c0011
+int id split_action_bar 0x7f0c0007
+int id src_atop 0x7f0c0020
+int id src_in 0x7f0c0021
+int id src_over 0x7f0c0022
+int id status_bar_latest_event_content 0x7f0c0051
+int id submit_area 0x7f0c004b
+int id tabMode 0x7f0c000b
+int id text 0x7f0c0059
+int id text2 0x7f0c0057
+int id textSpacerNoButtons 0x7f0c0033
+int id time 0x7f0c0055
+int id title 0x7f0c002c
+int id title_template 0x7f0c002f
+int id topPanel 0x7f0c002e
+int id up 0x7f0c0008
+int id useLogo 0x7f0c0012
+int id withText 0x7f0c001a
+int id wrap_content 0x7f0c001d
+int integer abc_config_activityDefaultDur 0x7f0a0001
+int integer abc_config_activityShortDur 0x7f0a0002
+int integer abc_max_action_buttons 0x7f0a0000
+int integer cancel_button_image_alpha 0x7f0a0003
+int integer status_bar_notification_info_maxnum 0x7f0a0004
+int layout abc_action_bar_title_item 0x7f040000
+int layout abc_action_bar_up_container 0x7f040001
+int layout abc_action_bar_view_list_nav_layout 0x7f040002
+int layout abc_action_menu_item_layout 0x7f040003
+int layout abc_action_menu_layout 0x7f040004
+int layout abc_action_mode_bar 0x7f040005
+int layout abc_action_mode_close_item_material 0x7f040006
+int layout abc_activity_chooser_view 0x7f040007
+int layout abc_activity_chooser_view_list_item 0x7f040008
+int layout abc_alert_dialog_material 0x7f040009
+int layout abc_dialog_title_material 0x7f04000a
+int layout abc_expanded_menu_layout 0x7f04000b
+int layout abc_list_menu_item_checkbox 0x7f04000c
+int layout abc_list_menu_item_icon 0x7f04000d
+int layout abc_list_menu_item_layout 0x7f04000e
+int layout abc_list_menu_item_radio 0x7f04000f
+int layout abc_popup_menu_item_layout 0x7f040010
+int layout abc_screen_content_include 0x7f040011
+int layout abc_screen_simple 0x7f040012
+int layout abc_screen_simple_overlay_action_mode 0x7f040013
+int layout abc_screen_toolbar 0x7f040014
+int layout abc_search_dropdown_item_icons_2line 0x7f040015
+int layout abc_search_view 0x7f040016
+int layout abc_select_dialog_material 0x7f040017
+int layout abc_simple_dropdown_hint 0x7f040018
+int layout activity_main 0x7f040019
+int layout notification_media_action 0x7f04001a
+int layout notification_media_cancel_action 0x7f04001b
+int layout notification_template_big_media 0x7f04001c
+int layout notification_template_big_media_narrow 0x7f04001d
+int layout notification_template_lines 0x7f04001e
+int layout notification_template_media 0x7f04001f
+int layout notification_template_part_chronometer 0x7f040020
+int layout notification_template_part_time 0x7f040021
+int layout select_dialog_item_material 0x7f040022
+int layout select_dialog_multichoice_material 0x7f040023
+int layout select_dialog_singlechoice_material 0x7f040024
+int layout support_simple_spinner_dropdown_item 0x7f040025
+int menu menu_main 0x7f0d0000
+int mipmap ic_launcher 0x7f030000
+int string abc_action_bar_home_description 0x7f060000
+int string abc_action_bar_home_description_format 0x7f06000d
+int string abc_action_bar_home_subtitle_description_format 0x7f06000e
+int string abc_action_bar_up_description 0x7f060001
+int string abc_action_menu_overflow_description 0x7f060002
+int string abc_action_mode_done 0x7f060003
+int string abc_activity_chooser_view_see_all 0x7f060004
+int string abc_activitychooserview_choose_application 0x7f060005
+int string abc_search_hint 0x7f06000f
+int string abc_searchview_description_clear 0x7f060006
+int string abc_searchview_description_query 0x7f060007
+int string abc_searchview_description_search 0x7f060008
+int string abc_searchview_description_submit 0x7f060009
+int string abc_searchview_description_voice 0x7f06000a
+int string abc_shareactionprovider_share_with 0x7f06000b
+int string abc_shareactionprovider_share_with_application 0x7f06000c
+int string abc_toolbar_collapse_description 0x7f060010
+int string action_settings 0x7f060011
+int string app_name 0x7f060012
+int string hello_world 0x7f060013
+int string parse_app_id 0x7f060014
+int string parse_client_key 0x7f060015
+int string status_bar_notification_info_overflow 0x7f060016
+int style AlertDialog_AppCompat 0x7f080073
+int style AlertDialog_AppCompat_Light 0x7f080074
+int style Animation_AppCompat_Dialog 0x7f080075
+int style Animation_AppCompat_DropDownUp 0x7f080076
+int style AppTheme 0x7f080077
+int style Base_AlertDialog_AppCompat 0x7f080078
+int style Base_AlertDialog_AppCompat_Light 0x7f080079
+int style Base_Animation_AppCompat_Dialog 0x7f08007a
+int style Base_Animation_AppCompat_DropDownUp 0x7f08007b
+int style Base_DialogWindowTitle_AppCompat 0x7f08007c
+int style Base_DialogWindowTitleBackground_AppCompat 0x7f08007d
+int style Base_TextAppearance_AppCompat 0x7f08002e
+int style Base_TextAppearance_AppCompat_Body1 0x7f08002f
+int style Base_TextAppearance_AppCompat_Body2 0x7f080030
+int style Base_TextAppearance_AppCompat_Button 0x7f080018
+int style Base_TextAppearance_AppCompat_Caption 0x7f080031
+int style Base_TextAppearance_AppCompat_Display1 0x7f080032
+int style Base_TextAppearance_AppCompat_Display2 0x7f080033
+int style Base_TextAppearance_AppCompat_Display3 0x7f080034
+int style Base_TextAppearance_AppCompat_Display4 0x7f080035
+int style Base_TextAppearance_AppCompat_Headline 0x7f080036
+int style Base_TextAppearance_AppCompat_Inverse 0x7f080003
+int style Base_TextAppearance_AppCompat_Large 0x7f080037
+int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f080004
+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f080038
+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f080039
+int style Base_TextAppearance_AppCompat_Medium 0x7f08003a
+int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f080005
+int style Base_TextAppearance_AppCompat_Menu 0x7f08003b
+int style Base_TextAppearance_AppCompat_SearchResult 0x7f08007e
+int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f08003c
+int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f08003d
+int style Base_TextAppearance_AppCompat_Small 0x7f08003e
+int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f080006
+int style Base_TextAppearance_AppCompat_Subhead 0x7f08003f
+int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f080007
+int style Base_TextAppearance_AppCompat_Title 0x7f080040
+int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f080008
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f080041
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f080042
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f080043
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f080044
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f080045
+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f080046
+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f080047
+int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f08007f
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f080048
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f080049
+int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f08004a
+int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f08004b
+int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f080080
+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f08004c
+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f08004d
+int style Base_Theme_AppCompat 0x7f08004e
+int style Base_Theme_AppCompat_CompactMenu 0x7f080081
+int style Base_Theme_AppCompat_Dialog 0x7f080009
+int style Base_Theme_AppCompat_Dialog_Alert 0x7f080082
+int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f080083
+int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f080084
+int style Base_Theme_AppCompat_DialogWhenLarge 0x7f080001
+int style Base_Theme_AppCompat_Light 0x7f08004f
+int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f080085
+int style Base_Theme_AppCompat_Light_Dialog 0x7f08000a
+int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f080086
+int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f080087
+int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f080088
+int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f080002
+int style Base_ThemeOverlay_AppCompat 0x7f080089
+int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f08008a
+int style Base_ThemeOverlay_AppCompat_Dark 0x7f08008b
+int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f08008c
+int style Base_ThemeOverlay_AppCompat_Light 0x7f08008d
+int style Base_V11_Theme_AppCompat_Dialog 0x7f08000b
+int style Base_V11_Theme_AppCompat_Light_Dialog 0x7f08000c
+int style Base_V12_Widget_AppCompat_AutoCompleteTextView 0x7f080014
+int style Base_V12_Widget_AppCompat_EditText 0x7f080015
+int style Base_V21_Theme_AppCompat 0x7f080050
+int style Base_V21_Theme_AppCompat_Dialog 0x7f080051
+int style Base_V21_Theme_AppCompat_Light 0x7f080052
+int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f080053
+int style Base_V7_Theme_AppCompat 0x7f08008e
+int style Base_V7_Theme_AppCompat_Dialog 0x7f08008f
+int style Base_V7_Theme_AppCompat_Light 0x7f080090
+int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f080091
+int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f080092
+int style Base_V7_Widget_AppCompat_EditText 0x7f080093
+int style Base_Widget_AppCompat_ActionBar 0x7f080094
+int style Base_Widget_AppCompat_ActionBar_Solid 0x7f080095
+int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f080096
+int style Base_Widget_AppCompat_ActionBar_TabText 0x7f080054
+int style Base_Widget_AppCompat_ActionBar_TabView 0x7f080055
+int style Base_Widget_AppCompat_ActionButton 0x7f080056
+int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f080057
+int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f080058
+int style Base_Widget_AppCompat_ActionMode 0x7f080097
+int style Base_Widget_AppCompat_ActivityChooserView 0x7f080098
+int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f080016
+int style Base_Widget_AppCompat_Button 0x7f080059
+int style Base_Widget_AppCompat_Button_Borderless 0x7f08005a
+int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f08005b
+int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f080099
+int style Base_Widget_AppCompat_Button_Small 0x7f08005c
+int style Base_Widget_AppCompat_ButtonBar 0x7f08005d
+int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f08009a
+int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f08005e
+int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f08005f
+int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f08009b
+int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f080000
+int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f08009c
+int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f080060
+int style Base_Widget_AppCompat_EditText 0x7f080017
+int style Base_Widget_AppCompat_Light_ActionBar 0x7f08009d
+int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f08009e
+int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f08009f
+int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f080061
+int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f080062
+int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f080063
+int style Base_Widget_AppCompat_Light_PopupMenu 0x7f080064
+int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f080065
+int style Base_Widget_AppCompat_ListPopupWindow 0x7f080066
+int style Base_Widget_AppCompat_ListView 0x7f080067
+int style Base_Widget_AppCompat_ListView_DropDown 0x7f080068
+int style Base_Widget_AppCompat_ListView_Menu 0x7f080069
+int style Base_Widget_AppCompat_PopupMenu 0x7f08006a
+int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f08006b
+int style Base_Widget_AppCompat_PopupWindow 0x7f0800a0
+int style Base_Widget_AppCompat_ProgressBar 0x7f08000d
+int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f08000e
+int style Base_Widget_AppCompat_RatingBar 0x7f08006c
+int style Base_Widget_AppCompat_SearchView 0x7f0800a1
+int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0800a2
+int style Base_Widget_AppCompat_Spinner 0x7f08000f
+int style Base_Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f08006d
+int style Base_Widget_AppCompat_Spinner_Underlined 0x7f08006e
+int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f08006f
+int style Base_Widget_AppCompat_Toolbar 0x7f0800a3
+int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f080070
+int style Platform_AppCompat 0x7f080010
+int style Platform_AppCompat_Light 0x7f080011
+int style Platform_ThemeOverlay_AppCompat_Dark 0x7f080071
+int style Platform_ThemeOverlay_AppCompat_Light 0x7f080072
+int style Platform_V11_AppCompat 0x7f080012
+int style Platform_V11_AppCompat_Light 0x7f080013
+int style Platform_V14_AppCompat 0x7f080019
+int style Platform_V14_AppCompat_Light 0x7f08001a
+int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f080020
+int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f080021
+int style RtlOverlay_Widget_AppCompat_ActionButton_Overflow 0x7f080022
+int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f080023
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f080024
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f080025
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f080026
+int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f080027
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f080028
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f080029
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f08002a
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f08002b
+int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f08002c
+int style RtlOverlay_Widget_AppCompat_Toolbar_Button_Navigation 0x7f08002d
+int style TextAppearance_AppCompat 0x7f0800a4
+int style TextAppearance_AppCompat_Body1 0x7f0800a5
+int style TextAppearance_AppCompat_Body2 0x7f0800a6
+int style TextAppearance_AppCompat_Button 0x7f0800a7
+int style TextAppearance_AppCompat_Caption 0x7f0800a8
+int style TextAppearance_AppCompat_Display1 0x7f0800a9
+int style TextAppearance_AppCompat_Display2 0x7f0800aa
+int style TextAppearance_AppCompat_Display3 0x7f0800ab
+int style TextAppearance_AppCompat_Display4 0x7f0800ac
+int style TextAppearance_AppCompat_Headline 0x7f0800ad
+int style TextAppearance_AppCompat_Inverse 0x7f0800ae
+int style TextAppearance_AppCompat_Large 0x7f0800af
+int style TextAppearance_AppCompat_Large_Inverse 0x7f0800b0
+int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0800b1
+int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0800b2
+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0800b3
+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0800b4
+int style TextAppearance_AppCompat_Medium 0x7f0800b5
+int style TextAppearance_AppCompat_Medium_Inverse 0x7f0800b6
+int style TextAppearance_AppCompat_Menu 0x7f0800b7
+int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0800b8
+int style TextAppearance_AppCompat_SearchResult_Title 0x7f0800b9
+int style TextAppearance_AppCompat_Small 0x7f0800ba
+int style TextAppearance_AppCompat_Small_Inverse 0x7f0800bb
+int style TextAppearance_AppCompat_Subhead 0x7f0800bc
+int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0800bd
+int style TextAppearance_AppCompat_Title 0x7f0800be
+int style TextAppearance_AppCompat_Title_Inverse 0x7f0800bf
+int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0800c0
+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0800c1
+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0800c2
+int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0800c3
+int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0800c4
+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0800c5
+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0800c6
+int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0800c7
+int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0800c8
+int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0800c9
+int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0800ca
+int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0800cb
+int style TextAppearance_AppCompat_Widget_Switch 0x7f0800cc
+int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0800cd
+int style TextAppearance_StatusBar_EventContent 0x7f08001b
+int style TextAppearance_StatusBar_EventContent_Info 0x7f08001c
+int style TextAppearance_StatusBar_EventContent_Line2 0x7f08001d
+int style TextAppearance_StatusBar_EventContent_Time 0x7f08001e
+int style TextAppearance_StatusBar_EventContent_Title 0x7f08001f
+int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0800ce
+int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0800cf
+int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0800d0
+int style Theme_AppCompat 0x7f0800d1
+int style Theme_AppCompat_CompactMenu 0x7f0800d2
+int style Theme_AppCompat_Dialog 0x7f0800d3
+int style Theme_AppCompat_Dialog_Alert 0x7f0800d4
+int style Theme_AppCompat_Dialog_MinWidth 0x7f0800d5
+int style Theme_AppCompat_DialogWhenLarge 0x7f0800d6
+int style Theme_AppCompat_Light 0x7f0800d7
+int style Theme_AppCompat_Light_DarkActionBar 0x7f0800d8
+int style Theme_AppCompat_Light_Dialog 0x7f0800d9
+int style Theme_AppCompat_Light_Dialog_Alert 0x7f0800da
+int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0800db
+int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0800dc
+int style Theme_AppCompat_Light_NoActionBar 0x7f0800dd
+int style Theme_AppCompat_NoActionBar 0x7f0800de
+int style ThemeOverlay_AppCompat 0x7f0800df
+int style ThemeOverlay_AppCompat_ActionBar 0x7f0800e0
+int style ThemeOverlay_AppCompat_Dark 0x7f0800e1
+int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0800e2
+int style ThemeOverlay_AppCompat_Light 0x7f0800e3
+int style Widget_AppCompat_ActionBar 0x7f0800e4
+int style Widget_AppCompat_ActionBar_Solid 0x7f0800e5
+int style Widget_AppCompat_ActionBar_TabBar 0x7f0800e6
+int style Widget_AppCompat_ActionBar_TabText 0x7f0800e7
+int style Widget_AppCompat_ActionBar_TabView 0x7f0800e8
+int style Widget_AppCompat_ActionButton 0x7f0800e9
+int style Widget_AppCompat_ActionButton_CloseMode 0x7f0800ea
+int style Widget_AppCompat_ActionButton_Overflow 0x7f0800eb
+int style Widget_AppCompat_ActionMode 0x7f0800ec
+int style Widget_AppCompat_ActivityChooserView 0x7f0800ed
+int style Widget_AppCompat_AutoCompleteTextView 0x7f0800ee
+int style Widget_AppCompat_Button 0x7f0800ef
+int style Widget_AppCompat_Button_Borderless 0x7f0800f0
+int style Widget_AppCompat_Button_Borderless_Colored 0x7f0800f1
+int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0800f2
+int style Widget_AppCompat_Button_Small 0x7f0800f3
+int style Widget_AppCompat_ButtonBar 0x7f0800f4
+int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f0800f5
+int style Widget_AppCompat_CompoundButton_CheckBox 0x7f0800f6
+int style Widget_AppCompat_CompoundButton_RadioButton 0x7f0800f7
+int style Widget_AppCompat_CompoundButton_Switch 0x7f0800f8
+int style Widget_AppCompat_DrawerArrowToggle 0x7f0800f9
+int style Widget_AppCompat_DropDownItem_Spinner 0x7f0800fa
+int style Widget_AppCompat_EditText 0x7f0800fb
+int style Widget_AppCompat_Light_ActionBar 0x7f0800fc
+int style Widget_AppCompat_Light_ActionBar_Solid 0x7f0800fd
+int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f0800fe
+int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f0800ff
+int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f080100
+int style Widget_AppCompat_Light_ActionBar_TabText 0x7f080101
+int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f080102
+int style Widget_AppCompat_Light_ActionBar_TabView 0x7f080103
+int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f080104
+int style Widget_AppCompat_Light_ActionButton 0x7f080105
+int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f080106
+int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f080107
+int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f080108
+int style Widget_AppCompat_Light_ActivityChooserView 0x7f080109
+int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f08010a
+int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f08010b
+int style Widget_AppCompat_Light_ListPopupWindow 0x7f08010c
+int style Widget_AppCompat_Light_ListView_DropDown 0x7f08010d
+int style Widget_AppCompat_Light_PopupMenu 0x7f08010e
+int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f08010f
+int style Widget_AppCompat_Light_SearchView 0x7f080110
+int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f080111
+int style Widget_AppCompat_ListPopupWindow 0x7f080112
+int style Widget_AppCompat_ListView 0x7f080113
+int style Widget_AppCompat_ListView_DropDown 0x7f080114
+int style Widget_AppCompat_ListView_Menu 0x7f080115
+int style Widget_AppCompat_PopupMenu 0x7f080116
+int style Widget_AppCompat_PopupMenu_Overflow 0x7f080117
+int style Widget_AppCompat_PopupWindow 0x7f080118
+int style Widget_AppCompat_ProgressBar 0x7f080119
+int style Widget_AppCompat_ProgressBar_Horizontal 0x7f08011a
+int style Widget_AppCompat_RatingBar 0x7f08011b
+int style Widget_AppCompat_SearchView 0x7f08011c
+int style Widget_AppCompat_SearchView_ActionBar 0x7f08011d
+int style Widget_AppCompat_Spinner 0x7f08011e
+int style Widget_AppCompat_Spinner_DropDown 0x7f08011f
+int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f080120
+int style Widget_AppCompat_Spinner_Underlined 0x7f080121
+int style Widget_AppCompat_TextView_SpinnerItem 0x7f080122
+int style Widget_AppCompat_Toolbar 0x7f080123
+int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f080124
+int[] styleable ActionBar { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01007d }
+int styleable ActionBar_background 10
+int styleable ActionBar_backgroundSplit 12
+int styleable ActionBar_backgroundStacked 11
+int styleable ActionBar_contentInsetEnd 21
+int styleable ActionBar_contentInsetLeft 22
+int styleable ActionBar_contentInsetRight 23
+int styleable ActionBar_contentInsetStart 20
+int styleable ActionBar_customNavigationLayout 13
+int styleable ActionBar_displayOptions 3
+int styleable ActionBar_divider 9
+int styleable ActionBar_elevation 24
+int styleable ActionBar_height 0
+int styleable ActionBar_hideOnContentScroll 19
+int styleable ActionBar_homeAsUpIndicator 26
+int styleable ActionBar_homeLayout 14
+int styleable ActionBar_icon 7
+int styleable ActionBar_indeterminateProgressStyle 16
+int styleable ActionBar_itemPadding 18
+int styleable ActionBar_logo 8
+int styleable ActionBar_navigationMode 2
+int styleable ActionBar_popupTheme 25
+int styleable ActionBar_progressBarPadding 17
+int styleable ActionBar_progressBarStyle 15
+int styleable ActionBar_subtitle 4
+int styleable ActionBar_subtitleTextStyle 6
+int styleable ActionBar_title 1
+int styleable ActionBar_titleTextStyle 5
+int[] styleable ActionBarLayout { 0x010100b3 }
+int styleable ActionBarLayout_android_layout_gravity 0
+int[] styleable ActionMenuItemView { 0x0101013f }
+int styleable ActionMenuItemView_android_minWidth 0
+int[] styleable ActionMenuView { }
+int[] styleable ActionMode { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c }
+int styleable ActionMode_background 3
+int styleable ActionMode_backgroundSplit 4
+int styleable ActionMode_closeItemLayout 5
+int styleable ActionMode_height 0
+int styleable ActionMode_subtitleTextStyle 2
+int styleable ActionMode_titleTextStyle 1
+int[] styleable ActivityChooserView { 0x7f01001d, 0x7f01001e }
+int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 1
+int styleable ActivityChooserView_initialActivityCount 0
+int[] styleable AlertDialog { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 }
+int styleable AlertDialog_android_layout 0
+int styleable AlertDialog_buttonPanelSideLayout 1
+int styleable AlertDialog_listItemLayout 5
+int styleable AlertDialog_listLayout 2
+int styleable AlertDialog_multiChoiceItemLayout 3
+int styleable AlertDialog_singleChoiceItemLayout 4
+int[] styleable AppCompatTextView { 0x01010034, 0x7f010024 }
+int styleable AppCompatTextView_android_textAppearance 0
+int styleable AppCompatTextView_textAllCaps 1
+int[] styleable DrawerArrowToggle { 0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c }
+int styleable DrawerArrowToggle_barSize 6
+int styleable DrawerArrowToggle_color 0
+int styleable DrawerArrowToggle_drawableSize 2
+int styleable DrawerArrowToggle_gapBetweenBars 3
+int styleable DrawerArrowToggle_middleBarArrowSize 5
+int styleable DrawerArrowToggle_spinBars 1
+int styleable DrawerArrowToggle_thickness 7
+int styleable DrawerArrowToggle_topBottomBarArrowSize 4
+int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f01002d, 0x7f01002e, 0x7f01002f }
+int styleable LinearLayoutCompat_android_baselineAligned 2
+int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3
+int styleable LinearLayoutCompat_android_gravity 0
+int styleable LinearLayoutCompat_android_orientation 1
+int styleable LinearLayoutCompat_android_weightSum 4
+int styleable LinearLayoutCompat_divider 5
+int styleable LinearLayoutCompat_dividerPadding 8
+int styleable LinearLayoutCompat_measureWithLargestChild 6
+int styleable LinearLayoutCompat_showDividers 7
+int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }
+int styleable LinearLayoutCompat_Layout_android_layout_gravity 0
+int styleable LinearLayoutCompat_Layout_android_layout_height 2
+int styleable LinearLayoutCompat_Layout_android_layout_weight 3
+int styleable LinearLayoutCompat_Layout_android_layout_width 1
+int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad }
+int styleable ListPopupWindow_android_dropDownHorizontalOffset 0
+int styleable ListPopupWindow_android_dropDownVerticalOffset 1
+int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }
+int styleable MenuGroup_android_checkableBehavior 5
+int styleable MenuGroup_android_enabled 0
+int styleable MenuGroup_android_id 1
+int styleable MenuGroup_android_menuCategory 3
+int styleable MenuGroup_android_orderInCategory 4
+int styleable MenuGroup_android_visible 2
+int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033 }
+int styleable MenuItem_actionLayout 14
+int styleable MenuItem_actionProviderClass 16
+int styleable MenuItem_actionViewClass 15
+int styleable MenuItem_android_alphabeticShortcut 9
+int styleable MenuItem_android_checkable 11
+int styleable MenuItem_android_checked 3
+int styleable MenuItem_android_enabled 1
+int styleable MenuItem_android_icon 0
+int styleable MenuItem_android_id 2
+int styleable MenuItem_android_menuCategory 5
+int styleable MenuItem_android_numericShortcut 10
+int styleable MenuItem_android_onClick 12
+int styleable MenuItem_android_orderInCategory 6
+int styleable MenuItem_android_title 7
+int styleable MenuItem_android_titleCondensed 8
+int styleable MenuItem_android_visible 4
+int styleable MenuItem_showAsAction 13
+int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f010034 }
+int styleable MenuView_android_headerBackground 4
+int styleable MenuView_android_horizontalDivider 2
+int styleable MenuView_android_itemBackground 5
+int styleable MenuView_android_itemIconDisabledAlpha 6
+int styleable MenuView_android_itemTextAppearance 1
+int styleable MenuView_android_verticalDivider 3
+int styleable MenuView_android_windowAnimationStyle 0
+int styleable MenuView_preserveIconSpacing 7
+int[] styleable PopupWindow { 0x01010176, 0x7f010035 }
+int styleable PopupWindow_android_popupBackground 0
+int styleable PopupWindow_overlapAnchor 1
+int[] styleable PopupWindowBackgroundState { 0x7f010036 }
+int styleable PopupWindowBackgroundState_state_above_anchor 0
+int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043 }
+int styleable SearchView_android_focusable 0
+int styleable SearchView_android_imeOptions 3
+int styleable SearchView_android_inputType 2
+int styleable SearchView_android_maxWidth 1
+int styleable SearchView_closeIcon 8
+int styleable SearchView_commitIcon 13
+int styleable SearchView_defaultQueryHint 7
+int styleable SearchView_goIcon 9
+int styleable SearchView_iconifiedByDefault 5
+int styleable SearchView_layout 4
+int styleable SearchView_queryBackground 15
+int styleable SearchView_queryHint 6
+int styleable SearchView_searchHintIcon 11
+int styleable SearchView_searchIcon 10
+int styleable SearchView_submitBackground 16
+int styleable SearchView_suggestionRowLayout 14
+int styleable SearchView_voiceIcon 12
+int[] styleable Spinner { 0x010100af, 0x010100d4, 0x01010175, 0x01010176, 0x01010262, 0x010102ac, 0x010102ad, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047 }
+int styleable Spinner_android_background 1
+int styleable Spinner_android_dropDownHorizontalOffset 5
+int styleable Spinner_android_dropDownSelector 2
+int styleable Spinner_android_dropDownVerticalOffset 6
+int styleable Spinner_android_dropDownWidth 4
+int styleable Spinner_android_gravity 0
+int styleable Spinner_android_popupBackground 3
+int styleable Spinner_disableChildrenWhenDisabled 10
+int styleable Spinner_popupPromptView 9
+int styleable Spinner_prompt 7
+int styleable Spinner_spinnerMode 8
+int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e }
+int styleable SwitchCompat_android_textOff 1
+int styleable SwitchCompat_android_textOn 0
+int styleable SwitchCompat_android_thumb 2
+int styleable SwitchCompat_showText 9
+int styleable SwitchCompat_splitTrack 8
+int styleable SwitchCompat_switchMinWidth 6
+int styleable SwitchCompat_switchPadding 7
+int styleable SwitchCompat_switchTextAppearance 5
+int styleable SwitchCompat_thumbTextPadding 4
+int styleable SwitchCompat_track 3
+int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x7f010024 }
+int styleable TextAppearance_android_textColor 3
+int styleable TextAppearance_android_textSize 0
+int styleable TextAppearance_android_textStyle 2
+int styleable TextAppearance_android_typeface 1
+int styleable TextAppearance_textAllCaps 4
+int[] styleable Theme { 0x01010057, 0x010100ae, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7 }
+int styleable Theme_actionBarDivider 23
+int styleable Theme_actionBarItemBackground 24
+int styleable Theme_actionBarPopupTheme 17
+int styleable Theme_actionBarSize 22
+int styleable Theme_actionBarSplitStyle 19
+int styleable Theme_actionBarStyle 18
+int styleable Theme_actionBarTabBarStyle 13
+int styleable Theme_actionBarTabStyle 12
+int styleable Theme_actionBarTabTextStyle 14
+int styleable Theme_actionBarTheme 20
+int styleable Theme_actionBarWidgetTheme 21
+int styleable Theme_actionButtonStyle 49
+int styleable Theme_actionDropDownStyle 45
+int styleable Theme_actionMenuTextAppearance 25
+int styleable Theme_actionMenuTextColor 26
+int styleable Theme_actionModeBackground 29
+int styleable Theme_actionModeCloseButtonStyle 28
+int styleable Theme_actionModeCloseDrawable 31
+int styleable Theme_actionModeCopyDrawable 33
+int styleable Theme_actionModeCutDrawable 32
+int styleable Theme_actionModeFindDrawable 37
+int styleable Theme_actionModePasteDrawable 34
+int styleable Theme_actionModePopupWindowStyle 39
+int styleable Theme_actionModeSelectAllDrawable 35
+int styleable Theme_actionModeShareDrawable 36
+int styleable Theme_actionModeSplitBackground 30
+int styleable Theme_actionModeStyle 27
+int styleable Theme_actionModeWebSearchDrawable 38
+int styleable Theme_actionOverflowButtonStyle 15
+int styleable Theme_actionOverflowMenuStyle 16
+int styleable Theme_activityChooserViewStyle 57
+int styleable Theme_alertDialogButtonGroupStyle 90
+int styleable Theme_alertDialogCenterButtons 91
+int styleable Theme_alertDialogStyle 89
+int styleable Theme_alertDialogTheme 92
+int styleable Theme_android_windowAnimationStyle 1
+int styleable Theme_android_windowIsFloating 0
+int styleable Theme_autoCompleteTextViewStyle 97
+int styleable Theme_borderlessButtonStyle 54
+int styleable Theme_buttonBarButtonStyle 51
+int styleable Theme_buttonBarNegativeButtonStyle 95
+int styleable Theme_buttonBarNeutralButtonStyle 96
+int styleable Theme_buttonBarPositiveButtonStyle 94
+int styleable Theme_buttonBarStyle 50
+int styleable Theme_buttonStyle 98
+int styleable Theme_buttonStyleSmall 99
+int styleable Theme_checkboxStyle 100
+int styleable Theme_checkedTextViewStyle 101
+int styleable Theme_colorAccent 83
+int styleable Theme_colorButtonNormal 87
+int styleable Theme_colorControlActivated 85
+int styleable Theme_colorControlHighlight 86
+int styleable Theme_colorControlNormal 84
+int styleable Theme_colorPrimary 81
+int styleable Theme_colorPrimaryDark 82
+int styleable Theme_colorSwitchThumbNormal 88
+int styleable Theme_dialogPreferredPadding 43
+int styleable Theme_dialogTheme 42
+int styleable Theme_dividerHorizontal 56
+int styleable Theme_dividerVertical 55
+int styleable Theme_dropDownListViewStyle 73
+int styleable Theme_dropdownListPreferredItemHeight 46
+int styleable Theme_editTextBackground 63
+int styleable Theme_editTextColor 62
+int styleable Theme_editTextStyle 102
+int styleable Theme_homeAsUpIndicator 48
+int styleable Theme_listChoiceBackgroundIndicator 80
+int styleable Theme_listDividerAlertDialog 44
+int styleable Theme_listPopupWindowStyle 74
+int styleable Theme_listPreferredItemHeight 68
+int styleable Theme_listPreferredItemHeightLarge 70
+int styleable Theme_listPreferredItemHeightSmall 69
+int styleable Theme_listPreferredItemPaddingLeft 71
+int styleable Theme_listPreferredItemPaddingRight 72
+int styleable Theme_panelBackground 77
+int styleable Theme_panelMenuListTheme 79
+int styleable Theme_panelMenuListWidth 78
+int styleable Theme_popupMenuStyle 60
+int styleable Theme_popupWindowStyle 61
+int styleable Theme_radioButtonStyle 103
+int styleable Theme_ratingBarStyle 104
+int styleable Theme_searchViewStyle 67
+int styleable Theme_selectableItemBackground 52
+int styleable Theme_selectableItemBackgroundBorderless 53
+int styleable Theme_spinnerDropDownItemStyle 47
+int styleable Theme_spinnerStyle 105
+int styleable Theme_switchStyle 106
+int styleable Theme_textAppearanceLargePopupMenu 40
+int styleable Theme_textAppearanceListItem 75
+int styleable Theme_textAppearanceListItemSmall 76
+int styleable Theme_textAppearanceSearchResultSubtitle 65
+int styleable Theme_textAppearanceSearchResultTitle 64
+int styleable Theme_textAppearanceSmallPopupMenu 41
+int styleable Theme_textColorAlertDialogListItem 93
+int styleable Theme_textColorSearchUrl 66
+int styleable Theme_toolbarNavigationButtonStyle 59
+int styleable Theme_toolbarStyle 58
+int styleable Theme_windowActionBar 2
+int styleable Theme_windowActionBarOverlay 4
+int styleable Theme_windowActionModeOverlay 5
+int styleable Theme_windowFixedHeightMajor 9
+int styleable Theme_windowFixedHeightMinor 7
+int styleable Theme_windowFixedWidthMajor 6
+int styleable Theme_windowFixedWidthMinor 8
+int styleable Theme_windowMinWidthMajor 10
+int styleable Theme_windowMinWidthMinor 11
+int styleable Theme_windowNoTitle 3
+int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3 }
+int styleable Toolbar_android_gravity 0
+int styleable Toolbar_android_minHeight 1
+int styleable Toolbar_collapseContentDescription 18
+int styleable Toolbar_collapseIcon 17
+int styleable Toolbar_contentInsetEnd 5
+int styleable Toolbar_contentInsetLeft 6
+int styleable Toolbar_contentInsetRight 7
+int styleable Toolbar_contentInsetStart 4
+int styleable Toolbar_maxButtonHeight 16
+int styleable Toolbar_navigationContentDescription 20
+int styleable Toolbar_navigationIcon 19
+int styleable Toolbar_popupTheme 8
+int styleable Toolbar_subtitle 3
+int styleable Toolbar_subtitleTextAppearance 10
+int styleable Toolbar_title 2
+int styleable Toolbar_titleMarginBottom 15
+int styleable Toolbar_titleMarginEnd 13
+int styleable Toolbar_titleMarginStart 12
+int styleable Toolbar_titleMarginTop 14
+int styleable Toolbar_titleMargins 11
+int styleable Toolbar_titleTextAppearance 9
+int[] styleable View { 0x01010000, 0x010100da, 0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8 }
+int styleable View_android_focusable 1
+int styleable View_android_theme 0
+int styleable View_backgroundTint 5
+int styleable View_backgroundTintMode 6
+int styleable View_paddingEnd 3
+int styleable View_paddingStart 2
+int styleable View_theme 4
+int[] styleable ViewStubCompat { 0x010100d0, 0x010100f2, 0x010100f3 }
+int styleable ViewStubCompat_android_id 0
+int styleable ViewStubCompat_android_inflatedId 2
+int styleable ViewStubCompat_android_layout 1
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/outputs/logs/manifest-merger-debug-report.txt b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/outputs/logs/manifest-merger-debug-report.txt
new file mode 100644
index 0000000..e1b17af
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/outputs/logs/manifest-merger-debug-report.txt
@@ -0,0 +1,145 @@
+-- Merging decision tree log ---
+manifest
+ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:10:1-70:12
+ package
+ ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:11:5-32
+ INJECTED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml
+ INJECTED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml
+ android:versionName
+ INJECTED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml
+ INJECTED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml
+ xmlns:android
+ ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:10:11-69
+ android:versionCode
+ INJECTED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml
+ INJECTED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml
+uses-permission#android.permission.INTERNET
+ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:13:5-67
+ android:name
+ ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:13:22-64
+uses-permission#android.permission.ACCESS_NETWORK_STATE
+ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:14:5-79
+ android:name
+ ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:14:22-76
+uses-permission#android.permission.WAKE_LOCK
+ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:18:5-68
+ android:name
+ ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:18:22-65
+uses-permission#android.permission.VIBRATE
+ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:19:5-66
+ android:name
+ ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:19:22-63
+uses-permission#android.permission.GET_ACCOUNTS
+ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:20:5-71
+ android:name
+ ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:20:22-68
+uses-permission#com.google.android.c2dm.permission.RECEIVE
+ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:21:5-82
+ android:name
+ ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:21:22-79
+permission#com.parse.starter.permission.C2D_MESSAGE
+ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:23:5-24:67
+ android:protectionLevel
+ ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:23:17-52
+ android:name
+ ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:24:9-64
+uses-permission#com.parse.starter.permission.C2D_MESSAGE
+ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:25:5-80
+ android:name
+ ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:25:22-77
+application
+ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:27:5-68:19
+MERGED from [com.android.support:appcompat-v7:22.2.0] /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/AndroidManifest.xml:22:5-20
+MERGED from [com.android.support:support-v4:22.2.0] /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/support-v4/22.2.0/AndroidManifest.xml:22:5-20
+ android:label
+ ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:31:9-41
+ android:allowBackup
+ ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:29:9-35
+ android:icon
+ ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:30:9-43
+ android:theme
+ ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:32:9-40
+ android:name
+ ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:28:9-43
+meta-data#com.parse.APPLICATION_ID
+ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:33:9-35:52
+ android:value
+ ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:35:13-49
+ android:name
+ ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:34:13-52
+meta-data#com.parse.CLIENT_KEY
+ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:36:9-38:56
+ android:value
+ ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:38:13-53
+ android:name
+ ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:37:13-48
+activity#com.parse.starter.MainActivity
+ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:40:9-48:20
+ android:label
+ ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:42:13-45
+ android:name
+ ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:41:13-41
+intent-filter#android.intent.action.MAIN+android.intent.category.LAUNCHER
+ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:43:13-47:29
+action#android.intent.action.MAIN
+ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:44:17-69
+ android:name
+ ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:44:25-66
+category#android.intent.category.LAUNCHER
+ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:46:17-77
+ android:name
+ ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:46:27-74
+service#com.parse.PushService
+ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:50:9-57
+ android:name
+ ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:50:18-54
+receiver#com.parse.ParsePushBroadcastReceiver
+ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:51:9-58:20
+ android:exported
+ ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:52:13-37
+ android:name
+ ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:51:19-70
+intent-filter#com.parse.push.intent.DELETE+com.parse.push.intent.OPEN+com.parse.push.intent.RECEIVE
+ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:53:13-57:29
+action#com.parse.push.intent.RECEIVE
+ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:54:17-72
+ android:name
+ ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:54:25-69
+action#com.parse.push.intent.DELETE
+ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:55:17-71
+ android:name
+ ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:55:25-68
+action#com.parse.push.intent.OPEN
+ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:56:17-69
+ android:name
+ ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:56:25-66
+receiver#com.parse.GcmBroadcastReceiver
+ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:59:9-67:20
+ android:permission
+ ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:60:13-73
+ android:name
+ ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:59:19-64
+intent-filter#com.google.android.c2dm.intent.RECEIVE+com.google.android.c2dm.intent.REGISTRATION+com.parse.starter
+ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:61:13-66:29
+action#com.google.android.c2dm.intent.RECEIVE
+ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:62:17-81
+ android:name
+ ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:62:25-78
+action#com.google.android.c2dm.intent.REGISTRATION
+ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:63:17-86
+ android:name
+ ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:63:25-83
+category#com.parse.starter
+ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:65:17-62
+ android:name
+ ADDED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml:65:27-59
+uses-sdk
+INJECTED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml reason: use-sdk injection requested
+MERGED from [com.android.support:appcompat-v7:22.2.0] /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/AndroidManifest.xml:20:5-43
+MERGED from [com.android.support:support-v4:22.2.0] /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/build/intermediates/exploded-aar/com.android.support/support-v4/22.2.0/AndroidManifest.xml:20:5-43
+ android:targetSdkVersion
+ INJECTED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml
+ INJECTED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml
+ android:minSdkVersion
+ INJECTED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml
+ INJECTED from /Users/hramos/Downloads/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/proguard-rules.pro b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/proguard-rules.pro
new file mode 100644
index 0000000..fcd0a5d
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/proguard-rules.pro
@@ -0,0 +1,29 @@
+# Add project specific ProGuard rules here.
+# By default, the flags in this file are appended to flags specified
+# in /usr/local/opt/android-sdk/tools/proguard/proguard-android.txt
+# You can edit the include path and order by changing the proguardFiles
+# directive in build.gradle.
+#
+# For more details, see
+# http://developer.android.com/guide/developing/tools/proguard.html
+
+# Add any project specific keep options here:
+
+# If your project uses WebView with JS, uncomment the following
+# and specify the fully qualified class name to the JavaScript interface
+# class:
+#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
+# public *;
+#}
+
+# Keep source file names, line numbers, and Parse class/method names for easier debugging
+-keepattributes SourceFile,LineNumberTable
+-keepnames class com.parse.** { *; }
+
+# Required for Parse
+-keepattributes *Annotation*
+-keepattributes Signature
+-dontwarn android.net.SSLCertificateSocketFactory
+-dontwarn android.app.Notification
+-dontwarn com.squareup.**
+-dontwarn okio.**
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..b7e6111
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/AndroidManifest.xml
@@ -0,0 +1,70 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/java/com/parse/starter/MainActivity.java b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/java/com/parse/starter/MainActivity.java
new file mode 100644
index 0000000..c3d3d2e
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/java/com/parse/starter/MainActivity.java
@@ -0,0 +1,50 @@
+/*
+ * Copyright (c) 2015-present, Parse, LLC.
+ * All rights reserved.
+ *
+ * This source code is licensed under the BSD-style license found in the
+ * LICENSE file in the root directory of this source tree. An additional grant
+ * of patent rights can be found in the PATENTS file in the same directory.
+ */
+package com.parse.starter;
+
+import android.os.Bundle;
+import android.support.v7.app.ActionBarActivity;
+import android.view.Menu;
+import android.view.MenuItem;
+
+import com.parse.ParseAnalytics;
+
+
+public class MainActivity extends ActionBarActivity {
+
+ @Override
+ protected void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+ setContentView(R.layout.activity_main);
+
+ ParseAnalytics.trackAppOpenedInBackground(getIntent());
+ }
+
+ @Override
+ public boolean onCreateOptionsMenu(Menu menu) {
+ // Inflate the menu; this adds items to the action bar if it is present.
+ getMenuInflater().inflate(R.menu.menu_main, menu);
+ return true;
+ }
+
+ @Override
+ public boolean onOptionsItemSelected(MenuItem item) {
+ // Handle action bar item clicks here. The action bar will
+ // automatically handle clicks on the Home/Up button, so long
+ // as you specify a parent activity in AndroidManifest.xml.
+ int id = item.getItemId();
+
+ //noinspection SimplifiableIfStatement
+ if (id == R.id.action_settings) {
+ return true;
+ }
+
+ return super.onOptionsItemSelected(item);
+ }
+}
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/java/com/parse/starter/StarterApplication.java b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/java/com/parse/starter/StarterApplication.java
new file mode 100644
index 0000000..a4941bf
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/java/com/parse/starter/StarterApplication.java
@@ -0,0 +1,38 @@
+/*
+ * Copyright (c) 2015-present, Parse, LLC.
+ * All rights reserved.
+ *
+ * This source code is licensed under the BSD-style license found in the
+ * LICENSE file in the root directory of this source tree. An additional grant
+ * of patent rights can be found in the PATENTS file in the same directory.
+ */
+package com.parse.starter;
+
+import android.app.Application;
+
+import com.parse.Parse;
+import com.parse.ParseACL;
+import com.parse.ParseInstallation;
+import com.parse.ParseUser;
+
+
+public class StarterApplication extends Application {
+
+ @Override
+ public void onCreate() {
+ super.onCreate();
+
+ // Enable Local Datastore.
+ Parse.enableLocalDatastore(this);
+
+ // Add your initialization code here
+ Parse.initialize(this);
+ ParseInstallation.getCurrentInstallation().saveInBackground();
+
+ ParseUser.enableAutomaticUser();
+ ParseACL defaultACL = new ParseACL();
+ // Optionally enable public read access.
+ // defaultACL.setPublicReadAccess(true);
+ ParseACL.setDefaultACL(defaultACL, true);
+ }
+}
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/res/layout/activity_main.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/res/layout/activity_main.xml
new file mode 100644
index 0000000..5985da7
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/res/layout/activity_main.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/res/menu/menu_main.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/res/menu/menu_main.xml
new file mode 100644
index 0000000..3ffc1aa
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/res/menu/menu_main.xml
@@ -0,0 +1,17 @@
+
+
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/res/mipmap-hdpi/ic_launcher.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/res/mipmap-hdpi/ic_launcher.png
new file mode 100644
index 0000000..cde69bc
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/res/mipmap-hdpi/ic_launcher.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/res/mipmap-mdpi/ic_launcher.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/res/mipmap-mdpi/ic_launcher.png
new file mode 100644
index 0000000..c133a0c
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/res/mipmap-mdpi/ic_launcher.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/res/mipmap-xhdpi/ic_launcher.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/res/mipmap-xhdpi/ic_launcher.png
new file mode 100644
index 0000000..bfa42f0
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/res/mipmap-xhdpi/ic_launcher.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/res/mipmap-xxhdpi/ic_launcher.png b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/res/mipmap-xxhdpi/ic_launcher.png
new file mode 100644
index 0000000..324e72c
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/res/mipmap-xxhdpi/ic_launcher.png differ
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/res/values-w820dp/dimens.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/res/values-w820dp/dimens.xml
new file mode 100644
index 0000000..2594198
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/res/values-w820dp/dimens.xml
@@ -0,0 +1,14 @@
+
+
+
+ 64dp
+
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/res/values/dimens.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/res/values/dimens.xml
new file mode 100644
index 0000000..3f29312
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/res/values/dimens.xml
@@ -0,0 +1,13 @@
+
+
+
+ 16dp
+ 16dp
+
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/res/values/strings.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/res/values/strings.xml
new file mode 100644
index 0000000..e3fa5ae
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/res/values/strings.xml
@@ -0,0 +1,18 @@
+
+
+
+ EGmUWB7VvrlWfvnjxhC9lBwsoN4FnoMeklYoUJ3H
+ uRDoLRe6epHSgInvqHcAPnl2h1IWjoZxRnA7RiAV
+
+ Parse Starter Project
+
+ Hello World!
+ Settings
+
diff --git a/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/res/values/styles.xml b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/res/values/styles.xml
new file mode 100644
index 0000000..7577122
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/ParseStarterProject/src/main/res/values/styles.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
diff --git a/Parse-Starter-Project-1.12.0-Push/build.gradle b/Parse-Starter-Project-1.12.0-Push/build.gradle
new file mode 100644
index 0000000..e1feb49
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/build.gradle
@@ -0,0 +1,23 @@
+// Top-level build file where you can add configuration options common to all sub-projects/modules.
+buildscript {
+ repositories {
+ mavenCentral()
+ }
+ dependencies {
+ classpath 'com.android.tools.build:gradle:1.3.1'
+ }
+}
+
+allprojects {
+ repositories {
+ mavenCentral()
+ }
+}
+
+ext {
+ compileSdkVersion = 22
+ buildToolsVersion = "23.0.1"
+
+ minSdkVersion = 9
+ targetSdkVersion = 23
+}
diff --git a/Parse-Starter-Project-1.12.0-Push/gradle/wrapper/gradle-wrapper.jar b/Parse-Starter-Project-1.12.0-Push/gradle/wrapper/gradle-wrapper.jar
new file mode 100644
index 0000000..667288a
Binary files /dev/null and b/Parse-Starter-Project-1.12.0-Push/gradle/wrapper/gradle-wrapper.jar differ
diff --git a/Parse-Starter-Project-1.12.0-Push/gradle/wrapper/gradle-wrapper.properties b/Parse-Starter-Project-1.12.0-Push/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 0000000..cd481ed
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,6 @@
+#Thu Nov 06 11:00:14 PST 2014
+distributionBase=GRADLE_USER_HOME
+distributionPath=wrapper/dists
+zipStoreBase=GRADLE_USER_HOME
+zipStorePath=wrapper/dists
+distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-all.zip
diff --git a/Parse-Starter-Project-1.12.0-Push/gradlew b/Parse-Starter-Project-1.12.0-Push/gradlew
new file mode 100755
index 0000000..91a7e26
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/gradlew
@@ -0,0 +1,164 @@
+#!/usr/bin/env bash
+
+##############################################################################
+##
+## Gradle start up script for UN*X
+##
+##############################################################################
+
+# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+DEFAULT_JVM_OPTS=""
+
+APP_NAME="Gradle"
+APP_BASE_NAME=`basename "$0"`
+
+# Use the maximum available, or set MAX_FD != -1 to use that value.
+MAX_FD="maximum"
+
+warn ( ) {
+ echo "$*"
+}
+
+die ( ) {
+ echo
+ echo "$*"
+ echo
+ exit 1
+}
+
+# OS specific support (must be 'true' or 'false').
+cygwin=false
+msys=false
+darwin=false
+case "`uname`" in
+ CYGWIN* )
+ cygwin=true
+ ;;
+ Darwin* )
+ darwin=true
+ ;;
+ MINGW* )
+ msys=true
+ ;;
+esac
+
+# For Cygwin, ensure paths are in UNIX format before anything is touched.
+if $cygwin ; then
+ [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
+fi
+
+# Attempt to set APP_HOME
+# Resolve links: $0 may be a link
+PRG="$0"
+# Need this for relative symlinks.
+while [ -h "$PRG" ] ; do
+ ls=`ls -ld "$PRG"`
+ link=`expr "$ls" : '.*-> \(.*\)$'`
+ if expr "$link" : '/.*' > /dev/null; then
+ PRG="$link"
+ else
+ PRG=`dirname "$PRG"`"/$link"
+ fi
+done
+SAVED="`pwd`"
+cd "`dirname \"$PRG\"`/" >&-
+APP_HOME="`pwd -P`"
+cd "$SAVED" >&-
+
+CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
+
+# Determine the Java command to use to start the JVM.
+if [ -n "$JAVA_HOME" ] ; then
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+ # IBM's JDK on AIX uses strange locations for the executables
+ JAVACMD="$JAVA_HOME/jre/sh/java"
+ else
+ JAVACMD="$JAVA_HOME/bin/java"
+ fi
+ if [ ! -x "$JAVACMD" ] ; then
+ die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+ fi
+else
+ JAVACMD="java"
+ which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+fi
+
+# Increase the maximum file descriptors if we can.
+if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then
+ MAX_FD_LIMIT=`ulimit -H -n`
+ if [ $? -eq 0 ] ; then
+ if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
+ MAX_FD="$MAX_FD_LIMIT"
+ fi
+ ulimit -n $MAX_FD
+ if [ $? -ne 0 ] ; then
+ warn "Could not set maximum file descriptor limit: $MAX_FD"
+ fi
+ else
+ warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
+ fi
+fi
+
+# For Darwin, add options to specify how the application appears in the dock
+if $darwin; then
+ GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
+fi
+
+# For Cygwin, switch paths to Windows format before running java
+if $cygwin ; then
+ APP_HOME=`cygpath --path --mixed "$APP_HOME"`
+ CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
+
+ # We build the pattern for arguments to be converted via cygpath
+ ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
+ SEP=""
+ for dir in $ROOTDIRSRAW ; do
+ ROOTDIRS="$ROOTDIRS$SEP$dir"
+ SEP="|"
+ done
+ OURCYGPATTERN="(^($ROOTDIRS))"
+ # Add a user-defined pattern to the cygpath arguments
+ if [ "$GRADLE_CYGPATTERN" != "" ] ; then
+ OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
+ fi
+ # Now convert the arguments - kludge to limit ourselves to /bin/sh
+ i=0
+ for arg in "$@" ; do
+ CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
+ CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
+
+ if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
+ eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
+ else
+ eval `echo args$i`="\"$arg\""
+ fi
+ i=$((i+1))
+ done
+ case $i in
+ (0) set -- ;;
+ (1) set -- "$args0" ;;
+ (2) set -- "$args0" "$args1" ;;
+ (3) set -- "$args0" "$args1" "$args2" ;;
+ (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
+ (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
+ (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
+ (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
+ (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
+ (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
+ esac
+fi
+
+# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules
+function splitJvmOpts() {
+ JVM_OPTS=("$@")
+}
+eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS
+JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME"
+
+exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@"
diff --git a/Parse-Starter-Project-1.12.0-Push/gradlew.bat b/Parse-Starter-Project-1.12.0-Push/gradlew.bat
new file mode 100644
index 0000000..aec9973
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/gradlew.bat
@@ -0,0 +1,90 @@
+@if "%DEBUG%" == "" @echo off
+@rem ##########################################################################
+@rem
+@rem Gradle startup script for Windows
+@rem
+@rem ##########################################################################
+
+@rem Set local scope for the variables with windows NT shell
+if "%OS%"=="Windows_NT" setlocal
+
+@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+set DEFAULT_JVM_OPTS=
+
+set DIRNAME=%~dp0
+if "%DIRNAME%" == "" set DIRNAME=.
+set APP_BASE_NAME=%~n0
+set APP_HOME=%DIRNAME%
+
+@rem Find java.exe
+if defined JAVA_HOME goto findJavaFromJavaHome
+
+set JAVA_EXE=java.exe
+%JAVA_EXE% -version >NUL 2>&1
+if "%ERRORLEVEL%" == "0" goto init
+
+echo.
+echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:findJavaFromJavaHome
+set JAVA_HOME=%JAVA_HOME:"=%
+set JAVA_EXE=%JAVA_HOME%/bin/java.exe
+
+if exist "%JAVA_EXE%" goto init
+
+echo.
+echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:init
+@rem Get command-line arguments, handling Windowz variants
+
+if not "%OS%" == "Windows_NT" goto win9xME_args
+if "%@eval[2+2]" == "4" goto 4NT_args
+
+:win9xME_args
+@rem Slurp the command line arguments.
+set CMD_LINE_ARGS=
+set _SKIP=2
+
+:win9xME_args_slurp
+if "x%~1" == "x" goto execute
+
+set CMD_LINE_ARGS=%*
+goto execute
+
+:4NT_args
+@rem Get arguments from the 4NT Shell from JP Software
+set CMD_LINE_ARGS=%$
+
+:execute
+@rem Setup the command line
+
+set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
+
+@rem Execute Gradle
+"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
+
+:end
+@rem End local scope for the variables with windows NT shell
+if "%ERRORLEVEL%"=="0" goto mainEnd
+
+:fail
+rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
+rem the _cmd.exe /c_ return code!
+if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
+exit /b 1
+
+:mainEnd
+if "%OS%"=="Windows_NT" endlocal
+
+:omega
diff --git a/Parse-Starter-Project-1.12.0-Push/settings.gradle b/Parse-Starter-Project-1.12.0-Push/settings.gradle
new file mode 100644
index 0000000..ad1bb0f
--- /dev/null
+++ b/Parse-Starter-Project-1.12.0-Push/settings.gradle
@@ -0,0 +1 @@
+include ':ParseStarterProject'
diff --git a/README.md b/README.md
index 0f5fb6d..df6d3cf 100644
--- a/README.md
+++ b/README.md
@@ -1,22 +1,11 @@
-Push Notification Tutorial
-==========================
+Push Notification Tutorials
+===========================
-This project is a simple demonstration of using Push Notifications with Parse.
+This repository is a simple demonstration of using Push Notifications with Parse. Select your target platform to learn more:
-How to Run - Android
-----------------
-
-1. Clone the repository and open the project at Android/.
-2. Add your Parse application id and client key in `Application.java`.
-
-How to Run - iOS
-----------------
-
-1. Clone the repository and open the Xcode project at iOS/PushNotificationTutorial.xcodeproj.
-2. Add your Parse application id and client key in `AppDelegate.m`
-3. Follow the associated tutorial to create and set the appropriate provisioning profile and App ID.
-
-Learn More
-----------
-
-To learn more, take a look at the [Android Push Notifications tutorial](https://parse.com/tutorials/android-push-notifications) or the [iOS Push Notifications tutorial](https://parse.com/tutorials/push-notifications).
+* [Android](/Android)
+* [iOS and OS X](/iOS)
+* [Unity](/Unity)
+* [Windows](/Windows)
+* [Windows Phone](/WindowsPhone)
+* [Xamarin](/Xamarin)
diff --git a/iOS/Bolts.framework/Bolts b/iOS/Bolts.framework/Bolts
deleted file mode 100644
index b28bf9e..0000000
Binary files a/iOS/Bolts.framework/Bolts and /dev/null differ
diff --git a/iOS/Bolts.framework/Headers/BFAppLink.h b/iOS/Bolts.framework/Headers/BFAppLink.h
deleted file mode 100644
index aa89efc..0000000
--- a/iOS/Bolts.framework/Headers/BFAppLink.h
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * Copyright (c) 2014, Facebook, Inc.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- *
- */
-
-#import
-
-/*! The version of the App Link protocol that this library supports */
-FOUNDATION_EXPORT NSString *const BFAppLinkVersion;
-
-/*!
- Contains App Link metadata relevant for navigation on this device
- derived from the HTML at a given URL.
- */
-@interface BFAppLink : NSObject
-
-/*!
- Creates a BFAppLink with the given list of BFAppLinkTargets and target URL.
-
- Generally, this will only be used by implementers of the BFAppLinkResolving protocol,
- as these implementers will produce App Link metadata for a given URL.
-
- @param sourceURL the URL from which this App Link is derived
- @param targets an ordered list of BFAppLinkTargets for this platform derived
- from App Link metadata.
- @param webURL the fallback web URL, if any, for the app link.
- */
-+ (instancetype)appLinkWithSourceURL:(NSURL *)sourceURL
- targets:(NSArray *)targets
- webURL:(NSURL *)webURL;
-
-/*! The URL from which this BFAppLink was derived */
-@property (nonatomic, strong, readonly) NSURL *sourceURL;
-
-/*!
- The ordered list of targets applicable to this platform that will be used
- for navigation.
- */
-@property (nonatomic, copy, readonly) NSArray *targets;
-
-/*! The fallback web URL to use if no targets are installed on this device. */
-@property (nonatomic, strong, readonly) NSURL *webURL;
-
-@end
diff --git a/iOS/Bolts.framework/Headers/BFAppLinkNavigation.h b/iOS/Bolts.framework/Headers/BFAppLinkNavigation.h
deleted file mode 100644
index d459f72..0000000
--- a/iOS/Bolts.framework/Headers/BFAppLinkNavigation.h
+++ /dev/null
@@ -1,93 +0,0 @@
-/*
- * Copyright (c) 2014, Facebook, Inc.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- *
- */
-
-#import
-
-#import
-
-/*!
- The result of calling navigate on a BFAppLinkNavigation
- */
-typedef NS_ENUM(NSInteger, BFAppLinkNavigationType) {
- /*! Indicates that the navigation failed and no app was opened */
- BFAppLinkNavigationTypeFailure,
- /*! Indicates that the navigation succeeded by opening the URL in the browser */
- BFAppLinkNavigationTypeBrowser,
- /*! Indicates that the navigation succeeded by opening the URL in an app on the device */
- BFAppLinkNavigationTypeApp
-};
-
-@protocol BFAppLinkResolving;
-@class BFTask;
-
-/*!
- Represents a pending request to navigate to an App Link. Most developers will
- simply use navigateToURLInBackground: to open a URL, but developers can build
- custom requests with additional navigation and app data attached to them by
- creating BFAppLinkNavigations themselves.
- */
-@interface BFAppLinkNavigation : NSObject
-
-/*!
- The extras for the AppLinkNavigation. This will generally contain application-specific
- data that should be passed along with the request, such as advertiser or affiliate IDs or
- other such metadata relevant on this device.
- */
-@property (nonatomic, copy, readonly) NSDictionary *extras;
-
-/*!
- The al_applink_data for the AppLinkNavigation. This will generally contain data common to
- navigation attempts such as back-links, user agents, and other information that may be used
- in routing and handling an App Link request.
- */
-@property (nonatomic, copy, readonly) NSDictionary *appLinkData;
-
-/*! The AppLink to navigate to */
-@property (nonatomic, strong, readonly) BFAppLink *appLink;
-
-/*! Creates an AppLinkNavigation with the given link, extras, and App Link data */
-+ (instancetype)navigationWithAppLink:(BFAppLink *)appLink
- extras:(NSDictionary *)extras
- appLinkData:(NSDictionary *)appLinkData;
-
-/*! Performs the navigation */
-- (BFAppLinkNavigationType)navigate:(NSError **)error;
-
-/*! Returns a BFAppLink for the given URL */
-+ (BFTask *)resolveAppLinkInBackground:(NSURL *)destination;
-
-/*! Returns a BFAppLink for the given URL using the given App Link resolution strategy */
-+ (BFTask *)resolveAppLinkInBackground:(NSURL *)destination resolver:(id)resolver;
-
-/*! Navigates to a BFAppLink and returns whether it opened in-app or in-browser */
-+ (BFAppLinkNavigationType)navigateToAppLink:(BFAppLink *)link error:(NSError **)error;
-
-/*! Navigates to a URL (an asynchronous action) and returns a BFNavigationType */
-+ (BFTask *)navigateToURLInBackground:(NSURL *)destination;
-
-/*!
- Navigates to a URL (an asynchronous action) using the given App Link resolution
- strategy and returns a BFNavigationType
- */
-+ (BFTask *)navigateToURLInBackground:(NSURL *)destination resolver:(id)resolver;
-
-/*!
- Gets the default resolver to be used for App Link resolution. If the developer has not set one explicitly,
- a basic, built-in resolver will be used.
- */
-+ (id)defaultResolver;
-
-/*!
- Sets the default resolver to be used for App Link resolution. Setting this to nil will revert the
- default resolver to the basic, built-in resolver provided by Bolts.
- */
-+ (void)setDefaultResolver:(id)resolver;
-
-@end
diff --git a/iOS/Bolts.framework/Headers/BFAppLinkResolving.h b/iOS/Bolts.framework/Headers/BFAppLinkResolving.h
deleted file mode 100644
index b67bdba..0000000
--- a/iOS/Bolts.framework/Headers/BFAppLinkResolving.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * Copyright (c) 2014, Facebook, Inc.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- *
- */
-
-#import
-
-@class BFTask;
-
-/*!
- Implement this protocol to provide an alternate strategy for resolving
- App Links that may include pre-fetching, caching, or querying for App Link
- data from an index provided by a service provider.
- */
-@protocol BFAppLinkResolving
-
-/*!
- Asynchronously resolves App Link data for a given URL.
-
- @param url The URL to resolve into an App Link.
- @returns A BFTask that will return a BFAppLink for the given URL.
- */
-- (BFTask *)appLinkFromURLInBackground:(NSURL *)url;
-
-@end
diff --git a/iOS/Bolts.framework/Headers/BFAppLinkReturnToRefererController.h b/iOS/Bolts.framework/Headers/BFAppLinkReturnToRefererController.h
deleted file mode 100644
index d19465e..0000000
--- a/iOS/Bolts.framework/Headers/BFAppLinkReturnToRefererController.h
+++ /dev/null
@@ -1,87 +0,0 @@
-/*
- * Copyright (c) 2014, Facebook, Inc.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- *
- */
-
-#import
-#import
-
-#import
-
-@class BFAppLink;
-@class BFAppLinkReturnToRefererController;
-
-/*!
- Protocol that a class can implement in order to be notified when the user has navigated back
- to the referer of an App Link.
- */
-@protocol BFAppLinkReturnToRefererControllerDelegate
-
-@optional
-
-/*! Called when the user has tapped to navigate, but before the navigation has been performed. */
-- (void)returnToRefererController:(BFAppLinkReturnToRefererController *)controller
- willNavigateToAppLink:(BFAppLink *)appLink;
-
-/*! Called after the navigation has been attempted, with an indication of whether the referer
- app link was successfully opened. */
-- (void)returnToRefererController:(BFAppLinkReturnToRefererController *)controller
- didNavigateToAppLink:(BFAppLink *)url
- type:(BFAppLinkNavigationType)type;
-
-@end
-
-/*!
- A controller class that implements default behavior for a BFAppLinkReturnToRefererView, including
- the ability to display the view above the navigation bar for navigation-based apps.
- */
-@interface BFAppLinkReturnToRefererController : NSObject
-
-/*!
- The delegate that will be notified when the user navigates back to the referer.
- */
-@property (nonatomic, weak) id delegate;
-
-/*!
- The BFAppLinkReturnToRefererView this controller is controlling.
- */
-@property (nonatomic, strong) BFAppLinkReturnToRefererView *view;
-
-/*!
- Initializes a controller suitable for controlling a BFAppLinkReturnToRefererView that is to be displayed
- contained within another UIView (i.e., not displayed above the navigation bar).
- */
-- (instancetype)init;
-
-/*!
- Initializes a controller suitable for controlling a BFAppLinkReturnToRefererView that is to be displayed
- displayed above the navigation bar.
- */
-- (instancetype)initForDisplayAboveNavController:(UINavigationController *)navController;
-
-/*!
- Removes the view entirely from the navigation controller it is currently displayed in.
- */
-- (void)removeFromNavController;
-
-/*!
- Shows the BFAppLinkReturnToRefererView with the specified referer information. If nil or missing data,
- the view will not be displayed. */
-- (void)showViewForRefererAppLink:(BFAppLink *)refererAppLink;
-
-/*!
- Shows the BFAppLinkReturnToRefererView with referer information extracted from the specified URL.
- If nil or missing referer App Link data, the view will not be displayed. */
-- (void)showViewForRefererURL:(NSURL *)url;
-
-/*!
- Closes the view, possibly animating it.
- */
-- (void)closeViewAnimated:(BOOL)animated;
-
-@end
diff --git a/iOS/Bolts.framework/Headers/BFAppLinkReturnToRefererView.h b/iOS/Bolts.framework/Headers/BFAppLinkReturnToRefererView.h
deleted file mode 100644
index d20f73a..0000000
--- a/iOS/Bolts.framework/Headers/BFAppLinkReturnToRefererView.h
+++ /dev/null
@@ -1,77 +0,0 @@
-/*
- * Copyright (c) 2014, Facebook, Inc.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- *
- */
-
-#import
-#import
-
-#import
-
-@class BFAppLinkReturnToRefererView;
-@class BFURL;
-
-typedef NS_ENUM(NSUInteger, BFIncludeStatusBarInSize) {
- BFIncludeStatusBarInSizeNever,
- BFIncludeStatusBarInSizeIOS7AndLater,
- BFIncludeStatusBarInSizeAlways,
-};
-
-/*!
- Protocol that a class can implement in order to be notified when the user has navigated back
- to the referer of an App Link.
- */
-@protocol BFAppLinkReturnToRefererViewDelegate
-
-/*!
- Called when the user has tapped inside the close button.
- */
-- (void)returnToRefererViewDidTapInsideCloseButton:(BFAppLinkReturnToRefererView *)view;
-
-/*!
- Called when the user has tapped inside the App Link portion of the view.
- */
-- (void)returnToRefererViewDidTapInsideLink:(BFAppLinkReturnToRefererView *)view
- link:(BFAppLink *)link;
-
-@end
-
-/*!
- Provides a UIView that displays a button allowing users to navigate back to the
- application that launched the App Link currently being handled, if the App Link
- contained referer data. The user can also close the view by clicking a close button
- rather than navigating away. If the view is provided an App Link that does not contain
- referer data, it will have zero size and no UI will be displayed.
- */
-@interface BFAppLinkReturnToRefererView : UIView
-
-/*!
- The delegate that will be notified when the user navigates back to the referer.
- */
-@property (nonatomic, weak) id delegate;
-
-/*!
- The color of the text label and close button.
- */
-@property (nonatomic, strong) UIColor *textColor;
-
-@property (nonatomic, strong) BFAppLink *refererAppLink;
-
-/*!
- Indicates whether to extend the size of the view to include the current status bar
- size, for use in scenarios where the view might extend under the status bar on iOS 7 and
- above; this property has no effect on earlier versions of iOS.
- */
-@property (nonatomic, assign) BFIncludeStatusBarInSize includeStatusBarInSize;
-
-/*!
- Indicates whether the user has closed the view by clicking the close button.
- */
-@property (nonatomic, assign) BOOL closed;
-
-@end
diff --git a/iOS/Bolts.framework/Headers/BFAppLinkTarget.h b/iOS/Bolts.framework/Headers/BFAppLinkTarget.h
deleted file mode 100644
index 6172126..0000000
--- a/iOS/Bolts.framework/Headers/BFAppLinkTarget.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * Copyright (c) 2014, Facebook, Inc.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- *
- */
-
-#import
-
-/*!
- Represents a target defined in App Link metadata, consisting of at least
- a URL, and optionally an App Store ID and name.
- */
-@interface BFAppLinkTarget : NSObject
-
-/*! Creates a BFAppLinkTarget with the given app site and target URL. */
-+ (instancetype)appLinkTargetWithURL:(NSURL *)url
- appStoreId:(NSString *)appStoreId
- appName:(NSString *)appName;
-
-/*! The URL prefix for this app link target */
-@property (nonatomic, strong, readonly) NSURL *URL;
-
-/*! The app ID for the app store */
-@property (nonatomic, copy, readonly) NSString *appStoreId;
-
-/*! The name of the app */
-@property (nonatomic, copy, readonly) NSString *appName;
-
-@end
diff --git a/iOS/Bolts.framework/Headers/BFDefines.h b/iOS/Bolts.framework/Headers/BFDefines.h
deleted file mode 100644
index cf7dcdf..0000000
--- a/iOS/Bolts.framework/Headers/BFDefines.h
+++ /dev/null
@@ -1,18 +0,0 @@
-/*
- * Copyright (c) 2014, Facebook, Inc.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- *
- */
-
-#import
-
-#if __has_feature(objc_generics) || __has_extension(objc_generics)
-# define BF_GENERIC(type)
-#else
-# define BF_GENERIC(type)
-# define BFGenericType id
-#endif
diff --git a/iOS/Bolts.framework/Headers/BFMeasurementEvent.h b/iOS/Bolts.framework/Headers/BFMeasurementEvent.h
deleted file mode 100644
index b3173fc..0000000
--- a/iOS/Bolts.framework/Headers/BFMeasurementEvent.h
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- * Copyright (c) 2014, Facebook, Inc.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- *
- */
-
-#import
-
-/*! The name of the notification posted by BFMeasurementEvent */
-FOUNDATION_EXPORT NSString *const BFMeasurementEventNotificationName;
-
-/*! Defines keys in the userInfo object for the notification named BFMeasurementEventNotificationName */
-/*! The string field for the name of the event */
-FOUNDATION_EXPORT NSString *const BFMeasurementEventNameKey;
-/*! The dictionary field for the arguments of the event */
-FOUNDATION_EXPORT NSString *const BFMeasurementEventArgsKey;
-
-/*! Bolts Events raised by BFMeasurementEvent for Applink */
-/*!
- The name of the event posted when [BFURL URLWithURL:] is called successfully. This represents the successful parsing of an app link URL.
- */
-FOUNDATION_EXPORT NSString *const BFAppLinkParseEventName;
-
-/*!
- The name of the event posted when [BFURL URLWithInboundURL:] is called successfully.
- This represents parsing an inbound app link URL from a different application
- */
-FOUNDATION_EXPORT NSString *const BFAppLinkNavigateInEventName;
-
-/*! The event raised when the user navigates from your app to other apps */
-FOUNDATION_EXPORT NSString *const BFAppLinkNavigateOutEventName;
-
-/*!
- The event raised when the user navigates out from your app and back to the referrer app.
- e.g when the user leaves your app after tapping the back-to-referrer navigation bar
- */
-FOUNDATION_EXPORT NSString *const BFAppLinkNavigateBackToReferrerEventName;
-
-@interface BFMeasurementEvent : NSObject
-
-@end
diff --git a/iOS/Bolts.framework/Headers/BFTask.h b/iOS/Bolts.framework/Headers/BFTask.h
deleted file mode 100644
index a900696..0000000
--- a/iOS/Bolts.framework/Headers/BFTask.h
+++ /dev/null
@@ -1,257 +0,0 @@
-/*
- * Copyright (c) 2014, Facebook, Inc.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- *
- */
-
-#import
-
-#import
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-/*!
- Error domain used if there was multiple errors on .
- */
-extern NSString *const BFTaskErrorDomain;
-
-/*!
- An exception that is thrown if there was multiple exceptions on .
- */
-extern NSString *const BFTaskMultipleExceptionsException;
-
-@class BFExecutor;
-@class BFTask;
-
-/*!
- The consumer view of a Task. A BFTask has methods to
- inspect the state of the task, and to add continuations to
- be run once the task is complete.
- */
-@interface BFTask BF_GENERIC(__covariant BFGenericType) : NSObject
-
-/*!
- A block that can act as a continuation for a task.
- */
-typedef __nullable id(^BFContinuationBlock)(BFTask BF_GENERIC(BFGenericType) *task);
-
-/*!
- Creates a task that is already completed with the given result.
- @param result The result for the task.
- */
-+ (instancetype)taskWithResult:(nullable BFGenericType)result;
-
-/*!
- Creates a task that is already completed with the given error.
- @param error The error for the task.
- */
-+ (instancetype)taskWithError:(NSError *)error;
-
-/*!
- Creates a task that is already completed with the given exception.
- @param exception The exception for the task.
- */
-+ (instancetype)taskWithException:(NSException *)exception;
-
-/*!
- Creates a task that is already cancelled.
- */
-+ (instancetype)cancelledTask;
-
-/*!
- Returns a task that will be completed (with result == nil) once
- all of the input tasks have completed.
- @param tasks An `NSArray` of the tasks to use as an input.
- */
-+ (instancetype)taskForCompletionOfAllTasks:(nullable NSArray *)tasks;
-
-/*!
- Returns a task that will be completed once all of the input tasks have completed.
- If all tasks complete successfully without being faulted or cancelled the result will be
- an `NSArray` of all task results in the order they were provided.
- @param tasks An `NSArray` of the tasks to use as an input.
- */
-+ (instancetype)taskForCompletionOfAllTasksWithResults:(nullable NSArray *)tasks;
-
-/*!
- Returns a task that will be completed a certain amount of time in the future.
- @param millis The approximate number of milliseconds to wait before the
- task will be finished (with result == nil).
- */
-+ (instancetype)taskWithDelay:(int)millis;
-
-/*!
- Returns a task that will be completed a certain amount of time in the future.
- @param millis The approximate number of milliseconds to wait before the
- task will be finished (with result == nil).
- @param token The cancellation token (optional).
- */
-+ (instancetype)taskWithDelay:(int)millis cancellationToken:(nullable BFCancellationToken *)token;
-
-/*!
- Returns a task that will be completed after the given block completes with
- the specified executor.
- @param executor A BFExecutor responsible for determining how the
- continuation block will be run.
- @param block The block to immediately schedule to run with the given executor.
- @returns A task that will be completed after block has run.
- If block returns a BFTask, then the task returned from
- this method will not be completed until that task is completed.
- */
-+ (instancetype)taskFromExecutor:(BFExecutor *)executor withBlock:(id (^)())block;
-
-// Properties that will be set on the task once it is completed.
-
-/*!
- The result of a successful task.
- */
-@property (nullable, nonatomic, strong, readonly) BFGenericType result;
-
-/*!
- The error of a failed task.
- */
-@property (nullable, nonatomic, strong, readonly) NSError *error;
-
-/*!
- The exception of a failed task.
- */
-@property (nullable, nonatomic, strong, readonly) NSException *exception;
-
-/*!
- Whether this task has been cancelled.
- */
-@property (nonatomic, assign, readonly, getter=isCancelled) BOOL cancelled;
-
-/*!
- Whether this task has completed due to an error or exception.
- */
-@property (nonatomic, assign, readonly, getter=isFaulted) BOOL faulted;
-
-/*!
- Whether this task has completed.
- */
-@property (nonatomic, assign, readonly, getter=isCompleted) BOOL completed;
-
-/*!
- Enqueues the given block to be run once this task is complete.
- This method uses a default execution strategy. The block will be
- run on the thread where the previous task completes, unless the
- the stack depth is too deep, in which case it will be run on a
- dispatch queue with default priority.
- @param block The block to be run once this task is complete.
- @returns A task that will be completed after block has run.
- If block returns a BFTask, then the task returned from
- this method will not be completed until that task is completed.
- */
-- (BFTask *)continueWithBlock:(BFContinuationBlock)block;
-
-/*!
- Enqueues the given block to be run once this task is complete.
- This method uses a default execution strategy. The block will be
- run on the thread where the previous task completes, unless the
- the stack depth is too deep, in which case it will be run on a
- dispatch queue with default priority.
- @param block The block to be run once this task is complete.
- @param cancellationToken The cancellation token (optional).
- @returns A task that will be completed after block has run.
- If block returns a BFTask, then the task returned from
- this method will not be completed until that task is completed.
- */
-- (BFTask *)continueWithBlock:(BFContinuationBlock)block cancellationToken:(nullable BFCancellationToken *)cancellationToken;
-
-/*!
- Enqueues the given block to be run once this task is complete.
- @param executor A BFExecutor responsible for determining how the
- continuation block will be run.
- @param block The block to be run once this task is complete.
- @returns A task that will be completed after block has run.
- If block returns a BFTask, then the task returned from
- this method will not be completed until that task is completed.
- */
-- (BFTask *)continueWithExecutor:(BFExecutor *)executor withBlock:(BFContinuationBlock)block;
-/*!
- Enqueues the given block to be run once this task is complete.
- @param executor A BFExecutor responsible for determining how the
- continuation block will be run.
- @param block The block to be run once this task is complete.
- @param cancellationToken The cancellation token (optional).
- @returns A task that will be completed after block has run.
- If block returns a BFTask, then the task returned from
- his method will not be completed until that task is completed.
- */
-- (BFTask *)continueWithExecutor:(BFExecutor *)executor
- block:(BFContinuationBlock)block
- cancellationToken:(nullable BFCancellationToken *)cancellationToken;
-
-/*!
- Identical to continueWithBlock:, except that the block is only run
- if this task did not produce a cancellation, error, or exception.
- If it did, then the failure will be propagated to the returned
- task.
- @param block The block to be run once this task is complete.
- @returns A task that will be completed after block has run.
- If block returns a BFTask, then the task returned from
- this method will not be completed until that task is completed.
- */
-- (BFTask *)continueWithSuccessBlock:(BFContinuationBlock)block;
-
-/*!
- Identical to continueWithBlock:, except that the block is only run
- if this task did not produce a cancellation, error, or exception.
- If it did, then the failure will be propagated to the returned
- task.
- @param block The block to be run once this task is complete.
- @param cancellationToken The cancellation token (optional).
- @returns A task that will be completed after block has run.
- If block returns a BFTask, then the task returned from
- this method will not be completed until that task is completed.
- */
-- (BFTask *)continueWithSuccessBlock:(BFContinuationBlock)block cancellationToken:(nullable BFCancellationToken *)cancellationToken;
-
-/*!
- Identical to continueWithExecutor:withBlock:, except that the block
- is only run if this task did not produce a cancellation, error, or
- exception. If it did, then the failure will be propagated to the
- returned task.
- @param executor A BFExecutor responsible for determining how the
- continuation block will be run.
- @param block The block to be run once this task is complete.
- @returns A task that will be completed after block has run.
- If block returns a BFTask, then the task returned from
- this method will not be completed until that task is completed.
- */
-- (BFTask *)continueWithExecutor:(BFExecutor *)executor withSuccessBlock:(BFContinuationBlock)block;
-
-/*!
- Identical to continueWithExecutor:withBlock:, except that the block
- is only run if this task did not produce a cancellation, error, or
- exception. If it did, then the failure will be propagated to the
- returned task.
- @param executor A BFExecutor responsible for determining how the
- continuation block will be run.
- @param block The block to be run once this task is complete.
- @param cancellationToken The cancellation token (optional).
- @returns A task that will be completed after block has run.
- If block returns a BFTask, then the task returned from
- this method will not be completed until that task is completed.
- */
-- (BFTask *)continueWithExecutor:(BFExecutor *)executor
- successBlock:(BFContinuationBlock)block
- cancellationToken:(nullable BFCancellationToken *)cancellationToken;
-
-/*!
- Waits until this operation is completed.
- This method is inefficient and consumes a thread resource while
- it's running. It should be avoided. This method logs a warning
- message if it is used on the main thread.
- */
-- (void)waitUntilFinished;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/iOS/Bolts.framework/Headers/BFTaskCompletionSource.h b/iOS/Bolts.framework/Headers/BFTaskCompletionSource.h
deleted file mode 100644
index 4807a5a..0000000
--- a/iOS/Bolts.framework/Headers/BFTaskCompletionSource.h
+++ /dev/null
@@ -1,91 +0,0 @@
-/*
- * Copyright (c) 2014, Facebook, Inc.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- *
- */
-
-#import
-
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-@class BFTask BF_GENERIC(BFGenericType);
-
-/*!
- A BFTaskCompletionSource represents the producer side of tasks.
- It is a task that also has methods for changing the state of the
- task by settings its completion values.
- */
-@interface BFTaskCompletionSource BF_GENERIC(__covariant BFGenericType) : NSObject
-
-/*!
- Creates a new unfinished task.
- */
-+ (instancetype)taskCompletionSource;
-
-/*!
- The task associated with this TaskCompletionSource.
- */
-@property (nonatomic, strong, readonly) BFTask BF_GENERIC(BFGenericType) *task;
-
-/*!
- Completes the task by setting the result.
- Attempting to set this for a completed task will raise an exception.
- @param result The result of the task.
- */
-- (void)setResult:(nullable BFGenericType)result;
-
-/*!
- Completes the task by setting the error.
- Attempting to set this for a completed task will raise an exception.
- @param error The error for the task.
- */
-- (void)setError:(NSError *)error;
-
-/*!
- Completes the task by setting an exception.
- Attempting to set this for a completed task will raise an exception.
- @param exception The exception for the task.
- */
-- (void)setException:(NSException *)exception;
-
-/*!
- Completes the task by marking it as cancelled.
- Attempting to set this for a completed task will raise an exception.
- */
-- (void)cancel;
-
-/*!
- Sets the result of the task if it wasn't already completed.
- @returns whether the new value was set.
- */
-- (BOOL)trySetResult:(nullable BFGenericType)result;
-
-/*!
- Sets the error of the task if it wasn't already completed.
- @param error The error for the task.
- @returns whether the new value was set.
- */
-- (BOOL)trySetError:(NSError *)error;
-
-/*!
- Sets the exception of the task if it wasn't already completed.
- @param exception The exception for the task.
- @returns whether the new value was set.
- */
-- (BOOL)trySetException:(NSException *)exception;
-
-/*!
- Sets the cancellation state of the task if it wasn't already completed.
- @returns whether the new value was set.
- */
-- (BOOL)trySetCancelled;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/iOS/Bolts.framework/Headers/BFURL.h b/iOS/Bolts.framework/Headers/BFURL.h
deleted file mode 100644
index 924c91d..0000000
--- a/iOS/Bolts.framework/Headers/BFURL.h
+++ /dev/null
@@ -1,75 +0,0 @@
-/*
- * Copyright (c) 2014, Facebook, Inc.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- *
- */
-
-#import
-
-@class BFAppLink;
-
-/*!
- Provides a set of utilities for working with NSURLs, such as parsing of query parameters
- and handling for App Link requests.
- */
-@interface BFURL : NSObject
-
-/*!
- Creates a link target from a raw URL.
- On success, this posts the BFAppLinkParseEventName measurement event. If you are constructing the BFURL within your application delegate's
- application:openURL:sourceApplication:annotation:, you should instead use URLWithInboundURL:sourceApplication:
- to support better BFMeasurementEvent notifications
- @param url The instance of `NSURL` to create BFURL from.
- */
-+ (BFURL *)URLWithURL:(NSURL *)url;
-
-/*!
- Creates a link target from a raw URL received from an external application. This is typically called from the app delegate's
- application:openURL:sourceApplication:annotation: and will post the BFAppLinkNavigateInEventName measurement event.
- @param url The instance of `NSURL` to create BFURL from.
- @param sourceApplication the bundle ID of the app that is requesting your app to open the URL. The same sourceApplication in application:openURL:sourceApplication:annotation:
- */
-+ (BFURL *)URLWithInboundURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication;
-
-/*!
- Gets the target URL. If the link is an App Link, this is the target of the App Link.
- Otherwise, it is the url that created the target.
- */
-@property (nonatomic, strong, readonly) NSURL *targetURL;
-
-/*!
- Gets the query parameters for the target, parsed into an NSDictionary.
- */
-@property (nonatomic, strong, readonly) NSDictionary *targetQueryParameters;
-
-/*!
- If this link target is an App Link, this is the data found in al_applink_data.
- Otherwise, it is nil.
- */
-@property (nonatomic, strong, readonly) NSDictionary *appLinkData;
-
-/*!
- If this link target is an App Link, this is the data found in extras.
- */
-@property (nonatomic, strong, readonly) NSDictionary *appLinkExtras;
-
-/*!
- The App Link indicating how to navigate back to the referer app, if any.
- */
-@property (nonatomic, strong, readonly) BFAppLink *appLinkReferer;
-
-/*!
- The URL that was used to create this BFURL.
- */
-@property (nonatomic, strong, readonly) NSURL *inputURL;
-
-/*!
- The query parameters of the inputURL, parsed into an NSDictionary.
- */
-@property (nonatomic, strong, readonly) NSDictionary *inputQueryParameters;
-
-@end
diff --git a/iOS/Bolts.framework/Headers/BFWebViewAppLinkResolver.h b/iOS/Bolts.framework/Headers/BFWebViewAppLinkResolver.h
deleted file mode 100644
index 3782ae2..0000000
--- a/iOS/Bolts.framework/Headers/BFWebViewAppLinkResolver.h
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * Copyright (c) 2014, Facebook, Inc.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- *
- */
-
-#import
-
-#import
-
-/*!
- A reference implementation for an App Link resolver that uses a hidden UIWebView
- to parse the HTML containing App Link metadata.
- */
-@interface BFWebViewAppLinkResolver : NSObject
-
-/*!
- Gets the instance of a BFWebViewAppLinkResolver.
- */
-+ (instancetype)sharedInstance;
-
-@end
diff --git a/iOS/Bolts.framework/Headers/Bolts.h b/iOS/Bolts.framework/Headers/Bolts.h
deleted file mode 100644
index 89c7c3e..0000000
--- a/iOS/Bolts.framework/Headers/Bolts.h
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * Copyright (c) 2014, Facebook, Inc.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- *
- */
-
-#import
-#import
-#import
-#import
-#import
-#import
-#import
-#import
-
-#if __has_include() && TARGET_OS_IPHONE && !TARGET_OS_WATCH && !TARGET_OS_TV
-#import
-#import
-#import
-#import
-#import
-#import
-#import
-#import
-#import
-#endif
-
-NS_ASSUME_NONNULL_BEGIN
-
-/*! @abstract 80175001: There were multiple errors. */
-extern NSInteger const kBFMultipleErrorsError;
-
-@interface Bolts : NSObject
-
-/*!
- Returns the version of the Bolts Framework as an NSString.
- @returns The NSString representation of the current version.
- */
-+ (NSString *)version;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/iOS/Bolts.framework/Headers/BoltsVersion.h b/iOS/Bolts.framework/Headers/BoltsVersion.h
deleted file mode 100644
index 4a12412..0000000
--- a/iOS/Bolts.framework/Headers/BoltsVersion.h
+++ /dev/null
@@ -1 +0,0 @@
-#define BOLTS_VERSION @"1.5.0"
diff --git a/iOS/Bolts.framework/Info.plist b/iOS/Bolts.framework/Info.plist
deleted file mode 100644
index 1be5166..0000000
Binary files a/iOS/Bolts.framework/Info.plist and /dev/null differ
diff --git a/iOS/Bolts.framework/Modules/module.modulemap b/iOS/Bolts.framework/Modules/module.modulemap
deleted file mode 100644
index 3c92a17..0000000
--- a/iOS/Bolts.framework/Modules/module.modulemap
+++ /dev/null
@@ -1,15 +0,0 @@
-framework module Bolts {
- umbrella header "Bolts.h"
-
- export *
- module * { export * }
-
- explicit module BFAppLinkResolving {
- header "BFAppLinkResolving.h"
- export *
- }
- explicit module BFWebViewAppLinkResolver {
- header "BFWebViewAppLinkResolver.h"
- export *
- }
-}
diff --git a/iOS/Parse.framework/Headers/PFACL.h b/iOS/Parse.framework/Headers/PFACL.h
deleted file mode 100644
index abcf031..0000000
--- a/iOS/Parse.framework/Headers/PFACL.h
+++ /dev/null
@@ -1,244 +0,0 @@
-/**
- * Copyright (c) 2015-present, Parse, LLC.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- */
-
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-@class PFRole;
-@class PFUser;
-
-/**
- The `PFACL` class is used to control which users can access or modify a particular object.
- Each `PFObject` can have its own `PFACL`. You can grant read and write permissions separately to specific users,
- to groups of users that belong to roles, or you can grant permissions to "the public" so that,
- for example, any user could read a particular object but only a particular set of users could write to that object.
- */
-@interface PFACL : NSObject
-
-///--------------------------------------
-/// @name Creating an ACL
-///--------------------------------------
-
-/**
- Creates an ACL with no permissions granted.
-
- @return Returns a new `PFACL`.
- */
-+ (instancetype)ACL;
-
-/**
- Creates an ACL where only the provided user has access.
-
- @param user The user to assign access.
- */
-+ (instancetype)ACLWithUser:(PFUser *)user;
-
-///--------------------------------------
-/// @name Controlling Public Access
-///--------------------------------------
-
-/**
- Controls whether the public is allowed to read this object.
- */
-@property (nonatomic, assign, getter=getPublicReadAccess) BOOL publicReadAccess;
-
-/**
- Controls whether the public is allowed to write this object.
- */
-@property (nonatomic, assign, getter=getPublicWriteAccess) BOOL publicWriteAccess;
-
-///--------------------------------------
-/// @name Controlling Access Per-User
-///--------------------------------------
-
-/**
- Set whether the given user id is allowed to read this object.
-
- @param allowed Whether the given user can write this object.
- @param userId The `PFObject.objectId` of the user to assign access.
- */
-- (void)setReadAccess:(BOOL)allowed forUserId:(NSString *)userId;
-
-/**
- Gets whether the given user id is *explicitly* allowed to read this object.
- Even if this returns `NO`, the user may still be able to access it if `publicReadAccess` returns `YES`
- or if the user belongs to a role that has access.
-
- @param userId The `PFObject.objectId` of the user for which to retrive access.
-
- @return `YES` if the user with this `objectId` has *explicit* read access, otherwise `NO`.
- */
-- (BOOL)getReadAccessForUserId:(NSString *)userId;
-
-/**
- Set whether the given user id is allowed to write this object.
-
- @param allowed Whether the given user can read this object.
- @param userId The `PFObject.objectId` of the user to assign access.
- */
-- (void)setWriteAccess:(BOOL)allowed forUserId:(NSString *)userId;
-
-/**
- Gets whether the given user id is *explicitly* allowed to write this object.
- Even if this returns NO, the user may still be able to write it if `publicWriteAccess` returns `YES`
- or if the user belongs to a role that has access.
-
- @param userId The `PFObject.objectId` of the user for which to retrive access.
-
- @return `YES` if the user with this `PFObject.objectId` has *explicit* write access, otherwise `NO`.
- */
-- (BOOL)getWriteAccessForUserId:(NSString *)userId;
-
-/**
- Set whether the given user is allowed to read this object.
-
- @param allowed Whether the given user can read this object.
- @param user The user to assign access.
- */
-- (void)setReadAccess:(BOOL)allowed forUser:(PFUser *)user;
-
-/**
- Gets whether the given user is *explicitly* allowed to read this object.
- Even if this returns `NO`, the user may still be able to access it if `publicReadAccess` returns `YES`
- or if the user belongs to a role that has access.
-
- @param user The user for which to retrive access.
-
- @return `YES` if the user has *explicit* read access, otherwise `NO`.
- */
-- (BOOL)getReadAccessForUser:(PFUser *)user;
-
-/**
- Set whether the given user is allowed to write this object.
-
- @param allowed Whether the given user can write this object.
- @param user The user to assign access.
- */
-- (void)setWriteAccess:(BOOL)allowed forUser:(PFUser *)user;
-
-/**
- Gets whether the given user is *explicitly* allowed to write this object.
- Even if this returns `NO`, the user may still be able to write it if `publicWriteAccess` returns `YES`
- or if the user belongs to a role that has access.
-
- @param user The user for which to retrive access.
-
- @return `YES` if the user has *explicit* write access, otherwise `NO`.
- */
-- (BOOL)getWriteAccessForUser:(PFUser *)user;
-
-///--------------------------------------
-/// @name Controlling Access Per-Role
-///--------------------------------------
-
-/**
- Get whether users belonging to the role with the given name are allowed to read this object.
- Even if this returns `NO`, the role may still be able to read it if a parent role has read access.
-
- @param name The name of the role.
-
- @return `YES` if the role has read access, otherwise `NO`.
- */
-- (BOOL)getReadAccessForRoleWithName:(NSString *)name;
-
-/**
- Set whether users belonging to the role with the given name are allowed to read this object.
-
- @param allowed Whether the given role can read this object.
- @param name The name of the role.
- */
-- (void)setReadAccess:(BOOL)allowed forRoleWithName:(NSString *)name;
-
-/**
- Get whether users belonging to the role with the given name are allowed to write this object.
- Even if this returns `NO`, the role may still be able to write it if a parent role has write access.
-
- @param name The name of the role.
-
- @return `YES` if the role has read access, otherwise `NO`.
- */
-- (BOOL)getWriteAccessForRoleWithName:(NSString *)name;
-
-/**
- Set whether users belonging to the role with the given name are allowed to write this object.
-
- @param allowed Whether the given role can write this object.
- @param name The name of the role.
- */
-- (void)setWriteAccess:(BOOL)allowed forRoleWithName:(NSString *)name;
-
-/**
- Get whether users belonging to the given role are allowed to read this object.
- Even if this returns `NO`, the role may still be able to read it if a parent role has read access.
-
- The role must already be saved on the server and
- it's data must have been fetched in order to use this method.
-
- @param role The name of the role.
-
- @return `YES` if the role has read access, otherwise `NO`.
- */
-- (BOOL)getReadAccessForRole:(PFRole *)role;
-
-/**
- Set whether users belonging to the given role are allowed to read this object.
-
- The role must already be saved on the server and
- it's data must have been fetched in order to use this method.
-
- @param allowed Whether the given role can read this object.
- @param role The role to assign access.
- */
-- (void)setReadAccess:(BOOL)allowed forRole:(PFRole *)role;
-
-/**
- Get whether users belonging to the given role are allowed to write this object.
- Even if this returns `NO`, the role may still be able to write it if a parent role has write access.
-
- The role must already be saved on the server and
- it's data must have been fetched in order to use this method.
-
- @param role The name of the role.
-
- @return `YES` if the role has write access, otherwise `NO`.
- */
-- (BOOL)getWriteAccessForRole:(PFRole *)role;
-
-/**
- Set whether users belonging to the given role are allowed to write this object.
-
- The role must already be saved on the server and
- it's data must have been fetched in order to use this method.
-
- @param allowed Whether the given role can write this object.
- @param role The role to assign access.
- */
-- (void)setWriteAccess:(BOOL)allowed forRole:(PFRole *)role;
-
-///--------------------------------------
-/// @name Setting Access Defaults
-///--------------------------------------
-
-/**
- Sets a default ACL that will be applied to all instances of `PFObject` when they are created.
-
- @param acl The ACL to use as a template for all instance of `PFObject` created after this method has been called.
- This value will be copied and used as a template for the creation of new ACLs, so changes to the
- instance after this method has been called will not be reflected in new instance of `PFObject`.
- @param currentUserAccess - If `YES`, the `PFACL` that is applied to newly-created instance of `PFObject` will
- provide read and write access to the `PFUser.+currentUser` at the time of creation.
- - If `NO`, the provided `acl` will be used without modification.
- - If `acl` is `nil`, this value is ignored.
- */
-+ (void)setDefaultACL:(nullable PFACL *)acl withAccessForCurrentUser:(BOOL)currentUserAccess;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/iOS/Parse.framework/Headers/PFAnalytics.h b/iOS/Parse.framework/Headers/PFAnalytics.h
deleted file mode 100644
index 958d8e4..0000000
--- a/iOS/Parse.framework/Headers/PFAnalytics.h
+++ /dev/null
@@ -1,167 +0,0 @@
-/**
- * Copyright (c) 2015-present, Parse, LLC.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- */
-
-#import
-
-#import
-
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- `PFAnalytics` provides an interface to Parse's logging and analytics backend.
-
- Methods will return immediately and cache the request (+ timestamp) to be
- handled "eventually." That is, the request will be sent immediately if possible
- or the next time a network connection is available.
- */
-@interface PFAnalytics : NSObject
-
-///--------------------------------------
-/// @name App-Open / Push Analytics
-///--------------------------------------
-
-/**
- Tracks this application being launched. If this happened as the result of the
- user opening a push notification, this method sends along information to
- correlate this open with that push.
-
- Pass in `nil` to track a standard "application opened" event.
-
- @param launchOptions The `NSDictionary` indicating the reason the application was
- launched, if any. This value can be found as a parameter to various
- `UIApplicationDelegate` methods, and can be empty or `nil`.
-
- @return Returns the task encapsulating the work being done.
- */
-+ (BFTask PF_GENERIC(NSNumber *)*)trackAppOpenedWithLaunchOptions:(nullable NSDictionary *)launchOptions;
-
-/**
- Tracks this application being launched.
- If this happened as the result of the user opening a push notification,
- this method sends along information to correlate this open with that push.
-
- Pass in `nil` to track a standard "application opened" event.
-
- @param launchOptions The dictionary indicating the reason the application was
- launched, if any. This value can be found as a parameter to various
- `UIApplicationDelegate` methods, and can be empty or `nil`.
- @param block The block to execute on server response.
- It should have the following argument signature: `^(BOOL succeeded, NSError *error)`
- */
-+ (void)trackAppOpenedWithLaunchOptionsInBackground:(nullable NSDictionary *)launchOptions
- block:(nullable PFBooleanResultBlock)block;
-
-/**
- Tracks this application being launched. If this happened as the result of the
- user opening a push notification, this method sends along information to
- correlate this open with that push.
-
- @param userInfo The Remote Notification payload, if any. This value can be
- found either under `UIApplicationLaunchOptionsRemoteNotificationKey` on `launchOptions`,
- or as a parameter to `application:didReceiveRemoteNotification:`.
- This can be empty or `nil`.
-
- @return Returns the task encapsulating the work being done.
- */
-+ (BFTask PF_GENERIC(NSNumber *)*)trackAppOpenedWithRemoteNotificationPayload:(nullable NSDictionary *)userInfo;
-
-/**
- Tracks this application being launched. If this happened as the result of the
- user opening a push notification, this method sends along information to
- correlate this open with that push.
-
- @param userInfo The Remote Notification payload, if any. This value can be
- found either under `UIApplicationLaunchOptionsRemoteNotificationKey` on `launchOptions`,
- or as a parameter to `application:didReceiveRemoteNotification:`. This can be empty or `nil`.
- @param block The block to execute on server response.
- It should have the following argument signature: `^(BOOL succeeded, NSError *error)`
- */
-+ (void)trackAppOpenedWithRemoteNotificationPayloadInBackground:(nullable NSDictionary *)userInfo
- block:(nullable PFBooleanResultBlock)block;
-
-///--------------------------------------
-/// @name Custom Analytics
-///--------------------------------------
-
-/**
- Tracks the occurrence of a custom event.
-
- Parse will store a data point at the time of invocation with the given event name.
-
- @param name The name of the custom event to report to Parse as having happened.
-
- @return Returns the task encapsulating the work being done.
- */
-+ (BFTask PF_GENERIC(NSNumber *)*)trackEvent:(NSString *)name;
-
-/**
- Tracks the occurrence of a custom event. Parse will store a data point at the
- time of invocation with the given event name. The event will be sent at some
- unspecified time in the future, even if Parse is currently inaccessible.
-
- @param name The name of the custom event to report to Parse as having happened.
- @param block The block to execute on server response.
- It should have the following argument signature: `^(BOOL succeeded, NSError *error)`
- */
-+ (void)trackEventInBackground:(NSString *)name block:(nullable PFBooleanResultBlock)block;
-
-/**
- Tracks the occurrence of a custom event with additional dimensions. Parse will
- store a data point at the time of invocation with the given event name.
-
- Dimensions will allow segmentation of the occurrences of this custom event.
- Keys and values should be NSStrings, and will throw otherwise.
-
- To track a user signup along with additional metadata, consider the following:
-
- NSDictionary *dimensions = @{ @"gender": @"m",
- @"source": @"web",
- @"dayType": @"weekend" };
- [PFAnalytics trackEvent:@"signup" dimensions:dimensions];
-
- @warning There is a default limit of 8 dimensions per event tracked.
-
- @param name The name of the custom event to report to Parse as having happened.
- @param dimensions The `NSDictionary` of information by which to segment this event.
-
- @return Returns the task encapsulating the work being done.
- */
-+ (BFTask PF_GENERIC(NSNumber *)*)trackEvent:(NSString *)name
- dimensions:(nullable NSDictionary PF_GENERIC(NSString *, NSString *)*)dimensions;
-
-/**
- Tracks the occurrence of a custom event with additional dimensions. Parse will
- store a data point at the time of invocation with the given event name. The
- event will be sent at some unspecified time in the future, even if Parse is currently inaccessible.
-
- @discussionDimensions will allow segmentation of the occurrences of this custom event.
- Keys and values should be NSStrings, and will throw otherwise.
-
- To track a user signup along with additional metadata, consider the following:
- NSDictionary *dimensions = @{ @"gender": @"m",
- @"source": @"web",
- @"dayType": @"weekend" };
- [PFAnalytics trackEvent:@"signup" dimensions:dimensions];
-
- There is a default limit of 8 dimensions per event tracked.
-
- @param name The name of the custom event to report to Parse as having happened.
- @param dimensions The `NSDictionary` of information by which to segment this event.
- @param block The block to execute on server response.
- It should have the following argument signature: `^(BOOL succeeded, NSError *error)`
- */
-+ (void)trackEventInBackground:(NSString *)name
- dimensions:(nullable NSDictionary PF_GENERIC(NSString *, NSString *)*)dimensions
- block:(nullable PFBooleanResultBlock)block;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/iOS/Parse.framework/Headers/PFAnonymousUtils.h b/iOS/Parse.framework/Headers/PFAnonymousUtils.h
deleted file mode 100644
index b111eaa..0000000
--- a/iOS/Parse.framework/Headers/PFAnonymousUtils.h
+++ /dev/null
@@ -1,82 +0,0 @@
-/**
- * Copyright (c) 2015-present, Parse, LLC.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- */
-
-#import
-
-#import
-
-#import
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- Provides utility functions for working with Anonymously logged-in users.
- Anonymous users have some unique characteristics:
-
- - Anonymous users don't need a user name or password.
- - Once logged out, an anonymous user cannot be recovered.
- - When the current user is anonymous, the following methods can be used to switch
- to a different user or convert the anonymous user into a regular one:
- - signUp converts an anonymous user to a standard user with the given username and password.
- Data associated with the anonymous user is retained.
- - logIn switches users without converting the anonymous user.
- Data associated with the anonymous user will be lost.
- - Service logIn (e.g. Facebook, Twitter) will attempt to convert
- the anonymous user into a standard user by linking it to the service.
- If a user already exists that is linked to the service, it will instead switch to the existing user.
- - Service linking (e.g. Facebook, Twitter) will convert the anonymous user
- into a standard user by linking it to the service.
- */
-@interface PFAnonymousUtils : NSObject
-
-///--------------------------------------
-/// @name Creating an Anonymous User
-///--------------------------------------
-
-/**
- Creates an anonymous user asynchronously and sets as a result to `BFTask`.
-
- @return The task, that encapsulates the work being done.
- */
-+ (BFTask PF_GENERIC(PFUser *)*)logInInBackground;
-
-/**
- Creates an anonymous user.
-
- @param block The block to execute when anonymous user creation is complete.
- It should have the following argument signature: `^(PFUser *user, NSError *error)`.
- */
-+ (void)logInWithBlock:(nullable PFUserResultBlock)block;
-
-/*
- Creates an anonymous user.
-
- @param target Target object for the selector.
- @param selector The selector that will be called when the asynchronous request is complete.
- It should have the following signature: `(void)callbackWithUser:(PFUser *)user error:(NSError *)error`.
- */
-+ (void)logInWithTarget:(nullable id)target selector:(nullable SEL)selector;
-
-///--------------------------------------
-/// @name Determining Whether a User is Anonymous
-///--------------------------------------
-
-/**
- Whether the `PFUser` object is logged in anonymously.
-
- @param user `PFUser` object to check for anonymity. The user must be logged in on this device.
-
- @return `YES` if the user is anonymous. `NO` if the user is not the current user or is not anonymous.
- */
-+ (BOOL)isLinkedWithUser:(nullable PFUser *)user;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/iOS/Parse.framework/Headers/PFCloud.h b/iOS/Parse.framework/Headers/PFCloud.h
deleted file mode 100644
index c0bd9ee..0000000
--- a/iOS/Parse.framework/Headers/PFCloud.h
+++ /dev/null
@@ -1,90 +0,0 @@
-/**
- * Copyright (c) 2015-present, Parse, LLC.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- */
-
-#import
-
-#import
-
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- The `PFCloud` class provides methods for interacting with Parse Cloud Functions.
- */
-@interface PFCloud : NSObject
-
-/**
- Calls the given cloud function *synchronously* with the parameters provided.
-
- @param function The function name to call.
- @param parameters The parameters to send to the function.
-
- @return The response from the cloud function.
- */
-+ (nullable id)callFunction:(NSString *)function withParameters:(nullable NSDictionary *)parameters PF_SWIFT_UNAVAILABLE;
-
-/**
- Calls the given cloud function *synchronously* with the parameters provided and
- sets the error if there is one.
-
- @param function The function name to call.
- @param parameters The parameters to send to the function.
- @param error Pointer to an `NSError` that will be set if necessary.
-
- @return The response from the cloud function.
- This result could be a `NSDictionary`, an `NSArray`, `NSNumber` or `NSString`.
- */
-+ (nullable id)callFunction:(NSString *)function
- withParameters:(nullable NSDictionary *)parameters
- error:(NSError **)error;
-
-/**
- Calls the given cloud function *asynchronously* with the parameters provided.
-
- @param function The function name to call.
- @param parameters The parameters to send to the function.
-
- @return The task, that encapsulates the work being done.
- */
-+ (BFTask PF_GENERIC(id) *)callFunctionInBackground:(NSString *)function
- withParameters:(nullable NSDictionary *)parameters;
-
-/**
- Calls the given cloud function *asynchronously* with the parameters provided
- and executes the given block when it is done.
-
- @param function The function name to call.
- @param parameters The parameters to send to the function.
- @param block The block to execute when the function call finished.
- It should have the following argument signature: `^(id result, NSError *error)`.
- */
-+ (void)callFunctionInBackground:(NSString *)function
- withParameters:(nullable NSDictionary *)parameters
- block:(nullable PFIdResultBlock)block;
-
-/*
- Calls the given cloud function *asynchronously* with the parameters provided
- and then executes the given selector when it is done.
-
- @param function The function name to call.
- @param parameters The parameters to send to the function.
- @param target The object to call the selector on.
- @param selector The selector to call when the function call finished.
- It should have the following signature: `(void)callbackWithResult:(id)result error:(NSError *)error`.
- Result will be `nil` if error is set and vice versa.
- */
-+ (void)callFunctionInBackground:(NSString *)function
- withParameters:(nullable NSDictionary *)parameters
- target:(nullable id)target
- selector:(nullable SEL)selector;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/iOS/Parse.framework/Headers/PFConfig.h b/iOS/Parse.framework/Headers/PFConfig.h
deleted file mode 100644
index c542a9f..0000000
--- a/iOS/Parse.framework/Headers/PFConfig.h
+++ /dev/null
@@ -1,105 +0,0 @@
-/**
- * Copyright (c) 2015-present, Parse, LLC.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- */
-
-#import
-
-#import
-
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-@class PFConfig;
-
-typedef void(^PFConfigResultBlock)(PFConfig *__nullable config, NSError *__nullable error);
-
-/**
- `PFConfig` is a representation of the remote configuration object.
- It enables you to add things like feature gating, a/b testing or simple "Message of the day".
- */
-@interface PFConfig : NSObject
-
-///--------------------------------------
-/// @name Current Config
-///--------------------------------------
-
-/**
- Returns the most recently fetched config.
-
- If there was no config fetched - this method will return an empty instance of `PFConfig`.
-
- @return Current, last fetched instance of PFConfig.
- */
-+ (PFConfig *)currentConfig;
-
-///--------------------------------------
-/// @name Retrieving Config
-///--------------------------------------
-
-/**
- Gets the `PFConfig` object *synchronously* from the server.
-
- @return Instance of `PFConfig` if the operation succeeded, otherwise `nil`.
- */
-+ (nullable PFConfig *)getConfig PF_SWIFT_UNAVAILABLE;
-
-/**
- Gets the `PFConfig` object *synchronously* from the server and sets an error if it occurs.
-
- @param error Pointer to an `NSError` that will be set if necessary.
-
- @return Instance of PFConfig if the operation succeeded, otherwise `nil`.
- */
-+ (nullable PFConfig *)getConfig:(NSError **)error;
-
-/**
- Gets the `PFConfig` *asynchronously* and sets it as a result of a task.
-
- @return The task, that encapsulates the work being done.
- */
-+ (BFTask PF_GENERIC(PFConfig *)*)getConfigInBackground;
-
-/**
- Gets the `PFConfig` *asynchronously* and executes the given callback block.
-
- @param block The block to execute.
- It should have the following argument signature: `^(PFConfig *config, NSError *error)`.
- */
-+ (void)getConfigInBackgroundWithBlock:(nullable PFConfigResultBlock)block;
-
-///--------------------------------------
-/// @name Parameters
-///--------------------------------------
-
-/**
- Returns the object associated with a given key.
-
- @param key The key for which to return the corresponding configuration value.
-
- @return The value associated with `key`, or `nil` if there is no such value.
- */
-- (nullable id)objectForKey:(NSString *)key;
-
-/**
- Returns the object associated with a given key.
-
- This method enables usage of literal syntax on `PFConfig`.
- E.g. `NSString *value = config[@"key"];`
-
- @see objectForKey:
-
- @param keyedSubscript The keyed subscript for which to return the corresponding configuration value.
-
- @return The value associated with `key`, or `nil` if there is no such value.
- */
-- (nullable id)objectForKeyedSubscript:(NSString *)keyedSubscript;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/iOS/Parse.framework/Headers/PFConstants.h b/iOS/Parse.framework/Headers/PFConstants.h
deleted file mode 100644
index ed2c7b0..0000000
--- a/iOS/Parse.framework/Headers/PFConstants.h
+++ /dev/null
@@ -1,557 +0,0 @@
-/**
- * Copyright (c) 2015-present, Parse, LLC.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- */
-
-#import
-
-@class PFObject;
-@class PFUser;
-
-///--------------------------------------
-/// @name Version
-///--------------------------------------
-
-#define PARSE_VERSION @"1.11.0"
-
-extern NSInteger const PARSE_API_VERSION;
-
-///--------------------------------------
-/// @name Platform
-///--------------------------------------
-
-#define PARSE_IOS_ONLY (TARGET_OS_IPHONE)
-#define PARSE_OSX_ONLY (TARGET_OS_MAC && !(TARGET_OS_IPHONE))
-
-extern NSString *const __nonnull kPFDeviceType;
-
-///--------------------------------------
-/// @name Server
-///--------------------------------------
-
-extern NSString *const __nonnull kPFParseServer;
-
-///--------------------------------------
-/// @name Cache Policies
-///--------------------------------------
-
-/**
- `PFCachePolicy` specifies different caching policies that could be used with `PFQuery`.
-
- This lets you show data when the user's device is offline,
- or when the app has just started and network requests have not yet had time to complete.
- Parse takes care of automatically flushing the cache when it takes up too much space.
-
- @warning Cache policy could only be set when Local Datastore is not enabled.
-
- @see PFQuery
- */
-typedef NS_ENUM(uint8_t, PFCachePolicy) {
- /**
- The query does not load from the cache or save results to the cache.
- This is the default cache policy.
- */
- kPFCachePolicyIgnoreCache = 0,
- /**
- The query only loads from the cache, ignoring the network.
- If there are no cached results, this causes a `NSError` with `kPFErrorCacheMiss` code.
- */
- kPFCachePolicyCacheOnly,
- /**
- The query does not load from the cache, but it will save results to the cache.
- */
- kPFCachePolicyNetworkOnly,
- /**
- The query first tries to load from the cache, but if that fails, it loads results from the network.
- If there are no cached results, this causes a `NSError` with `kPFErrorCacheMiss` code.
- */
- kPFCachePolicyCacheElseNetwork,
- /**
- The query first tries to load from the network, but if that fails, it loads results from the cache.
- If there are no cached results, this causes a `NSError` with `kPFErrorCacheMiss` code.
- */
- kPFCachePolicyNetworkElseCache,
- /**
- The query first loads from the cache, then loads from the network.
- The callback will be called twice - first with the cached results, then with the network results.
- Since it returns two results at different times, this cache policy cannot be used with synchronous or task methods.
- */
- kPFCachePolicyCacheThenNetwork
-};
-
-///--------------------------------------
-/// @name Logging Levels
-///--------------------------------------
-
-/**
- `PFLogLevel` enum specifies different levels of logging that could be used to limit or display more messages in logs.
-
- @see `Parse.+setLogLevel:`
- @see `Parse.+logLevel`
- */
-typedef NS_ENUM(uint8_t, PFLogLevel) {
- /**
- Log level that disables all logging.
- */
- PFLogLevelNone = 0,
- /**
- Log level that if set is going to output error messages to the log.
- */
- PFLogLevelError = 1,
- /**
- Log level that if set is going to output the following messages to log:
- - Errors
- - Warnings
- */
- PFLogLevelWarning = 2,
- /**
- Log level that if set is going to output the following messages to log:
- - Errors
- - Warnings
- - Informational messages
- */
- PFLogLevelInfo = 3,
- /**
- Log level that if set is going to output the following messages to log:
- - Errors
- - Warnings
- - Informational messages
- - Debug messages
- */
- PFLogLevelDebug = 4
-};
-
-///--------------------------------------
-/// @name Errors
-///--------------------------------------
-
-extern NSString *const __nonnull PFParseErrorDomain;
-
-/**
- `PFErrorCode` enum contains all custom error codes that are used as `code` for `NSError` for callbacks on all classes.
-
- These codes are used when `domain` of `NSError` that you receive is set to `PFParseErrorDomain`.
- */
-typedef NS_ENUM(NSInteger, PFErrorCode) {
- /**
- Internal server error. No information available.
- */
- kPFErrorInternalServer = 1,
- /**
- The connection to the Parse servers failed.
- */
- kPFErrorConnectionFailed = 100,
- /**
- Object doesn't exist, or has an incorrect password.
- */
- kPFErrorObjectNotFound = 101,
- /**
- You tried to find values matching a datatype that doesn't
- support exact database matching, like an array or a dictionary.
- */
- kPFErrorInvalidQuery = 102,
- /**
- Missing or invalid classname. Classnames are case-sensitive.
- They must start with a letter, and `a-zA-Z0-9_` are the only valid characters.
- */
- kPFErrorInvalidClassName = 103,
- /**
- Missing object id.
- */
- kPFErrorMissingObjectId = 104,
- /**
- Invalid key name. Keys are case-sensitive.
- They must start with a letter, and `a-zA-Z0-9_` are the only valid characters.
- */
- kPFErrorInvalidKeyName = 105,
- /**
- Malformed pointer. Pointers must be arrays of a classname and an object id.
- */
- kPFErrorInvalidPointer = 106,
- /**
- Malformed json object. A json dictionary is expected.
- */
- kPFErrorInvalidJSON = 107,
- /**
- Tried to access a feature only available internally.
- */
- kPFErrorCommandUnavailable = 108,
- /**
- Field set to incorrect type.
- */
- kPFErrorIncorrectType = 111,
- /**
- Invalid channel name. A channel name is either an empty string (the broadcast channel)
- or contains only `a-zA-Z0-9_` characters and starts with a letter.
- */
- kPFErrorInvalidChannelName = 112,
- /**
- Invalid device token.
- */
- kPFErrorInvalidDeviceToken = 114,
- /**
- Push is misconfigured. See details to find out how.
- */
- kPFErrorPushMisconfigured = 115,
- /**
- The object is too large.
- */
- kPFErrorObjectTooLarge = 116,
- /**
- That operation isn't allowed for clients.
- */
- kPFErrorOperationForbidden = 119,
- /**
- The results were not found in the cache.
- */
- kPFErrorCacheMiss = 120,
- /**
- Keys in `NSDictionary` values may not include `$` or `.`.
- */
- kPFErrorInvalidNestedKey = 121,
- /**
- Invalid file name.
- A file name can contain only `a-zA-Z0-9_.` characters and should be between 1 and 36 characters.
- */
- kPFErrorInvalidFileName = 122,
- /**
- Invalid ACL. An ACL with an invalid format was saved. This should not happen if you use `PFACL`.
- */
- kPFErrorInvalidACL = 123,
- /**
- The request timed out on the server. Typically this indicates the request is too expensive.
- */
- kPFErrorTimeout = 124,
- /**
- The email address was invalid.
- */
- kPFErrorInvalidEmailAddress = 125,
- /**
- A unique field was given a value that is already taken.
- */
- kPFErrorDuplicateValue = 137,
- /**
- Role's name is invalid.
- */
- kPFErrorInvalidRoleName = 139,
- /**
- Exceeded an application quota. Upgrade to resolve.
- */
- kPFErrorExceededQuota = 140,
- /**
- Cloud Code script had an error.
- */
- kPFScriptError = 141,
- /**
- Cloud Code validation failed.
- */
- kPFValidationError = 142,
- /**
- Product purchase receipt is missing.
- */
- kPFErrorReceiptMissing = 143,
- /**
- Product purchase receipt is invalid.
- */
- kPFErrorInvalidPurchaseReceipt = 144,
- /**
- Payment is disabled on this device.
- */
- kPFErrorPaymentDisabled = 145,
- /**
- The product identifier is invalid.
- */
- kPFErrorInvalidProductIdentifier = 146,
- /**
- The product is not found in the App Store.
- */
- kPFErrorProductNotFoundInAppStore = 147,
- /**
- The Apple server response is not valid.
- */
- kPFErrorInvalidServerResponse = 148,
- /**
- Product fails to download due to file system error.
- */
- kPFErrorProductDownloadFileSystemFailure = 149,
- /**
- Fail to convert data to image.
- */
- kPFErrorInvalidImageData = 150,
- /**
- Unsaved file.
- */
- kPFErrorUnsavedFile = 151,
- /**
- Fail to delete file.
- */
- kPFErrorFileDeleteFailure = 153,
- /**
- Application has exceeded its request limit.
- */
- kPFErrorRequestLimitExceeded = 155,
- /**
- Invalid event name.
- */
- kPFErrorInvalidEventName = 160,
- /**
- Username is missing or empty.
- */
- kPFErrorUsernameMissing = 200,
- /**
- Password is missing or empty.
- */
- kPFErrorUserPasswordMissing = 201,
- /**
- Username has already been taken.
- */
- kPFErrorUsernameTaken = 202,
- /**
- Email has already been taken.
- */
- kPFErrorUserEmailTaken = 203,
- /**
- The email is missing, and must be specified.
- */
- kPFErrorUserEmailMissing = 204,
- /**
- A user with the specified email was not found.
- */
- kPFErrorUserWithEmailNotFound = 205,
- /**
- The user cannot be altered by a client without the session.
- */
- kPFErrorUserCannotBeAlteredWithoutSession = 206,
- /**
- Users can only be created through sign up.
- */
- kPFErrorUserCanOnlyBeCreatedThroughSignUp = 207,
- /**
- An existing Facebook account already linked to another user.
- */
- kPFErrorFacebookAccountAlreadyLinked = 208,
- /**
- An existing account already linked to another user.
- */
- kPFErrorAccountAlreadyLinked = 208,
- /**
- Error code indicating that the current session token is invalid.
- */
- kPFErrorInvalidSessionToken = 209,
- kPFErrorUserIdMismatch = 209,
- /**
- Facebook id missing from request.
- */
- kPFErrorFacebookIdMissing = 250,
- /**
- Linked id missing from request.
- */
- kPFErrorLinkedIdMissing = 250,
- /**
- Invalid Facebook session.
- */
- kPFErrorFacebookInvalidSession = 251,
- /**
- Invalid linked session.
- */
- kPFErrorInvalidLinkedSession = 251,
-};
-
-///--------------------------------------
-/// @name Blocks
-///--------------------------------------
-
-typedef void (^PFBooleanResultBlock)(BOOL succeeded, NSError *__nullable error);
-typedef void (^PFIntegerResultBlock)(int number, NSError *__nullable error);
-typedef void (^PFArrayResultBlock)(NSArray *__nullable objects, NSError *__nullable error);
-typedef void (^PFObjectResultBlock)(PFObject *__nullable object, NSError *__nullable error);
-typedef void (^PFSetResultBlock)(NSSet *__nullable channels, NSError *__nullable error);
-typedef void (^PFUserResultBlock)(PFUser *__nullable user, NSError *__nullable error);
-typedef void (^PFDataResultBlock)(NSData *__nullable data, NSError *__nullable error);
-typedef void (^PFDataStreamResultBlock)(NSInputStream *__nullable stream, NSError *__nullable error);
-typedef void (^PFFilePathResultBlock)(NSString *__nullable filePath, NSError *__nullable error);
-typedef void (^PFStringResultBlock)(NSString *__nullable string, NSError *__nullable error);
-typedef void (^PFIdResultBlock)(__nullable id object, NSError *__nullable error);
-typedef void (^PFProgressBlock)(int percentDone);
-
-///--------------------------------------
-/// @name Network Notifications
-///--------------------------------------
-
-/**
- The name of the notification that is going to be sent before any URL request is sent.
- */
-extern NSString *const __nonnull PFNetworkWillSendURLRequestNotification;
-
-/**
- The name of the notification that is going to be sent after any URL response is received.
- */
-extern NSString *const __nonnull PFNetworkDidReceiveURLResponseNotification;
-
-/**
- The key of request(NSURLRequest) in the userInfo dictionary of a notification.
- @note This key is populated in userInfo, only if `PFLogLevel` on `Parse` is set to `PFLogLevelDebug`.
- */
-extern NSString *const __nonnull PFNetworkNotificationURLRequestUserInfoKey;
-
-/**
- The key of response(NSHTTPURLResponse) in the userInfo dictionary of a notification.
- @note This key is populated in userInfo, only if `PFLogLevel` on `Parse` is set to `PFLogLevelDebug`.
- */
-extern NSString *const __nonnull PFNetworkNotificationURLResponseUserInfoKey;
-
-/**
- The key of repsonse body (usually `NSString` with JSON) in the userInfo dictionary of a notification.
- @note This key is populated in userInfo, only if `PFLogLevel` on `Parse` is set to `PFLogLevelDebug`.
- */
-extern NSString *const __nonnull PFNetworkNotificationURLResponseBodyUserInfoKey;
-
-
-///--------------------------------------
-/// @name Deprecated Macros
-///--------------------------------------
-
-#ifndef PARSE_DEPRECATED
-# ifdef __deprecated_msg
-# define PARSE_DEPRECATED(_MSG) __deprecated_msg(_MSG)
-# else
-# ifdef __deprecated
-# define PARSE_DEPRECATED(_MSG) __attribute__((deprecated))
-# else
-# define PARSE_DEPRECATED(_MSG)
-# endif
-# endif
-#endif
-
-///--------------------------------------
-/// @name Extensions Macros
-///--------------------------------------
-
-#ifndef PF_EXTENSION_UNAVAILABLE
-# if PARSE_IOS_ONLY
-# ifdef NS_EXTENSION_UNAVAILABLE_IOS
-# define PF_EXTENSION_UNAVAILABLE(_msg) NS_EXTENSION_UNAVAILABLE_IOS(_msg)
-# else
-# define PF_EXTENSION_UNAVAILABLE(_msg)
-# endif
-# else
-# ifdef NS_EXTENSION_UNAVAILABLE_MAC
-# define PF_EXTENSION_UNAVAILABLE(_msg) NS_EXTENSION_UNAVAILABLE_MAC(_msg)
-# else
-# define PF_EXTENSION_UNAVAILABLE(_msg)
-# endif
-# endif
-#endif
-
-///--------------------------------------
-/// @name Swift Macros
-///--------------------------------------
-
-#ifndef PF_SWIFT_UNAVAILABLE
-# ifdef NS_SWIFT_UNAVAILABLE
-# define PF_SWIFT_UNAVAILABLE NS_SWIFT_UNAVAILABLE("")
-# else
-# define PF_SWIFT_UNAVAILABLE
-# endif
-#endif
-
-///--------------------------------------
-/// @name Obj-C Generics Macros
-///--------------------------------------
-
-#if __has_feature(objc_generics) || __has_extension(objc_generics)
-# define PF_GENERIC(...) <__VA_ARGS__>
-#else
-# define PF_GENERIC(...)
-# define PFGenericObject PFObject *
-#endif
-
-///--------------------------------------
-/// @name Platform Availability Defines
-///--------------------------------------
-
-#ifndef TARGET_OS_IOS
-# define TARGET_OS_IOS TARGET_OS_IPHONE
-#endif
-#ifndef TARGET_OS_WATCH
-# define TARGET_OS_WATCH 0
-#endif
-#ifndef TARGET_OS_TV
-# define TARGET_OS_TV 0
-#endif
-
-#ifndef PF_TARGET_OS_OSX
-# define PF_TARGET_OS_OSX TARGET_OS_MAC && !TARGET_OS_IOS && !TARGET_OS_WATCH && !TARGET_OS_TV
-#endif
-
-///--------------------------------------
-/// @name Avaiability Macros
-///--------------------------------------
-
-#ifndef PF_IOS_UNAVAILABLE
-# ifdef __IOS_UNAVILABLE
-# define PF_IOS_UNAVAILABLE __IOS_UNAVAILABLE
-# else
-# define PF_IOS_UNAVAILABLE
-# endif
-#endif
-
-#ifndef PF_IOS_UNAVAILABLE_WARNING
-# if TARGET_OS_IOS
-# define PF_IOS_UNAVAILABLE_WARNING _Pragma("GCC warning \"This file is unavailable on iOS.\"")
-# else
-# define PF_IOS_UNAVAILABLE_WARNING
-# endif
-#endif
-
-#ifndef PF_OSX_UNAVAILABLE
-# if PF_TARGET_OS_OSX
-# define PF_OSX_UNAVAILABLE __OSX_UNAVAILABLE
-# else
-# define PF_OSX_UNAVAILABLE
-# endif
-#endif
-
-#ifndef PF_OSX_UNAVAILABLE_WARNING
-# if PF_TARGET_OS_OSX
-# define PF_OSX_UNAVAILABLE_WARNING _Pragma("GCC warning \"This file is unavailable on OS X.\"")
-# else
-# define PF_OSX_UNAVAILABLE_WARNING
-# endif
-#endif
-
-#ifndef PF_WATCH_UNAVAILABLE
-# ifdef __WATCHOS_UNAVAILABLE
-# define PF_WATCH_UNAVAILABLE __WATCHOS_UNAVAILABLE
-# else
-# define PF_WATCH_UNAVAILABLE
-# endif
-#endif
-
-#ifndef PF_WATCH_UNAVAILABLE_WARNING
-# if TARGET_OS_WATCH
-# define PF_WATCH_UNAVAILABLE_WARNING _Pragma("GCC warning \"This file is unavailable on watchOS.\"")
-# else
-# define PF_WATCH_UNAVAILABLE_WARNING
-# endif
-#endif
-
-#ifndef PF_TV_UNAVAILABLE
-# ifdef __TVOS_PROHIBITED
-# define PF_TV_UNAVAILABLE __TVOS_PROHIBITED
-# else
-# define PF_TV_UNAVAILABLE
-# endif
-#endif
-
-#ifndef PF_TV_UNAVAILABLE_WARNING
-# if TARGET_OS_TV
-# define PF_TV_UNAVAILABLE_WARNING _Pragma("GCC warning \"This file is unavailable on tvOS.\"")
-# else
-# define PF_TV_UNAVAILABLE_WARNING
-# endif
-#endif
diff --git a/iOS/Parse.framework/Headers/PFFile.h b/iOS/Parse.framework/Headers/PFFile.h
deleted file mode 100644
index 0c99491..0000000
--- a/iOS/Parse.framework/Headers/PFFile.h
+++ /dev/null
@@ -1,444 +0,0 @@
-/**
- * Copyright (c) 2015-present, Parse, LLC.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- */
-
-#import
-
-#import
-
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- `PFFile` representes a file of binary data stored on the Parse servers.
- This can be a image, video, or anything else that an application needs to reference in a non-relational way.
- */
-@interface PFFile : NSObject
-
-///--------------------------------------
-/// @name Creating a PFFile
-///--------------------------------------
-
-- (instancetype)init NS_UNAVAILABLE;
-+ (instancetype)new NS_UNAVAILABLE;
-
-/**
- Creates a file with given data. A name will be assigned to it by the server.
-
- @param data The contents of the new `PFFile`.
-
- @return A new `PFFile`.
- */
-+ (nullable instancetype)fileWithData:(NSData *)data;
-
-/**
- Creates a file with given data and name.
-
- @param name The name of the new PFFile. The file name must begin with and
- alphanumeric character, and consist of alphanumeric characters, periods,
- spaces, underscores, or dashes.
- @param data The contents of the new `PFFile`.
-
- @return A new `PFFile` object.
- */
-+ (nullable instancetype)fileWithName:(nullable NSString *)name data:(NSData *)data;
-
-/**
- Creates a file with the contents of another file.
-
- @warning This method raises an exception if the file at path is not accessible
- or if there is not enough disk space left.
-
- @param name The name of the new `PFFile`. The file name must begin with and alphanumeric character,
- and consist of alphanumeric characters, periods, spaces, underscores, or dashes.
- @param path The path to the file that will be uploaded to Parse.
-
- @return A new `PFFile` instance.
- */
-+ (nullable instancetype)fileWithName:(nullable NSString *)name
- contentsAtPath:(NSString *)path PF_SWIFT_UNAVAILABLE;
-
-/**
- Creates a file with the contents of another file.
-
- @param name The name of the new `PFFile`. The file name must begin with and alphanumeric character,
- and consist of alphanumeric characters, periods, spaces, underscores, or dashes.
- @param path The path to the file that will be uploaded to Parse.
- @param error On input, a pointer to an error object.
- If an error occurs, this pointer is set to an actual error object containing the error information.
- You may specify `nil` for this parameter if you do not want the error information.
-
- @return A new `PFFile` instance or `nil` if the error occured.
- */
-+ (nullable instancetype)fileWithName:(nullable NSString *)name
- contentsAtPath:(NSString *)path
- error:(NSError **)error;
-
-/**
- Creates a file with given data, name and content type.
-
- @warning This method raises an exception if the data supplied is not accessible or could not be saved.
-
- @param name The name of the new `PFFile`. The file name must begin with and alphanumeric character,
- and consist of alphanumeric characters, periods, spaces, underscores, or dashes.
- @param data The contents of the new `PFFile`.
- @param contentType Represents MIME type of the data.
-
- @return A new `PFFile` instance.
- */
-+ (nullable instancetype)fileWithName:(nullable NSString *)name
- data:(NSData *)data
- contentType:(nullable NSString *)contentType PF_SWIFT_UNAVAILABLE;
-
-/**
- Creates a file with given data, name and content type.
-
- @param name The name of the new `PFFile`. The file name must begin with and alphanumeric character,
- and consist of alphanumeric characters, periods, spaces, underscores, or dashes.
- @param data The contents of the new `PFFile`.
- @param contentType Represents MIME type of the data.
- @param error On input, a pointer to an error object.
- If an error occurs, this pointer is set to an actual error object containing the error information.
- You may specify `nil` for this parameter if you do not want the error information.
-
- @return A new `PFFile` instance or `nil` if the error occured.
- */
-+ (nullable instancetype)fileWithName:(nullable NSString *)name
- data:(NSData *)data
- contentType:(nullable NSString *)contentType
- error:(NSError **)error;
-
-/**
- Creates a file with given data and content type.
-
- @param data The contents of the new `PFFile`.
- @param contentType Represents MIME type of the data.
-
- @return A new `PFFile` object.
- */
-+ (instancetype)fileWithData:(NSData *)data contentType:(nullable NSString *)contentType;
-
-///--------------------------------------
-/// @name File Properties
-///--------------------------------------
-
-/**
- The name of the file.
-
- Before the file is saved, this is the filename given by
- the user. After the file is saved, that name gets prefixed with a unique
- identifier.
- */
-@property (nonatomic, copy, readonly) NSString *name;
-
-/**
- The url of the file.
- */
-@property (nullable, nonatomic, copy, readonly) NSString *url;
-
-/**
- Whether the file has been uploaded for the first time.
- */
-@property (nonatomic, assign, readonly, getter=isDirty) BOOL dirty;
-
-///--------------------------------------
-/// @name Storing Data with Parse
-///--------------------------------------
-
-/**
- Saves the file *synchronously*.
-
- @return Returns whether the save succeeded.
- */
-- (BOOL)save PF_SWIFT_UNAVAILABLE;
-
-/**
- Saves the file *synchronously* and sets an error if it occurs.
-
- @param error Pointer to an `NSError` that will be set if necessary.
-
- @return Returns whether the save succeeded.
- */
-- (BOOL)save:(NSError **)error;
-
-/**
- Saves the file *asynchronously*.
-
- @return The task, that encapsulates the work being done.
- */
-- (BFTask PF_GENERIC(NSNumber *)*)saveInBackground;
-
-/**
- Saves the file *asynchronously*
-
- @param progressBlock The block should have the following argument signature: `^(int percentDone)`
-
- @return The task, that encapsulates the work being done.
- */
-- (BFTask PF_GENERIC(NSNumber *)*)saveInBackgroundWithProgressBlock:(nullable PFProgressBlock)progressBlock;
-
-/**
- Saves the file *asynchronously* and executes the given block.
-
- @param block The block should have the following argument signature: `^(BOOL succeeded, NSError *error)`.
- */
-- (void)saveInBackgroundWithBlock:(nullable PFBooleanResultBlock)block;
-
-/**
- Saves the file *asynchronously* and executes the given block.
-
- This method will execute the progressBlock periodically with the percent progress.
- `progressBlock` will get called with `100` before `resultBlock` is called.
-
- @param block The block should have the following argument signature: `^(BOOL succeeded, NSError *error)`
- @param progressBlock The block should have the following argument signature: `^(int percentDone)`
- */
-- (void)saveInBackgroundWithBlock:(nullable PFBooleanResultBlock)block
- progressBlock:(nullable PFProgressBlock)progressBlock;
-
-/*
- Saves the file *asynchronously* and calls the given callback.
-
- @param target The object to call selector on.
- @param selector The selector to call.
- It should have the following signature: `(void)callbackWithResult:(NSNumber *)result error:(NSError *)error`.
- `error` will be `nil` on success and set if there was an error.
- `[result boolValue]` will tell you whether the call succeeded or not.
- */
-- (void)saveInBackgroundWithTarget:(nullable id)target selector:(nullable SEL)selector;
-
-///--------------------------------------
-/// @name Getting Data from Parse
-///--------------------------------------
-
-/**
- Whether the data is available in memory or needs to be downloaded.
- */
-@property (nonatomic, assign, readonly, getter=isDataAvailable) BOOL dataAvailable;
-
-/**
- *Synchronously* gets the data from cache if available or fetches its contents from the network.
-
- @return The `NSData` object containing file data. Returns `nil` if there was an error in fetching.
- */
-- (nullable NSData *)getData PF_SWIFT_UNAVAILABLE;
-
-/**
- This method is like `-getData` but avoids ever holding the entire `PFFile` contents in memory at once.
-
- This can help applications with many large files avoid memory warnings.
-
- @return A stream containing the data. Returns `nil` if there was an error in fetching.
- */
-- (nullable NSInputStream *)getDataStream PF_SWIFT_UNAVAILABLE;
-
-/**
- *Synchronously* gets the data from cache if available or fetches its contents from the network.
- Sets an error if it occurs.
-
- @param error Pointer to an `NSError` that will be set if necessary.
-
- @return The `NSData` object containing file data. Returns `nil` if there was an error in fetching.
- */
-- (nullable NSData *)getData:(NSError **)error;
-
-/**
- This method is like `-getData` but avoids ever holding the entire `PFFile` contents in memory at once.
-
- @param error Pointer to an `NSError` that will be set if necessary.
-
- @return A stream containing the data. Returns nil if there was an error in
- fetching.
- */
-- (nullable NSInputStream *)getDataStream:(NSError **)error;
-
-/**
- This method is like `-getData` but it fetches asynchronously to avoid blocking the current thread.
-
- @see getData
-
- @return The task, that encapsulates the work being done.
- */
-- (BFTask PF_GENERIC(NSData *)*)getDataInBackground;
-
-/**
- This method is like `-getData` but it fetches asynchronously to avoid blocking the current thread.
-
- This can help applications with many large files avoid memory warnings.
-
- @see getData
-
- @param progressBlock The block should have the following argument signature: ^(int percentDone)
-
- @return The task, that encapsulates the work being done.
- */
-- (BFTask PF_GENERIC(NSData *)*)getDataInBackgroundWithProgressBlock:(nullable PFProgressBlock)progressBlock;
-
-/**
- This method is like `-getDataInBackground` but avoids ever holding the entire `PFFile` contents in memory at once.
-
- This can help applications with many large files avoid memory warnings.
-
- @return The task, that encapsulates the work being done.
- */
-- (BFTask PF_GENERIC(NSInputStream *)*)getDataStreamInBackground;
-
-/**
- This method is like `-getDataStreamInBackground`, but yields a live-updating stream.
-
- Instead of `-getDataStream`, which yields a stream that can be read from only after the request has
- completed, this method gives you a stream directly written to by the HTTP session. As this stream is not pre-buffered,
- it is strongly advised to use the `NSStreamDelegate` methods, in combination with a run loop, to consume the data in
- the stream, to do proper async file downloading.
-
- @note You MUST open this stream before reading from it.
- @note Do NOT call `waitUntilFinished` on this task from the main thread. It may result in a deadlock.
-
- @return A task that produces a *live* stream that is being written to with the data from the server.
- */
-- (BFTask PF_GENERIC(NSInputStream *)*)getDataDownloadStreamInBackground;
-
-/**
- This method is like `-getDataInBackground` but avoids
- ever holding the entire `PFFile` contents in memory at once.
-
- This can help applications with many large files avoid memory warnings.
- @param progressBlock The block should have the following argument signature: ^(int percentDone)
-
- @return The task, that encapsulates the work being done.
- */
-- (BFTask PF_GENERIC(NSInputStream *)*)getDataStreamInBackgroundWithProgressBlock:(nullable PFProgressBlock)progressBlock;
-
-/**
- This method is like `-getDataStreamInBackgroundWithProgressBlock:`, but yields a live-updating stream.
-
- Instead of `-getDataStream`, which yields a stream that can be read from only after the request has
- completed, this method gives you a stream directly written to by the HTTP session. As this stream is not pre-buffered,
- it is strongly advised to use the `NSStreamDelegate` methods, in combination with a run loop, to consume the data in
- the stream, to do proper async file downloading.
-
- @note You MUST open this stream before reading from it.
- @note Do NOT call `waitUntilFinished` on this task from the main thread. It may result in a deadlock.
-
- @param progressBlock The block should have the following argument signature: `^(int percentDone)`
-
- @return A task that produces a *live* stream that is being written to with the data from the server.
- */
-- (BFTask PF_GENERIC(NSInputStream *)*)getDataDownloadStreamInBackgroundWithProgressBlock:(nullable PFProgressBlock)progressBlock;
-
-/**
- *Asynchronously* gets the data from cache if available or fetches its contents from the network.
-
- @param block The block should have the following argument signature: `^(NSData *result, NSError *error)`
- */
-- (void)getDataInBackgroundWithBlock:(nullable PFDataResultBlock)block;
-
-/**
- This method is like `-getDataInBackgroundWithBlock:` but avoids ever holding the entire `PFFile` contents in memory at once.
-
- This can help applications with many large files avoid memory warnings.
-
- @param block The block should have the following argument signature: `(NSInputStream *result, NSError *error)`
- */
-- (void)getDataStreamInBackgroundWithBlock:(nullable PFDataStreamResultBlock)block;
-
-/**
- *Asynchronously* gets the data from cache if available or fetches its contents from the network.
-
- This method will execute the progressBlock periodically with the percent progress.
- `progressBlock` will get called with `100` before `resultBlock` is called.
-
- @param resultBlock The block should have the following argument signature: ^(NSData *result, NSError *error)
- @param progressBlock The block should have the following argument signature: ^(int percentDone)
- */
-- (void)getDataInBackgroundWithBlock:(nullable PFDataResultBlock)resultBlock
- progressBlock:(nullable PFProgressBlock)progressBlock;
-
-/**
- This method is like `-getDataInBackgroundWithBlock:progressBlock:` but avoids
- ever holding the entire `PFFile` contents in memory at once.
-
- This can help applications with many large files avoid memory warnings.
-
- @param resultBlock The block should have the following argument signature: `^(NSInputStream *result, NSError *error)`.
- @param progressBlock The block should have the following argument signature: `^(int percentDone)`.
- */
-- (void)getDataStreamInBackgroundWithBlock:(nullable PFDataStreamResultBlock)resultBlock
- progressBlock:(nullable PFProgressBlock)progressBlock;
-
-/*
- *Asynchronously* gets the data from cache if available or fetches its contents from the network.
-
- @param target The object to call selector on.
- @param selector The selector to call.
- It should have the following signature: `(void)callbackWithResult:(NSData *)result error:(NSError *)error`.
- `error` will be `nil` on success and set if there was an error.
- */
-- (void)getDataInBackgroundWithTarget:(nullable id)target selector:(nullable SEL)selector;
-
-/**
- *Asynchronously* gets the file path for file from cache if available or fetches its contents from the network.
-
- @note The file path may change between versions of SDK.
- @note If you overwrite the contents of the file at returned path it will persist those change
- until the file cache is cleared.
-
- @return The task, with the result set to `NSString` representation of a file path.
- */
-- (BFTask PF_GENERIC(NSString *)*)getFilePathInBackground;
-
-/**
- *Asynchronously* gets the file path for file from cache if available or fetches its contents from the network.
-
- @note The file path may change between versions of SDK.
- @note If you overwrite the contents of the file at returned path it will persist those change
- until the file cache is cleared.
-
- @param progressBlock The block should have the following argument signature: `^(int percentDone)`.
-
- @return The task, with the result set to `NSString` representation of a file path.
- */
-- (BFTask PF_GENERIC(NSString *)*)getFilePathInBackgroundWithProgressBlock:(nullable PFProgressBlock)progressBlock;
-
-/**
- *Asynchronously* gets the file path for file from cache if available or fetches its contents from the network.
-
- @note The file path may change between versions of SDK.
- @note If you overwrite the contents of the file at returned path it will persist those change
- until the file cache is cleared.
-
- @param block The block should have the following argument signature: `^(NSString *filePath, NSError *error)`.
- */
-- (void)getFilePathInBackgroundWithBlock:(nullable PFFilePathResultBlock)block;
-
-/**
- *Asynchronously* gets the file path for file from cache if available or fetches its contents from the network.
-
- @note The file path may change between versions of SDK.
- @note If you overwrite the contents of the file at returned path it will persist those change
- until the file cache is cleared.
-
- @param block The block should have the following argument signature: `^(NSString *filePath, NSError *error)`.
- @param progressBlock The block should have the following argument signature: `^(int percentDone)`.
- */
-- (void)getFilePathInBackgroundWithBlock:(nullable PFFilePathResultBlock)block
- progressBlock:(nullable PFProgressBlock)progressBlock;
-
-///--------------------------------------
-/// @name Interrupting a Transfer
-///--------------------------------------
-
-/**
- Cancels the current request (upload or download of file).
- */
-- (void)cancel;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/iOS/Parse.framework/Headers/PFGeoPoint.h b/iOS/Parse.framework/Headers/PFGeoPoint.h
deleted file mode 100644
index a3b9663..0000000
--- a/iOS/Parse.framework/Headers/PFGeoPoint.h
+++ /dev/null
@@ -1,112 +0,0 @@
-/**
- * Copyright (c) 2015-present, Parse, LLC.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- */
-
-#import
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-@class PFGeoPoint;
-
-typedef void(^PFGeoPointResultBlock)(PFGeoPoint *__nullable geoPoint, NSError *__nullable error);
-
-/**
- `PFGeoPoint` may be used to embed a latitude / longitude point as the value for a key in a `PFObject`.
- It could be used to perform queries in a geospatial manner using `PFQuery.-whereKey:nearGeoPoint:`.
-
- Currently, instances of `PFObject` may only have one key associated with a `PFGeoPoint` type.
- */
-@interface PFGeoPoint : NSObject
-
-///--------------------------------------
-/// @name Creating a Geo Point
-///--------------------------------------
-
-/**
- Create a PFGeoPoint object. Latitude and longitude are set to `0.0`.
-
- @return Returns a new `PFGeoPoint`.
- */
-+ (instancetype)geoPoint;
-
-/**
- Creates a new `PFGeoPoint` object for the given `CLLocation`, set to the location's coordinates.
-
- @param location Instace of `CLLocation`, with set latitude and longitude.
-
- @return Returns a new PFGeoPoint at specified location.
- */
-+ (instancetype)geoPointWithLocation:(nullable CLLocation *)location;
-
-/**
- Create a new `PFGeoPoint` object with the specified latitude and longitude.
-
- @param latitude Latitude of point in degrees.
- @param longitude Longitude of point in degrees.
-
- @return New point object with specified latitude and longitude.
- */
-+ (instancetype)geoPointWithLatitude:(double)latitude longitude:(double)longitude;
-
-/**
- Fetches the current device location and executes a block with a new `PFGeoPoint` object.
-
- @param resultBlock A block which takes the newly created `PFGeoPoint` as an argument.
- It should have the following argument signature: `^(PFGeoPoint *geoPoint, NSError *error)`
- */
-+ (void)geoPointForCurrentLocationInBackground:(nullable PFGeoPointResultBlock)resultBlock;
-
-///--------------------------------------
-/// @name Controlling Position
-///--------------------------------------
-
-/**
- Latitude of point in degrees. Valid range is from `-90.0` to `90.0`.
- */
-@property (nonatomic, assign) double latitude;
-
-/**
- Longitude of point in degrees. Valid range is from `-180.0` to `180.0`.
- */
-@property (nonatomic, assign) double longitude;
-
-///--------------------------------------
-/// @name Calculating Distance
-///--------------------------------------
-
-/**
- Get distance in radians from this point to specified point.
-
- @param point `PFGeoPoint` that represents the location of other point.
-
- @return Distance in radians between the receiver and `point`.
- */
-- (double)distanceInRadiansTo:(nullable PFGeoPoint *)point;
-
-/**
- Get distance in miles from this point to specified point.
-
- @param point `PFGeoPoint` that represents the location of other point.
-
- @return Distance in miles between the receiver and `point`.
- */
-- (double)distanceInMilesTo:(nullable PFGeoPoint *)point;
-
-/**
- Get distance in kilometers from this point to specified point.
-
- @param point `PFGeoPoint` that represents the location of other point.
-
- @return Distance in kilometers between the receiver and `point`.
- */
-- (double)distanceInKilometersTo:(nullable PFGeoPoint *)point;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/iOS/Parse.framework/Headers/PFInstallation.h b/iOS/Parse.framework/Headers/PFInstallation.h
deleted file mode 100644
index 7a8e9f7..0000000
--- a/iOS/Parse.framework/Headers/PFInstallation.h
+++ /dev/null
@@ -1,115 +0,0 @@
-/**
- * Copyright (c) 2015-present, Parse, LLC.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- */
-
-#import
-
-#import
-#import
-
-PF_TV_UNAVAILABLE_WARNING
-PF_WATCH_UNAVAILABLE_WARNING
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- A Parse Framework Installation Object that is a local representation of an
- installation persisted to the Parse cloud. This class is a subclass of a
- `PFObject`, and retains the same functionality of a PFObject, but also extends
- it with installation-specific fields and related immutability and validity
- checks.
-
- A valid `PFInstallation` can only be instantiated via
- `+currentInstallation` because the required identifier fields
- are readonly. The `timeZone` and `badge` fields are also readonly properties which
- are automatically updated to match the device's time zone and application badge
- when the `PFInstallation` is saved, thus these fields might not reflect the
- latest device state if the installation has not recently been saved.
-
- `PFInstallation` objects which have a valid `deviceToken` and are saved to
- the Parse cloud can be used to target push notifications.
- */
-
-PF_TV_UNAVAILABLE PF_WATCH_UNAVAILABLE @interface PFInstallation : PFObject
-
-///--------------------------------------
-/// @name Accessing the Current Installation
-///--------------------------------------
-
-/**
- Gets the currently-running installation from disk and returns an instance of it.
-
- If this installation is not stored on disk, returns a `PFInstallation`
- with `deviceType` and `installationId` fields set to those of the
- current installation.
-
- @result Returns a `PFInstallation` that represents the currently-running installation.
- */
-+ (instancetype)currentInstallation;
-
-///--------------------------------------
-/// @name Installation Properties
-///--------------------------------------
-
-/**
- The device type for the `PFInstallation`.
- */
-@property (nonatomic, copy, readonly) NSString *deviceType;
-
-/**
- The installationId for the `PFInstallation`.
- */
-@property (nonatomic, copy, readonly) NSString *installationId;
-
-/**
- The device token for the `PFInstallation`.
- */
-@property (nullable, nonatomic, copy) NSString *deviceToken;
-
-/**
- The badge for the `PFInstallation`.
- */
-@property (nonatomic, assign) NSInteger badge;
-
-/**
- The name of the time zone for the `PFInstallation`.
- */
-@property (nullable, nonatomic, copy, readonly) NSString *timeZone;
-
-/**
- The channels for the `PFInstallation`.
- */
-@property (nullable, nonatomic, copy) NSArray PF_GENERIC(NSString *)*channels;
-
-/**
- Sets the device token string property from an `NSData`-encoded token.
-
- @param deviceTokenData A token that identifies the device.
- */
-- (void)setDeviceTokenFromData:(nullable NSData *)deviceTokenData;
-
-///--------------------------------------
-/// @name Querying for Installations
-///--------------------------------------
-
-/**
- Creates a `PFQuery` for `PFInstallation` objects.
-
- Only the following types of queries are allowed for installations:
-
- - `[query getObjectWithId:]`
- - `[query whereKey:@"installationId" equalTo:]`
- - `[query whereKey:@"installationId" matchesKey: inQuery:]`
-
- You can add additional query conditions, but one of the above must appear as a top-level `AND` clause in the query.
- */
-+ (nullable PFQuery *)query;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/iOS/Parse.framework/Headers/PFObject+Subclass.h b/iOS/Parse.framework/Headers/PFObject+Subclass.h
deleted file mode 100644
index a5106e5..0000000
--- a/iOS/Parse.framework/Headers/PFObject+Subclass.h
+++ /dev/null
@@ -1,126 +0,0 @@
-/**
- * Copyright (c) 2015-present, Parse, LLC.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- */
-
-#import
-
-#import
-
-@class PFQuery PF_GENERIC(PFGenericObject : PFObject *);
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- ### Subclassing Notes
-
- Developers can subclass `PFObject` for a more native object-oriented class structure.
- Strongly-typed subclasses of `PFObject` must conform to the `PFSubclassing` protocol
- and must call `PFSubclassing.+registerSubclass` before `Parse.+setApplicationId:clientKey:` is called.
- After this it will be returned by `PFQuery` and other `PFObject` factories.
-
- All methods in `PFSubclassing` except for `PFSubclassing.+parseClassName`
- are already implemented in the `PFObject(Subclass)` category.
-
- Including `PFObject+Subclass.h` in your implementation file provides these implementations automatically.
-
- Subclasses support simpler initializers, query syntax, and dynamic synthesizers.
- The following shows an example subclass:
-
- \@interface MYGame : PFObject
-
- // Accessing this property is the same as objectForKey:@"title"
- @property (nonatomic, copy) NSString *title;
-
- + (NSString *)parseClassName;
-
- @end
-
-
- @implementation MYGame
-
- @dynamic title;
-
- + (NSString *)parseClassName {
- return @"Game";
- }
-
- @end
-
-
- MYGame *game = [[MYGame alloc] init];
- game.title = @"Bughouse";
- [game saveInBackground];
- */
-@interface PFObject (Subclass)
-
-///--------------------------------------
-/// @name Methods for Subclasses
-///--------------------------------------
-
-/**
- Creates an instance of the registered subclass with this class's `PFSubclassing.+parseClassName`.
-
- This helps a subclass ensure that it can be subclassed itself.
- For example, `[PFUser object]` will return a `MyUser` object if `MyUser` is a registered subclass of `PFUser`.
- For this reason, `[MyClass object]` is preferred to `[[MyClass alloc] init]`.
- This method can only be called on subclasses which conform to `PFSubclassing`.
- A default implementation is provided by `PFObject` which should always be sufficient.
- */
-+ (instancetype)object;
-
-/**
- Creates a reference to an existing `PFObject` for use in creating associations between `PFObjects`.
-
- Calling `dataAvailable` on this object will return `NO` until `-fetchIfNeeded` or `-fetch` has been called.
- This method can only be called on subclasses which conform to `PFSubclassing`.
- A default implementation is provided by `PFObject` which should always be sufficient.
- No network request will be made.
-
- @param objectId The object id for the referenced object.
-
- @return An instance of `PFObject` without data.
- */
-+ (instancetype)objectWithoutDataWithObjectId:(nullable NSString *)objectId;
-
-/**
- Registers an Objective-C class for Parse to use for representing a given Parse class.
-
- Once this is called on a `PFObject` subclass, any `PFObject` Parse creates with a class name
- that matches `[self parseClassName]` will be an instance of subclass.
- This method can only be called on subclasses which conform to `PFSubclassing`.
- A default implementation is provided by `PFObject` which should always be sufficient.
- */
-+ (void)registerSubclass;
-
-/**
- Returns a query for objects of type `PFSubclassing.+parseClassName`.
-
- This method can only be called on subclasses which conform to `PFSubclassing`.
- A default implementation is provided by `PFObject` which should always be sufficient.
-
- @see `PFQuery`
- */
-+ (nullable PFQuery *)query;
-
-/**
- Returns a query for objects of type `PFSubclassing.+parseClassName` with a given predicate.
-
- A default implementation is provided by `PFObject` which should always be sufficient.
- @warning This method can only be called on subclasses which conform to `PFSubclassing`.
-
- @param predicate The predicate to create conditions from.
-
- @return An instance of `PFQuery`.
-
- @see `PFQuery.+queryWithClassName:predicate:`
- */
-+ (nullable PFQuery *)queryWithPredicate:(nullable NSPredicate *)predicate;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/iOS/Parse.framework/Headers/PFObject.h b/iOS/Parse.framework/Headers/PFObject.h
deleted file mode 100644
index 532cfe4..0000000
--- a/iOS/Parse.framework/Headers/PFObject.h
+++ /dev/null
@@ -1,1420 +0,0 @@
-/**
- * Copyright (c) 2015-present, Parse, LLC.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- */
-
-#import
-
-#import
-
-#import
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-@protocol PFSubclassing;
-@class PFRelation;
-
-/**
- The name of the default pin that for PFObject local data store.
- */
-extern NSString *const PFObjectDefaultPin;
-
-/**
- The `PFObject` class is a local representation of data persisted to the Parse cloud.
- This is the main class that is used to interact with objects in your app.
- */
-NS_REQUIRES_PROPERTY_DEFINITIONS
-@interface PFObject : NSObject
-
-///--------------------------------------
-/// @name Creating a PFObject
-///--------------------------------------
-
-/**
- Initializes a new empty `PFObject` instance with a class name.
-
- @param newClassName A class name can be any alphanumeric string that begins with a letter.
- It represents an object in your app, like a 'User' or a 'Document'.
-
- @return Returns the object that is instantiated with the given class name.
- */
-- (instancetype)initWithClassName:(NSString *)newClassName;
-
-/**
- Creates a new PFObject with a class name.
-
- @param className A class name can be any alphanumeric string that begins with a letter.
- It represents an object in your app, like a 'User' or a 'Document'.
-
- @return Returns the object that is instantiated with the given class name.
- */
-+ (instancetype)objectWithClassName:(NSString *)className;
-
-/**
- Creates a new `PFObject` with a class name, initialized with data
- constructed from the specified set of objects and keys.
-
- @param className The object's class.
- @param dictionary An `NSDictionary` of keys and objects to set on the new `PFObject`.
-
- @return A PFObject with the given class name and set with the given data.
- */
-+ (instancetype)objectWithClassName:(NSString *)className dictionary:(nullable NSDictionary PF_GENERIC(NSString *, id)*)dictionary;
-
-/**
- Creates a reference to an existing PFObject for use in creating associations between PFObjects.
-
- Calling `dataAvailable` on this object will return `NO` until `-fetchIfNeeded` has been called.
- No network request will be made.
-
- @param className The object's class.
- @param objectId The object id for the referenced object.
-
- @return A `PFObject` instance without data.
- */
-+ (instancetype)objectWithoutDataWithClassName:(NSString *)className objectId:(nullable NSString *)objectId;
-
-///--------------------------------------
-/// @name Managing Object Properties
-///--------------------------------------
-
-/**
- The class name of the object.
- */
-@property (nonatomic, strong, readonly) NSString *parseClassName;
-
-/**
- The id of the object.
- */
-@property (nullable, nonatomic, strong) NSString *objectId;
-
-/**
- When the object was last updated.
- */
-@property (nullable, nonatomic, strong, readonly) NSDate *updatedAt;
-
-/**
- When the object was created.
- */
-@property (nullable, nonatomic, strong, readonly) NSDate *createdAt;
-
-/**
- The ACL for this object.
- */
-@property (nullable, nonatomic, strong) PFACL *ACL;
-
-/**
- Returns an array of the keys contained in this object.
-
- This does not include `createdAt`, `updatedAt`, `authData`, or `objectId`.
- It does include things like username and ACL.
- */
-@property (nonatomic, copy, readonly) NSArray PF_GENERIC(NSString *)*allKeys;
-
-///--------------------------------------
-/// @name Accessors
-///--------------------------------------
-
-/**
- Returns the value associated with a given key.
-
- @param key The key for which to return the corresponding value.
-
- @see -objectForKeyedSubscript:
- */
-- (nullable id)objectForKey:(NSString *)key;
-
-/**
- Sets the object associated with a given key.
-
- @param object The object for `key`. A strong reference to the object is maintained by PFObject.
- Raises an `NSInvalidArgumentException` if `object` is `nil`.
- If you need to represent a `nil` value - use `NSNull`.
- @param key The key for `object`.
- Raises an `NSInvalidArgumentException` if `key` is `nil`.
-
- @see -setObject:forKeyedSubscript:
- */
-- (void)setObject:(id)object forKey:(NSString *)key;
-
-/**
- Unsets a key on the object.
-
- @param key The key.
- */
-- (void)removeObjectForKey:(NSString *)key;
-
-/**
- Returns the value associated with a given key.
-
- This method enables usage of literal syntax on `PFObject`.
- E.g. `NSString *value = object[@"key"];`
-
- @param key The key for which to return the corresponding value.
-
- @see -objectForKey:
- */
-- (nullable id)objectForKeyedSubscript:(NSString *)key;
-
-/**
- Returns the value associated with a given key.
-
- This method enables usage of literal syntax on `PFObject`.
- E.g. `object[@"key"] = @"value";`
-
- @param object The object for `key`. A strong reference to the object is maintained by PFObject.
- Raises an `NSInvalidArgumentException` if `object` is `nil`.
- If you need to represent a `nil` value - use `NSNull`.
- @param key The key for `object`.
- Raises an `NSInvalidArgumentException` if `key` is `nil`.
-
- @see -setObject:forKey:
- */
-- (void)setObject:(id)object forKeyedSubscript:(NSString *)key;
-
-/**
- Returns the instance of `PFRelation` class associated with the given key.
-
- @param key The key that the relation is associated with.
- */
-- (PFRelation *)relationForKey:(NSString *)key;
-
-/**
- Returns the instance of `PFRelation` class associated with the given key.
-
- @param key The key that the relation is associated with.
-
- @deprecated Please use `PFObject.-relationForKey:` instead.
- */
-- (PFRelation *)relationforKey:(NSString *)key PARSE_DEPRECATED("Please use -relationForKey: instead.");
-
-/**
- Clears any changes to this object made since the last call to save and sets it back to the server state.
- */
-- (void)revert;
-
-/**
- Clears any changes to this object's key that were done after last successful save and sets it back to the
- server state.
-
- @param key The key to revert changes for.
- */
-- (void)revertObjectForKey:(NSString *)key;
-
-///--------------------------------------
-/// @name Array Accessors
-///--------------------------------------
-
-/**
- Adds an object to the end of the array associated with a given key.
-
- @param object The object to add.
- @param key The key.
- */
-- (void)addObject:(id)object forKey:(NSString *)key;
-
-/**
- Adds the objects contained in another array to the end of the array associated with a given key.
-
- @param objects The array of objects to add.
- @param key The key.
- */
-- (void)addObjectsFromArray:(NSArray *)objects forKey:(NSString *)key;
-
-/**
- Adds an object to the array associated with a given key, only if it is not already present in the array.
-
- The position of the insert is not guaranteed.
-
- @param object The object to add.
- @param key The key.
- */
-- (void)addUniqueObject:(id)object forKey:(NSString *)key;
-
-/**
- Adds the objects contained in another array to the array associated with a given key,
- only adding elements which are not already present in the array.
-
- @dicsussion The position of the insert is not guaranteed.
-
- @param objects The array of objects to add.
- @param key The key.
- */
-- (void)addUniqueObjectsFromArray:(NSArray *)objects forKey:(NSString *)key;
-
-/**
- Removes all occurrences of an object from the array associated with a given key.
-
- @param object The object to remove.
- @param key The key.
- */
-- (void)removeObject:(id)object forKey:(NSString *)key;
-
-/**
- Removes all occurrences of the objects contained in another array from the array associated with a given key.
-
- @param objects The array of objects to remove.
- @param key The key.
- */
-- (void)removeObjectsInArray:(NSArray *)objects forKey:(NSString *)key;
-
-///--------------------------------------
-/// @name Increment
-///--------------------------------------
-
-/**
- Increments the given key by `1`.
-
- @param key The key.
- */
-- (void)incrementKey:(NSString *)key;
-
-/**
- Increments the given key by a number.
-
- @param key The key.
- @param amount The amount to increment.
- */
-- (void)incrementKey:(NSString *)key byAmount:(NSNumber *)amount;
-
-///--------------------------------------
-/// @name Saving Objects
-///--------------------------------------
-
-/**
- *Synchronously* saves the `PFObject`.
-
- @return Returns whether the save succeeded.
- */
-- (BOOL)save PF_SWIFT_UNAVAILABLE;
-
-/**
- *Synchronously* saves the `PFObject` and sets an error if it occurs.
-
- @param error Pointer to an `NSError` that will be set if necessary.
-
- @return Returns whether the save succeeded.
- */
-- (BOOL)save:(NSError **)error;
-
-/**
- Saves the `PFObject` *asynchronously*.
-
- @return The task that encapsulates the work being done.
- */
-- (BFTask PF_GENERIC(NSNumber *)*)saveInBackground;
-
-/**
- Saves the `PFObject` *asynchronously* and executes the given callback block.
-
- @param block The block to execute.
- It should have the following argument signature: `^(BOOL succeeded, NSError *error)`.
- */
-- (void)saveInBackgroundWithBlock:(nullable PFBooleanResultBlock)block;
-
-/*
- Saves the `PFObject` asynchronously and calls the given callback.
-
- @param target The object to call selector on.
- @param selector The selector to call.
- It should have the following signature: `(void)callbackWithResult:(NSNumber *)result error:(NSError *)error`.
- `error` will be `nil` on success and set if there was an error.
- `[result boolValue]` will tell you whether the call succeeded or not.
- */
-- (void)saveInBackgroundWithTarget:(nullable id)target selector:(nullable SEL)selector;
-
-/**
- Saves this object to the server at some unspecified time in the future,
- even if Parse is currently inaccessible.
-
- Use this when you may not have a solid network connection, and don't need to know when the save completes.
- If there is some problem with the object such that it can't be saved, it will be silently discarded. If the save
- completes successfully while the object is still in memory, then callback will be called.
-
- Objects saved with this method will be stored locally in an on-disk cache until they can be delivered to Parse.
- They will be sent immediately if possible. Otherwise, they will be sent the next time a network connection is
- available. Objects saved this way will persist even after the app is closed, in which case they will be sent the
- next time the app is opened. If more than 10MB of data is waiting to be sent, subsequent calls to `-saveEventually`
- will cause old saves to be silently discarded until the connection can be re-established, and the queued objects
- can be saved.
-
- @return The task that encapsulates the work being done.
- */
-- (BFTask PF_GENERIC(NSNumber *)*)saveEventually PF_TV_UNAVAILABLE PF_WATCH_UNAVAILABLE;
-
-/**
- Saves this object to the server at some unspecified time in the future,
- even if Parse is currently inaccessible.
-
- Use this when you may not have a solid network connection, and don't need to know when the save completes.
- If there is some problem with the object such that it can't be saved, it will be silently discarded. If the save
- completes successfully while the object is still in memory, then callback will be called.
-
- Objects saved with this method will be stored locally in an on-disk cache until they can be delivered to Parse.
- They will be sent immediately if possible. Otherwise, they will be sent the next time a network connection is
- available. Objects saved this way will persist even after the app is closed, in which case they will be sent the
- next time the app is opened. If more than 10MB of data is waiting to be sent, subsequent calls to `-saveEventually:`
- will cause old saves to be silently discarded until the connection can be re-established, and the queued objects
- can be saved.
-
- @param callback The block to execute.
- It should have the following argument signature: `^(BOOL succeeded, NSError *error)`.
- */
-- (void)saveEventually:(nullable PFBooleanResultBlock)callback PF_TV_UNAVAILABLE PF_WATCH_UNAVAILABLE;
-
-///--------------------------------------
-/// @name Saving Many Objects
-///--------------------------------------
-
-/**
- Saves a collection of objects *synchronously all at once.
-
- @param objects The array of objects to save.
-
- @return Returns whether the save succeeded.
- */
-+ (BOOL)saveAll:(nullable NSArray PF_GENERIC(PFObject *)*)objects PF_SWIFT_UNAVAILABLE;
-
-/**
- Saves a collection of objects *synchronously* all at once and sets an error if necessary.
-
- @param objects The array of objects to save.
- @param error Pointer to an `NSError` that will be set if necessary.
-
- @return Returns whether the save succeeded.
- */
-+ (BOOL)saveAll:(nullable NSArray PF_GENERIC(PFObject *)*)objects error:(NSError **)error;
-
-/**
- Saves a collection of objects all at once *asynchronously*.
-
- @param objects The array of objects to save.
-
- @return The task that encapsulates the work being done.
- */
-+ (BFTask PF_GENERIC(NSNumber *)*)saveAllInBackground:(nullable NSArray PF_GENERIC(PFObject *)*)objects;
-
-/**
- Saves a collection of objects all at once `asynchronously` and executes the block when done.
-
- @param objects The array of objects to save.
- @param block The block to execute.
- It should have the following argument signature: `^(BOOL succeeded, NSError *error)`.
- */
-+ (void)saveAllInBackground:(nullable NSArray PF_GENERIC(PFObject *)*)objects
- block:(nullable PFBooleanResultBlock)block;
-
-/*
- Saves a collection of objects all at once *asynchronously* and calls a callback when done.
-
- @param objects The array of objects to save.
- @param target The object to call selector on.
- @param selector The selector to call.
- It should have the following signature: `(void)callbackWithResult:(NSNumber *)number error:(NSError *)error`.
- `error` will be `nil` on success and set if there was an error.
- `[result boolValue]` will tell you whether the call succeeded or not.
- */
-+ (void)saveAllInBackground:(nullable NSArray PF_GENERIC(PFObject *)*)objects
- target:(nullable id)target
- selector:(nullable SEL)selector;
-
-///--------------------------------------
-/// @name Deleting Many Objects
-///--------------------------------------
-
-/**
- *Synchronously* deletes a collection of objects all at once.
-
- @param objects The array of objects to delete.
-
- @return Returns whether the delete succeeded.
- */
-+ (BOOL)deleteAll:(nullable NSArray PF_GENERIC(PFObject *)*)objects PF_SWIFT_UNAVAILABLE;
-
-/**
- *Synchronously* deletes a collection of objects all at once and sets an error if necessary.
-
- @param objects The array of objects to delete.
- @param error Pointer to an `NSError` that will be set if necessary.
-
- @return Returns whether the delete succeeded.
- */
-+ (BOOL)deleteAll:(nullable NSArray PF_GENERIC(PFObject *)*)objects error:(NSError **)error;
-
-/**
- Deletes a collection of objects all at once asynchronously.
- @param objects The array of objects to delete.
- @return The task that encapsulates the work being done.
- */
-+ (BFTask PF_GENERIC(NSNumber *)*)deleteAllInBackground:(nullable NSArray PF_GENERIC(PFObject *)*)objects;
-
-/**
- Deletes a collection of objects all at once *asynchronously* and executes the block when done.
-
- @param objects The array of objects to delete.
- @param block The block to execute.
- It should have the following argument signature: `^(BOOL succeeded, NSError *error)`.
- */
-+ (void)deleteAllInBackground:(nullable NSArray PF_GENERIC(PFObject *)*)objects
- block:(nullable PFBooleanResultBlock)block;
-
-/*
- Deletes a collection of objects all at once *asynchronously* and calls a callback when done.
-
- @param objects The array of objects to delete.
- @param target The object to call selector on.
- @param selector The selector to call.
- It should have the following signature: `(void)callbackWithResult:(NSNumber *)number error:(NSError *)error`.
- `error` will be `nil` on success and set if there was an error.
- `[result boolValue]` will tell you whether the call succeeded or not.
- */
-+ (void)deleteAllInBackground:(nullable NSArray PF_GENERIC(PFObject *)*)objects
- target:(nullable id)target
- selector:(nullable SEL)selector;
-
-///--------------------------------------
-/// @name Getting an Object
-///--------------------------------------
-
-/**
- Gets whether the `PFObject` has been fetched.
-
- @return `YES` if the PFObject is new or has been fetched or refreshed, otherwise `NO`.
- */
-@property (nonatomic, assign, readonly, getter=isDataAvailable) BOOL dataAvailable;
-
-#if PARSE_IOS_ONLY
-
-/**
- Refreshes the PFObject with the current data from the server.
-
- @deprecated Please use `-fetch` instead.
- */
-- (nullable instancetype)refresh PF_SWIFT_UNAVAILABLE PARSE_DEPRECATED("Please use `-fetch` instead.");
-
-/**
- *Synchronously* refreshes the `PFObject` with the current data from the server and sets an error if it occurs.
-
- @param error Pointer to an `NSError` that will be set if necessary.
-
- @deprecated Please use `-fetch:` instead.
- */
-- (nullable instancetype)refresh:(NSError **)error PARSE_DEPRECATED("Please use `-fetch:` instead.");
-
-/**
- *Asynchronously* refreshes the `PFObject` and executes the given callback block.
-
- @param block The block to execute.
- The block should have the following argument signature: `^(PFObject *object, NSError *error)`
-
- @deprecated Please use `-fetchInBackgroundWithBlock:` instead.
- */
-- (void)refreshInBackgroundWithBlock:(nullable PFObjectResultBlock)block PARSE_DEPRECATED("Please use `-fetchInBackgroundWithBlock:` instead.");
-
-/*
- *Asynchronously* refreshes the `PFObject` and calls the given callback.
-
- @param target The target on which the selector will be called.
- @param selector The selector to call.
- It should have the following signature: `(void)callbackWithResult:(PFObject *)refreshedObject error:(NSError *)error`.
- `error` will be `nil` on success and set if there was an error.
- `refreshedObject` will be the `PFObject` with the refreshed data.
-
- @deprecated Please use `fetchInBackgroundWithTarget:selector:` instead.
- */
-- (void)refreshInBackgroundWithTarget:(nullable id)target
- selector:(nullable SEL)selector PARSE_DEPRECATED("Please use `fetchInBackgroundWithTarget:selector:` instead.");
-
-#endif
-
-/**
- *Synchronously* fetches the PFObject with the current data from the server.
- */
-- (nullable instancetype)fetch PF_SWIFT_UNAVAILABLE;
-/**
- *Synchronously* fetches the PFObject with the current data from the server and sets an error if it occurs.
-
- @param error Pointer to an `NSError` that will be set if necessary.
- */
-- (nullable instancetype)fetch:(NSError **)error;
-
-/**
- *Synchronously* fetches the `PFObject` data from the server if `dataAvailable` is `NO`.
- */
-- (nullable instancetype)fetchIfNeeded PF_SWIFT_UNAVAILABLE;
-
-/**
- *Synchronously* fetches the `PFObject` data from the server if `dataAvailable` is `NO`.
-
- @param error Pointer to an `NSError` that will be set if necessary.
- */
-- (nullable instancetype)fetchIfNeeded:(NSError **)error;
-
-/**
- Fetches the `PFObject` *asynchronously* and sets it as a result for the task.
-
- @return The task that encapsulates the work being done.
- */
-- (BFTask PF_GENERIC(__kindof PFObject *)*)fetchInBackground;
-
-/**
- Fetches the `PFObject` *asynchronously* and executes the given callback block.
-
- @param block The block to execute.
- It should have the following argument signature: `^(PFObject *object, NSError *error)`.
- */
-- (void)fetchInBackgroundWithBlock:(nullable PFObjectResultBlock)block;
-
-/*
- Fetches the `PFObject *asynchronously* and calls the given callback.
-
- @param target The target on which the selector will be called.
- @param selector The selector to call.
- It should have the following signature: `(void)callbackWithResult:(PFObject *)refreshedObject error:(NSError *)error`.
- `error` will be `nil` on success and set if there was an error.
- `refreshedObject` will be the `PFObject` with the refreshed data.
- */
-- (void)fetchInBackgroundWithTarget:(nullable id)target selector:(nullable SEL)selector;
-
-/**
- Fetches the `PFObject` data *asynchronously* if `dataAvailable` is `NO`,
- then sets it as a result for the task.
-
- @return The task that encapsulates the work being done.
- */
-- (BFTask PF_GENERIC(__kindof PFObject *)*)fetchIfNeededInBackground;
-
-/**
- Fetches the `PFObject` data *asynchronously* if `dataAvailable` is `NO`, then calls the callback block.
-
- @param block The block to execute.
- It should have the following argument signature: `^(PFObject *object, NSError *error)`.
- */
-- (void)fetchIfNeededInBackgroundWithBlock:(nullable PFObjectResultBlock)block;
-
-/*
- Fetches the PFObject's data asynchronously if `dataAvailable` is `NO`, then calls the callback.
-
- @param target The target on which the selector will be called.
- @param selector The selector to call.
- It should have the following signature: `(void)callbackWithResult:(PFObject *)fetchedObject error:(NSError *)error`.
- `error` will be `nil` on success and set if there was an error.
- `refreshedObject` will be the `PFObject` with the refreshed data.
- */
-- (void)fetchIfNeededInBackgroundWithTarget:(nullable id)target selector:(nullable SEL)selector;
-
-///--------------------------------------
-/// @name Getting Many Objects
-///--------------------------------------
-
-/**
- *Synchronously* fetches all of the `PFObject` objects with the current data from the server.
-
- @param objects The list of objects to fetch.
- */
-+ (nullable NSArray PF_GENERIC(__kindof PFObject *)*)fetchAll:(nullable NSArray PF_GENERIC(PFObject *)*)objects PF_SWIFT_UNAVAILABLE;
-
-/**
- *Synchronously* fetches all of the `PFObject` objects with the current data from the server
- and sets an error if it occurs.
-
- @param objects The list of objects to fetch.
- @param error Pointer to an `NSError` that will be set if necessary.
- */
-+ (nullable NSArray PF_GENERIC(__kindof PFObject *)*)fetchAll:(nullable NSArray PF_GENERIC(PFObject *)*)objects
- error:(NSError **)error;
-
-/**
- *Synchronously* fetches all of the `PFObject` objects with the current data from the server.
- @param objects The list of objects to fetch.
- */
-+ (nullable NSArray PF_GENERIC(__kindof PFObject *)*)fetchAllIfNeeded:(nullable NSArray PF_GENERIC(PFObject *)*)objects PF_SWIFT_UNAVAILABLE;
-
-/**
- *Synchronously* fetches all of the `PFObject` objects with the current data from the server
- and sets an error if it occurs.
-
- @param objects The list of objects to fetch.
- @param error Pointer to an `NSError` that will be set if necessary.
- */
-+ (nullable NSArray PF_GENERIC(__kindof PFObject *)*)fetchAllIfNeeded:(nullable NSArray PF_GENERIC(PFObject *)*)objects
- error:(NSError **)error;
-
-/**
- Fetches all of the `PFObject` objects with the current data from the server *asynchronously*.
-
- @param objects The list of objects to fetch.
-
- @return The task that encapsulates the work being done.
- */
-+ (BFTask PF_GENERIC(NSArray<__kindof PFObject *> *)*)fetchAllInBackground:(nullable NSArray PF_GENERIC(PFObject *)*)objects;
-
-/**
- Fetches all of the `PFObject` objects with the current data from the server *asynchronously*
- and calls the given block.
-
- @param objects The list of objects to fetch.
- @param block The block to execute.
- It should have the following argument signature: `^(NSArray *objects, NSError *error)`.
- */
-+ (void)fetchAllInBackground:(nullable NSArray PF_GENERIC(PFObject *)*)objects
- block:(nullable PFArrayResultBlock)block;
-
-/*
- Fetches all of the `PFObject` objects with the current data from the server *asynchronously*
- and calls the given callback.
-
- @param objects The list of objects to fetch.
- @param target The target on which the selector will be called.
- @param selector The selector to call.
- It should have the following signature: `(void)callbackWithResult:(NSArray *)fetchedObjects error:(NSError *)error`.
- `error` will be `nil` on success and set if there was an error.
- `fetchedObjects` will the array of `PFObject` objects that were fetched.
- */
-+ (void)fetchAllInBackground:(nullable NSArray PF_GENERIC(PFObject *)*)objects
- target:(nullable id)target
- selector:(nullable SEL)selector;
-
-/**
- Fetches all of the `PFObject` objects with the current data from the server *asynchronously*.
-
- @param objects The list of objects to fetch.
-
- @return The task that encapsulates the work being done.
- */
-+ (BFTask PF_GENERIC(NSArray<__kindof PFObject *> *)*)fetchAllIfNeededInBackground:(nullable NSArray PF_GENERIC(PFObject *)*)objects;
-
-/**
- Fetches all of the PFObjects with the current data from the server *asynchronously*
- and calls the given block.
-
- @param objects The list of objects to fetch.
- @param block The block to execute.
- It should have the following argument signature: `^(NSArray *objects, NSError *error)`.
- */
-+ (void)fetchAllIfNeededInBackground:(nullable NSArray PF_GENERIC(PFObject *)*)objects
- block:(nullable PFArrayResultBlock)block;
-
-/*
- Fetches all of the PFObjects with the current data from the server *asynchronously*
- and calls the given callback.
-
- @param objects The list of objects to fetch.
- @param target The target on which the selector will be called.
- @param selector The selector to call.
- It should have the following signature: `(void)callbackWithResult:(NSArray *)fetchedObjects error:(NSError *)error`.
- `error` will be `nil` on success and set if there was an error.
- `fetchedObjects` will the array of `PFObject` objects that were fetched.
- */
-+ (void)fetchAllIfNeededInBackground:(nullable NSArray PF_GENERIC(PFObject *)*)objects
- target:(nullable id)target
- selector:(nullable SEL)selector;
-
-///--------------------------------------
-/// @name Fetching From Local Datastore
-///--------------------------------------
-
-/**
- *Synchronously* loads data from the local datastore into this object,
- if it has not been fetched from the server already.
- */
-- (nullable instancetype)fetchFromLocalDatastore PF_SWIFT_UNAVAILABLE;
-
-/**
- *Synchronously* loads data from the local datastore into this object, if it has not been fetched
- from the server already.
-
- If the object is not stored in the local datastore, this `error` will be set to
- return `kPFErrorCacheMiss`.
-
- @param error Pointer to an `NSError` that will be set if necessary.
- */
-- (nullable instancetype)fetchFromLocalDatastore:(NSError **)error;
-
-/**
- *Asynchronously* loads data from the local datastore into this object,
- if it has not been fetched from the server already.
-
- @return The task that encapsulates the work being done.
- */
-- (BFTask PF_GENERIC(__kindof PFObject *)*)fetchFromLocalDatastoreInBackground;
-
-/**
- *Asynchronously* loads data from the local datastore into this object,
- if it has not been fetched from the server already.
-
- @param block The block to execute.
- It should have the following argument signature: `^(PFObject *object, NSError *error)`.
- */
-- (void)fetchFromLocalDatastoreInBackgroundWithBlock:(nullable PFObjectResultBlock)block;
-
-///--------------------------------------
-/// @name Deleting an Object
-///--------------------------------------
-
-/**
- *Synchronously* deletes the `PFObject`.
-
- @return Returns whether the delete succeeded.
- */
-- (BOOL)delete PF_SWIFT_UNAVAILABLE;
-
-/**
- *Synchronously* deletes the `PFObject` and sets an error if it occurs.
-
- @param error Pointer to an `NSError` that will be set if necessary.
-
- @return Returns whether the delete succeeded.
- */
-- (BOOL)delete:(NSError **)error;
-
-/**
- Deletes the `PFObject` *asynchronously*.
-
- @return The task that encapsulates the work being done.
- */
-- (BFTask PF_GENERIC(NSNumber *)*)deleteInBackground;
-
-/**
- Deletes the `PFObject` *asynchronously* and executes the given callback block.
-
- @param block The block to execute.
- It should have the following argument signature: `^(BOOL succeeded, NSError *error)`.
- */
-- (void)deleteInBackgroundWithBlock:(nullable PFBooleanResultBlock)block;
-
-/*
- Deletes the `PFObject` *asynchronously* and calls the given callback.
-
- @param target The object to call selector on.
- @param selector The selector to call.
- It should have the following signature: `(void)callbackWithResult:(NSNumber *)result error:(NSError *)error`.
- `error` will be `nil` on success and set if there was an error.
- `[result boolValue]` will tell you whether the call succeeded or not.
- */
-- (void)deleteInBackgroundWithTarget:(nullable id)target
- selector:(nullable SEL)selector;
-
-/**
- Deletes this object from the server at some unspecified time in the future,
- even if Parse is currently inaccessible.
-
- Use this when you may not have a solid network connection,
- and don't need to know when the delete completes. If there is some problem with the object
- such that it can't be deleted, the request will be silently discarded.
-
- Delete instructions made with this method will be stored locally in an on-disk cache until they can be transmitted
- to Parse. They will be sent immediately if possible. Otherwise, they will be sent the next time a network connection
- is available. Delete requests will persist even after the app is closed, in which case they will be sent the
- next time the app is opened. If more than 10MB of `-saveEventually` or `-deleteEventually` commands are waiting
- to be sent, subsequent calls to `-saveEventually` or `-deleteEventually` will cause old requests to be silently discarded
- until the connection can be re-established, and the queued requests can go through.
-
- @return The task that encapsulates the work being done.
- */
-- (BFTask PF_GENERIC(NSNumber *)*)deleteEventually PF_TV_UNAVAILABLE PF_WATCH_UNAVAILABLE;
-
-///--------------------------------------
-/// @name Dirtiness
-///--------------------------------------
-
-/**
- Gets whether any key-value pair in this object (or its children)
- has been added/updated/removed and not saved yet.
-
- @return Returns whether this object has been altered and not saved yet.
- */
-@property (nonatomic, assign, readonly, getter=isDirty) BOOL dirty;
-
-/**
- Get whether a value associated with a key has been added/updated/removed and not saved yet.
-
- @param key The key to check for
-
- @return Returns whether this key has been altered and not saved yet.
- */
-- (BOOL)isDirtyForKey:(NSString *)key;
-
-///--------------------------------------
-/// @name Pinning
-///--------------------------------------
-
-/**
- *Synchronously* stores the object and every object it points to in the local datastore, recursively,
- using a default pin name: `PFObjectDefaultPin`.
-
- If those other objects have not been fetched from Parse, they will not be stored. However,
- if they have changed data, all the changes will be retained. To get the objects back later, you can
- use a `PFQuery` that uses `PFQuery.-fromLocalDatastore`, or you can create an unfetched pointer with
- `+objectWithoutDataWithClassName:objectId:` and then call `-fetchFromLocalDatastore` on it.
-
- @return Returns whether the pin succeeded.
-
- @see `-unpin:`
- @see `PFObjectDefaultPin`
- */
-- (BOOL)pin PF_SWIFT_UNAVAILABLE;
-
-/**
- *Synchronously* stores the object and every object it points to in the local datastore, recursively,
- using a default pin name: `PFObjectDefaultPin`.
-
- If those other objects have not been fetched from Parse, they will not be stored. However,
- if they have changed data, all the changes will be retained. To get the objects back later, you can
- use a `PFQuery` that uses `PFQuery.-fromLocalDatastore`, or you can create an unfetched pointer with
- `+objectWithoutDataWithClassName:objectId:` and then call `-fetchFromLocalDatastore` on it.
-
- @param error Pointer to an `NSError` that will be set if necessary.
-
- @return Returns whether the pin succeeded.
-
- @see `-unpin:`
- @see `PFObjectDefaultPin`
- */
-- (BOOL)pin:(NSError **)error;
-
-/**
- *Synchronously* stores the object and every object it points to in the local datastore, recursively.
-
- If those other objects have not been fetched from Parse, they will not be stored. However,
- if they have changed data, all the changes will be retained. To get the objects back later, you can
- use a `PFQuery` that uses `PFQuery.-fromLocalDatastore`, or you can create an unfetched pointer with
- `+objectWithoutDataWithClassName:objectId:` and then call `-fetchFromLocalDatastore` on it.
-
- @param name The name of the pin.
-
- @return Returns whether the pin succeeded.
-
- @see `-unpinWithName:`
- */
-- (BOOL)pinWithName:(NSString *)name PF_SWIFT_UNAVAILABLE;
-
-/**
- *Synchronously* stores the object and every object it points to in the local datastore, recursively.
-
- If those other objects have not been fetched from Parse, they will not be stored. However,
- if they have changed data, all the changes will be retained. To get the objects back later, you can
- use a `PFQuery` that uses `PFQuery.-fromLocalDatastore`, or you can create an unfetched pointer with
- `+objectWithoutDataWithClassName:objectId:` and then call `-fetchFromLocalDatastore` on it.
-
- @param name The name of the pin.
- @param error Pointer to an `NSError` that will be set if necessary.
-
- @return Returns whether the pin succeeded.
-
- @see `-unpinWithName:`
- */
-- (BOOL)pinWithName:(NSString *)name
- error:(NSError **)error;
-
-/**
- *Asynchronously* stores the object and every object it points to in the local datastore, recursively,
- using a default pin name: `PFObjectDefaultPin`.
-
- If those other objects have not been fetched from Parse, they will not be stored. However,
- if they have changed data, all the changes will be retained. To get the objects back later, you can
- use a `PFQuery` that uses `PFQuery.-fromLocalDatastore`, or you can create an unfetched pointer with
- `+objectWithoutDataWithClassName:objectId:` and then call `-fetchFromLocalDatastore` on it.
-
- @return The task that encapsulates the work being done.
-
- @see `-unpinInBackground`
- @see `PFObjectDefaultPin`
- */
-- (BFTask PF_GENERIC(NSNumber *)*)pinInBackground;
-
-/**
- *Asynchronously* stores the object and every object it points to in the local datastore, recursively,
- using a default pin name: `PFObjectDefaultPin`.
-
- If those other objects have not been fetched from Parse, they will not be stored. However,
- if they have changed data, all the changes will be retained. To get the objects back later, you can
- use a `PFQuery` that uses `PFQuery.-fromLocalDatastore`, or you can create an unfetched pointer with
- `+objectWithoutDataWithClassName:objectId:` and then call `-fetchFromLocalDatastore` on it.
-
- @param block The block to execute.
- It should have the following argument signature: `^(BOOL succeeded, NSError *error)`.
-
- @see `-unpinInBackgroundWithBlock:`
- @see `PFObjectDefaultPin`
- */
-- (void)pinInBackgroundWithBlock:(nullable PFBooleanResultBlock)block;
-
-/**
- *Asynchronously* stores the object and every object it points to in the local datastore, recursively.
-
- If those other objects have not been fetched from Parse, they will not be stored. However,
- if they have changed data, all the changes will be retained. To get the objects back later, you can
- use a `PFQuery` that uses `PFQuery.-fromLocalDatastore`, or you can create an unfetched pointer with
- `+objectWithoutDataWithClassName:objectId:` and then call `-fetchFromLocalDatastore on it.
-
- @param name The name of the pin.
-
- @return The task that encapsulates the work being done.
-
- @see unpinInBackgroundWithName:
- */
-- (BFTask PF_GENERIC(NSNumber *)*)pinInBackgroundWithName:(NSString *)name;
-
-/**
- *Asynchronously* stores the object and every object it points to in the local datastore, recursively.
-
- If those other objects have not been fetched from Parse, they will not be stored. However,
- if they have changed data, all the changes will be retained. To get the objects back later, you can
- use a `PFQuery` that uses `PFQuery.-fromLocalDatastore`, or you can create an unfetched pointer with
- `+objectWithoutDataWithClassName:objectId:` and then call `-fetchFromLocalDatastore` on it.
-
- @param name The name of the pin.
- @param block The block to execute.
- It should have the following argument signature: `^(BOOL succeeded, NSError *error)`.
-
- @see unpinInBackgroundWithName:block:
- */
-- (void)pinInBackgroundWithName:(NSString *)name block:(nullable PFBooleanResultBlock)block;
-
-///--------------------------------------
-/// @name Pinning Many Objects
-///--------------------------------------
-
-/**
- *Synchronously* stores the objects and every object they point to in the local datastore, recursively,
- using a default pin name: `PFObjectDefaultPin`.
-
- If those other objects have not been fetched from Parse, they will not be stored. However,
- if they have changed data, all the changes will be retained. To get the objects back later, you can
- use a `PFQuery` that uses `PFQuery.-fromLocalDatastore`, or you can create an unfetched pointer with
- `+objectWithoutDataWithClassName:objectId:` and then call `fetchFromLocalDatastore:` on it.
-
- @param objects The objects to be pinned.
-
- @return Returns whether the pin succeeded.
-
- @see unpinAll:
- @see PFObjectDefaultPin
- */
-+ (BOOL)pinAll:(nullable NSArray PF_GENERIC(PFObject *)*)objects PF_SWIFT_UNAVAILABLE;
-
-/**
- *Synchronously* stores the objects and every object they point to in the local datastore, recursively,
- using a default pin name: `PFObjectDefaultPin`.
-
- If those other objects have not been fetched from Parse, they will not be stored. However,
- if they have changed data, all the changes will be retained. To get the objects back later, you can
- use a `PFQuery` that uses `PFQuery.-fromLocalDatastore`, or you can create an unfetched pointer with
- `+objectWithoutDataWithClassName:objectId:` and then call `fetchFromLocalDatastore:` on it.
-
- @param objects The objects to be pinned.
- @param error Pointer to an `NSError` that will be set if necessary.
-
- @return Returns whether the pin succeeded.
-
- @see unpinAll:error:
- @see PFObjectDefaultPin
- */
-+ (BOOL)pinAll:(nullable NSArray PF_GENERIC(PFObject *)*)objects error:(NSError **)error;
-
-/**
- *Synchronously* stores the objects and every object they point to in the local datastore, recursively.
-
- If those other objects have not been fetched from Parse, they will not be stored. However,
- if they have changed data, all the changes will be retained. To get the objects back later, you can
- use a `PFQuery` that uses `PFQuery.-fromLocalDatastore`, or you can create an unfetched pointer with
- `+objectWithoutDataWithClassName:objectId:` and then call `fetchFromLocalDatastore:` on it.
-
- @param objects The objects to be pinned.
- @param name The name of the pin.
-
- @return Returns whether the pin succeeded.
-
- @see unpinAll:withName:
- */
-+ (BOOL)pinAll:(nullable NSArray PF_GENERIC(PFObject *)*)objects withName:(NSString *)name PF_SWIFT_UNAVAILABLE;
-
-/**
- *Synchronously* stores the objects and every object they point to in the local datastore, recursively.
-
- If those other objects have not been fetched from Parse, they will not be stored. However,
- if they have changed data, all the changes will be retained. To get the objects back later, you can
- use a `PFQuery` that uses `PFQuery.-fromLocalDatastore`, or you can create an unfetched pointer with
- `+objectWithoutDataWithClassName:objectId:` and then call `fetchFromLocalDatastore:` on it.
-
- @param objects The objects to be pinned.
- @param name The name of the pin.
- @param error Pointer to an `NSError` that will be set if necessary.
-
- @return Returns whether the pin succeeded.
-
- @see unpinAll:withName:error:
- */
-+ (BOOL)pinAll:(nullable NSArray PF_GENERIC(PFObject *)*)objects
- withName:(NSString *)name
- error:(NSError **)error;
-
-/**
- *Asynchronously* stores the objects and every object they point to in the local datastore, recursively,
- using a default pin name: `PFObjectDefaultPin`.
-
- If those other objects have not been fetched from Parse, they will not be stored. However,
- if they have changed data, all the changes will be retained. To get the objects back later, you can
- use a `PFQuery` that uses `PFQuery.-fromLocalDatastore`, or you can create an unfetched pointer with
- `+objectWithoutDataWithClassName:objectId:` and then call `fetchFromLocalDatastore:` on it.
-
- @param objects The objects to be pinned.
-
- @return The task that encapsulates the work being done.
-
- @see unpinAllInBackground:
- @see PFObjectDefaultPin
- */
-+ (BFTask PF_GENERIC(NSNumber *)*)pinAllInBackground:(nullable NSArray PF_GENERIC(PFObject *)*)objects;
-
-/**
- *Asynchronously* stores the objects and every object they point to in the local datastore, recursively,
- using a default pin name: `PFObjectDefaultPin`.
-
- If those other objects have not been fetched from Parse, they will not be stored. However,
- if they have changed data, all the changes will be retained. To get the objects back later, you can
- use a `PFQuery` that uses `PFQuery.-fromLocalDatastore`, or you can create an unfetched pointer with
- `+objectWithoutDataWithClassName:objectId:` and then call `fetchFromLocalDatastore:` on it.
-
- @param objects The objects to be pinned.
- @param block The block to execute.
- It should have the following argument signature: `^(BOOL succeeded, NSError *error)`.
-
- @see unpinAllInBackground:block:
- @see PFObjectDefaultPin
- */
-+ (void)pinAllInBackground:(nullable NSArray PF_GENERIC(PFObject *)*)objects block:(nullable PFBooleanResultBlock)block;
-
-/**
- *Asynchronously* stores the objects and every object they point to in the local datastore, recursively.
-
- If those other objects have not been fetched from Parse, they will not be stored. However,
- if they have changed data, all the changes will be retained. To get the objects back later, you can
- use a `PFQuery` that uses `PFQuery.-fromLocalDatastore`, or you can create an unfetched pointer with
- `+objectWithoutDataWithClassName:objectId:` and then call `fetchFromLocalDatastore:` on it.
-
- @param objects The objects to be pinned.
- @param name The name of the pin.
-
- @return The task that encapsulates the work being done.
-
- @see unpinAllInBackground:withName:
- */
-+ (BFTask PF_GENERIC(NSNumber *)*)pinAllInBackground:(nullable NSArray PF_GENERIC(PFObject *)*)objects withName:(NSString *)name;
-
-/**
- *Asynchronously* stores the objects and every object they point to in the local datastore, recursively.
-
- If those other objects have not been fetched from Parse, they will not be stored. However,
- if they have changed data, all the changes will be retained. To get the objects back later, you can
- use a `PFQuery` that uses `PFQuery.-fromLocalDatastore`, or you can create an unfetched pointer with
- `+objectWithoutDataWithClassName:objectId:` and then call `fetchFromLocalDatastore:` on it.
-
- @param objects The objects to be pinned.
- @param name The name of the pin.
- @param block The block to execute.
- It should have the following argument signature: `^(BOOL succeeded, NSError *error)`.
-
- @see unpinAllInBackground:withName:block:
- */
-+ (void)pinAllInBackground:(nullable NSArray PF_GENERIC(PFObject *)*)objects
- withName:(NSString *)name
- block:(nullable PFBooleanResultBlock)block;
-
-///--------------------------------------
-/// @name Unpinning
-///--------------------------------------
-
-/**
- *Synchronously* removes the object and every object it points to in the local datastore, recursively,
- using a default pin name: `PFObjectDefaultPin`.
-
- @return Returns whether the unpin succeeded.
-
- @see pin:
- @see PFObjectDefaultPin
- */
-- (BOOL)unpin PF_SWIFT_UNAVAILABLE;
-
-/**
- *Synchronously* removes the object and every object it points to in the local datastore, recursively,
- using a default pin name: `PFObjectDefaultPin`.
-
- @param error Pointer to an `NSError` that will be set if necessary.
-
- @return Returns whether the unpin succeeded.
-
- @see pin:
- @see PFObjectDefaultPin
- */
-- (BOOL)unpin:(NSError **)error;
-
-/**
- *Synchronously* removes the object and every object it points to in the local datastore, recursively.
-
- @param name The name of the pin.
-
- @return Returns whether the unpin succeeded.
-
- @see pinWithName:
- */
-- (BOOL)unpinWithName:(NSString *)name PF_SWIFT_UNAVAILABLE;
-
-/**
- *Synchronously* removes the object and every object it points to in the local datastore, recursively.
-
- @param name The name of the pin.
- @param error Pointer to an `NSError` that will be set if necessary.
-
- @return Returns whether the unpin succeeded.
-
- @see pinWithName:error:
- */
-- (BOOL)unpinWithName:(NSString *)name
- error:(NSError **)error;
-
-/**
- *Asynchronously* removes the object and every object it points to in the local datastore, recursively,
- using a default pin name: `PFObjectDefaultPin`.
-
- @return The task that encapsulates the work being done.
-
- @see pinInBackground
- @see PFObjectDefaultPin
- */
-- (BFTask PF_GENERIC(NSNumber *)*)unpinInBackground;
-
-/**
- *Asynchronously* removes the object and every object it points to in the local datastore, recursively,
- using a default pin name: `PFObjectDefaultPin`.
-
- @param block The block to execute.
- It should have the following argument signature: `^(BOOL succeeded, NSError *error)`.
-
- @see pinInBackgroundWithBlock:
- @see PFObjectDefaultPin
- */
-- (void)unpinInBackgroundWithBlock:(nullable PFBooleanResultBlock)block;
-
-/**
- *Asynchronously* removes the object and every object it points to in the local datastore, recursively.
-
- @param name The name of the pin.
-
- @return The task that encapsulates the work being done.
-
- @see pinInBackgroundWithName:
- */
-- (BFTask PF_GENERIC(NSNumber *)*)unpinInBackgroundWithName:(NSString *)name;
-
-/**
- *Asynchronously* removes the object and every object it points to in the local datastore, recursively.
-
- @param name The name of the pin.
- @param block The block to execute.
- It should have the following argument signature: `^(BOOL succeeded, NSError *error)`.
-
- @see pinInBackgroundWithName:block:
- */
-- (void)unpinInBackgroundWithName:(NSString *)name block:(nullable PFBooleanResultBlock)block;
-
-///--------------------------------------
-/// @name Unpinning Many Objects
-///--------------------------------------
-
-/**
- *Synchronously* removes all objects in the local datastore
- using a default pin name: `PFObjectDefaultPin`.
-
- @return Returns whether the unpin succeeded.
-
- @see PFObjectDefaultPin
- */
-+ (BOOL)unpinAllObjects PF_SWIFT_UNAVAILABLE;
-
-/**
- *Synchronously* removes all objects in the local datastore
- using a default pin name: `PFObjectDefaultPin`.
-
- @param error Pointer to an `NSError` that will be set if necessary.
-
- @return Returns whether the unpin succeeded.
-
- @see PFObjectDefaultPin
- */
-+ (BOOL)unpinAllObjects:(NSError **)error;
-
-/**
- *Synchronously* removes all objects with the specified pin name.
-
- @param name The name of the pin.
-
- @return Returns whether the unpin succeeded.
- */
-+ (BOOL)unpinAllObjectsWithName:(NSString *)name PF_SWIFT_UNAVAILABLE;
-
-/**
- *Synchronously* removes all objects with the specified pin name.
-
- @param name The name of the pin.
- @param error Pointer to an `NSError` that will be set if necessary.
-
- @return Returns whether the unpin succeeded.
- */
-+ (BOOL)unpinAllObjectsWithName:(NSString *)name
- error:(NSError **)error;
-
-/**
- *Asynchronously* removes all objects in the local datastore
- using a default pin name: `PFObjectDefaultPin`.
-
- @return The task that encapsulates the work being done.
-
- @see PFObjectDefaultPin
- */
-+ (BFTask PF_GENERIC(NSNumber *)*)unpinAllObjectsInBackground;
-
-/**
- *Asynchronously* removes all objects in the local datastore
- using a default pin name: `PFObjectDefaultPin`.
-
- @param block The block to execute.
- It should have the following argument signature: `^(BOOL succeeded, NSError *error)`.
-
- @see PFObjectDefaultPin
- */
-+ (void)unpinAllObjectsInBackgroundWithBlock:(nullable PFBooleanResultBlock)block;
-
-/**
- *Asynchronously* removes all objects with the specified pin name.
-
- @param name The name of the pin.
-
- @return The task that encapsulates the work being done.
- */
-+ (BFTask PF_GENERIC(NSNumber *)*)unpinAllObjectsInBackgroundWithName:(NSString *)name;
-
-/**
- *Asynchronously* removes all objects with the specified pin name.
-
- @param name The name of the pin.
- @param block The block to execute.
- It should have the following argument signature: `^(BOOL succeeded, NSError *error)`.
- */
-+ (void)unpinAllObjectsInBackgroundWithName:(NSString *)name block:(nullable PFBooleanResultBlock)block;
-
-/**
- *Synchronously* removes the objects and every object they point to in the local datastore, recursively,
- using a default pin name: `PFObjectDefaultPin`.
-
- @param objects The objects.
-
- @return Returns whether the unpin succeeded.
-
- @see pinAll:
- @see PFObjectDefaultPin
- */
-+ (BOOL)unpinAll:(nullable NSArray PF_GENERIC(PFObject *)*)objects PF_SWIFT_UNAVAILABLE;
-
-/**
- *Synchronously* removes the objects and every object they point to in the local datastore, recursively,
- using a default pin name: `PFObjectDefaultPin`.
-
- @param objects The objects.
- @param error Pointer to an `NSError` that will be set if necessary.
-
- @return Returns whether the unpin succeeded.
-
- @see pinAll:error:
- @see PFObjectDefaultPin
- */
-+ (BOOL)unpinAll:(nullable NSArray PF_GENERIC(PFObject *)*)objects error:(NSError **)error;
-
-/**
- *Synchronously* removes the objects and every object they point to in the local datastore, recursively.
-
- @param objects The objects.
- @param name The name of the pin.
-
- @return Returns whether the unpin succeeded.
-
- @see pinAll:withName:
- */
-+ (BOOL)unpinAll:(nullable NSArray PF_GENERIC(PFObject *)*)objects withName:(NSString *)name PF_SWIFT_UNAVAILABLE;
-
-/**
- *Synchronously* removes the objects and every object they point to in the local datastore, recursively.
-
- @param objects The objects.
- @param name The name of the pin.
- @param error Pointer to an `NSError` that will be set if necessary.
-
- @return Returns whether the unpin succeeded.
-
- @see pinAll:withName:error:
- */
-+ (BOOL)unpinAll:(nullable NSArray PF_GENERIC(PFObject *)*)objects
- withName:(NSString *)name
- error:(NSError **)error;
-
-/**
- *Asynchronously* removes the objects and every object they point to in the local datastore, recursively,
- using a default pin name: `PFObjectDefaultPin`.
-
- @param objects The objects.
-
- @return The task that encapsulates the work being done.
-
- @see pinAllInBackground:
- @see PFObjectDefaultPin
- */
-+ (BFTask PF_GENERIC(NSNumber *)*)unpinAllInBackground:(nullable NSArray PF_GENERIC(PFObject *)*)objects;
-
-/**
- *Asynchronously* removes the objects and every object they point to in the local datastore, recursively,
- using a default pin name: `PFObjectDefaultPin`.
-
- @param objects The objects.
- @param block The block to execute.
- It should have the following argument signature: `^(BOOL succeeded, NSError *error)`.
-
- @see pinAllInBackground:block:
- @see PFObjectDefaultPin
- */
-+ (void)unpinAllInBackground:(nullable NSArray PF_GENERIC(PFObject *)*)objects block:(nullable PFBooleanResultBlock)block;
-
-/**
- *Asynchronously* removes the objects and every object they point to in the local datastore, recursively.
-
- @param objects The objects.
- @param name The name of the pin.
-
- @return The task that encapsulates the work being done.
-
- @see pinAllInBackground:withName:
- */
-+ (BFTask PF_GENERIC(NSNumber *)*)unpinAllInBackground:(nullable NSArray PF_GENERIC(PFObject *)*)objects withName:(NSString *)name;
-
-/**
- *Asynchronously* removes the objects and every object they point to in the local datastore, recursively.
-
- @param objects The objects.
- @param name The name of the pin.
- @param block The block to execute.
- It should have the following argument signature: `^(BOOL succeeded, NSError *error)`.
-
- @see pinAllInBackground:withName:block:
- */
-+ (void)unpinAllInBackground:(nullable NSArray PF_GENERIC(PFObject *)*)objects
- withName:(NSString *)name
- block:(nullable PFBooleanResultBlock)block;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/iOS/Parse.framework/Headers/PFProduct.h b/iOS/Parse.framework/Headers/PFProduct.h
deleted file mode 100644
index 95107db..0000000
--- a/iOS/Parse.framework/Headers/PFProduct.h
+++ /dev/null
@@ -1,72 +0,0 @@
-/**
- * Copyright (c) 2015-present, Parse, LLC.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- */
-
-#import
-
-#import
-#import
-#import
-
-PF_OSX_UNAVAILABLE_WARNING
-PF_WATCH_UNAVAILABLE_WARNING
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- The `PFProduct` class represents an in-app purchase product on the Parse server.
- By default, products can only be created via the Data Browser. Saving a `PFProduct` will result in error.
- However, the products' metadata information can be queried and viewed.
-
- This class is currently for iOS only.
- */
-PF_OSX_UNAVAILABLE PF_WATCH_UNAVAILABLE @interface PFProduct : PFObject
-
-///--------------------------------------
-/// @name Product-specific Properties
-///--------------------------------------
-
-/**
- The product identifier of the product.
-
- This should match the product identifier in iTunes Connect exactly.
- */
-@property (nullable, nonatomic, strong) NSString *productIdentifier;
-
-/**
- The icon of the product.
- */
-@property (nullable, nonatomic, strong) PFFile *icon;
-
-/**
- The title of the product.
- */
-@property (nullable, nonatomic, strong) NSString *title;
-
-/**
- The subtitle of the product.
- */
-@property (nullable, nonatomic, strong) NSString *subtitle;
-
-/**
- The order in which the product information is displayed in `PFProductTableViewController`.
-
- The product with a smaller order is displayed earlier in the `PFProductTableViewController`.
- */
-@property (nullable, nonatomic, strong) NSNumber *order;
-
-/**
- The name of the associated download.
-
- If there is no downloadable asset, it should be `nil`.
- */
-@property (nullable, nonatomic, strong, readonly) NSString *downloadName;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/iOS/Parse.framework/Headers/PFPurchase.h b/iOS/Parse.framework/Headers/PFPurchase.h
deleted file mode 100644
index 3952f37..0000000
--- a/iOS/Parse.framework/Headers/PFPurchase.h
+++ /dev/null
@@ -1,100 +0,0 @@
-/**
- * Copyright (c) 2015-present, Parse, LLC.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- */
-
-#import
-#import
-
-#import
-
-PF_OSX_UNAVAILABLE_WARNING
-PF_WATCH_UNAVAILABLE_WARNING
-
-@class PFProduct;
-
-NS_ASSUME_NONNULL_BEGIN
-
-typedef void (^PFPurchaseProductObservationBlock)(SKPaymentTransaction *transaction);
-typedef void (^PFPurchaseBuyProductResultBlock)(NSError *__nullable error);
-typedef void (^PFPurchaseDownloadAssetResultBlock)(NSString *__nullable filePath, NSError *__nullable error);
-
-/**
- `PFPurchase` provides a set of APIs for working with in-app purchases.
-
- This class is currently for iOS only.
- */
-PF_OSX_UNAVAILABLE PF_WATCH_UNAVAILABLE @interface PFPurchase : NSObject
-
-/**
- Add application logic block which is run when buying a product.
-
- This method should be called once for each product, and should be called before
- calling `+buyProduct:block:`. All invocations to `+addObserverForProduct:block:` should happen within
- the same method, and on the main thread. It is recommended to place all invocations of this method
- in `application:didFinishLaunchingWithOptions:`.
-
- @param productIdentifier the product identifier
- @param block The block to be run when buying a product.
- */
-+ (void)addObserverForProduct:(NSString *)productIdentifier block:(PFPurchaseProductObservationBlock)block;
-
-/**
- *Asynchronously* initiates the purchase for the product.
-
- @param productIdentifier the product identifier
- @param block the completion block.
- */
-+ (void)buyProduct:(NSString *)productIdentifier block:(nullable PFPurchaseBuyProductResultBlock)block;
-
-/**
- *Asynchronously* download the purchased asset, which is stored on Parse's server.
-
- Parse verifies the receipt with Apple and delivers the content only if the receipt is valid.
-
- @param transaction the transaction, which contains the receipt.
- @param completion the completion block.
- */
-+ (void)downloadAssetForTransaction:(SKPaymentTransaction *)transaction
- completion:(PFPurchaseDownloadAssetResultBlock)completion;
-
-/**
- *Asynchronously* download the purchased asset, which is stored on Parse's server.
-
- Parse verifies the receipt with Apple and delivers the content only if the receipt is valid.
-
- @param transaction the transaction, which contains the receipt.
- @param completion the completion block.
- @param progress the progress block, which is called multiple times to reveal progress of the download.
- */
-+ (void)downloadAssetForTransaction:(SKPaymentTransaction *)transaction
- completion:(PFPurchaseDownloadAssetResultBlock)completion
- progress:(nullable PFProgressBlock)progress;
-
-/**
- *Asynchronously* restore completed transactions for the current user.
-
- Only nonconsumable purchases are restored. If observers for the products have been added before
- calling this method, invoking the method reruns the application logic associated with the purchase.
-
- @warning This method is only important to developers who want to preserve purchase states across
- different installations of the same app.
- */
-+ (void)restore;
-
-/**
- Returns a content path of the asset of a product, if it was purchased and downloaded.
-
- To download and verify purchases use `+downloadAssetForTransaction:completion:`.
-
- @warning This method will return `nil`, if the purchase wasn't verified or if the asset was not downloaded.
- */
-+ (nullable NSString *)assetContentPathForProduct:(PFProduct *)product;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/iOS/Parse.framework/Headers/PFPush.h b/iOS/Parse.framework/Headers/PFPush.h
deleted file mode 100644
index 38fd308..0000000
--- a/iOS/Parse.framework/Headers/PFPush.h
+++ /dev/null
@@ -1,543 +0,0 @@
-/**
- * Copyright (c) 2015-present, Parse, LLC.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- */
-
-#import
-
-#import
-
-#import
-#import
-
-PF_TV_UNAVAILABLE_WARNING
-PF_WATCH_UNAVAILABLE_WARNING
-
-@class PFQuery PF_GENERIC(PFGenericObject : PFObject *);
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- The `PFPush` class defines a push notification that can be sent from a client device.
-
- The preferred way of modifying or retrieving channel subscriptions is to use
- the `PFInstallation` class, instead of the class methods in `PFPush`.
- */
-PF_TV_UNAVAILABLE PF_WATCH_UNAVAILABLE @interface PFPush : NSObject
-
-///--------------------------------------
-/// @name Creating a Push Notification
-///--------------------------------------
-
-+ (instancetype)push;
-
-///--------------------------------------
-/// @name Configuring a Push Notification
-///--------------------------------------
-
-/**
- Sets the channel on which this push notification will be sent.
-
- @param channel The channel to set for this push.
- The channel name must start with a letter and contain only letters, numbers, dashes, and underscores.
- */
-- (void)setChannel:(nullable NSString *)channel;
-
-/**
- Sets the array of channels on which this push notification will be sent.
-
- @param channels The array of channels to set for this push.
- Each channel name must start with a letter and contain only letters, numbers, dashes, and underscores.
- */
-- (void)setChannels:(nullable NSArray PF_GENERIC(NSString *)*)channels;
-
-/**
- Sets an installation query to which this push notification will be sent.
-
- The query should be created via `PFInstallation.+query` and should not specify a skip, limit, or order.
-
- @param query The installation query to set for this push.
- */
-- (void)setQuery:(nullable PFQuery PF_GENERIC(PFInstallation *)*)query;
-
-/**
- Sets an alert message for this push notification.
-
- @warning This will overwrite any data specified in setData.
-
- @param message The message to send in this push.
- */
-- (void)setMessage:(nullable NSString *)message;
-
-/**
- Sets an arbitrary data payload for this push notification.
-
- See the guide for information about the dictionary structure.
-
- @warning This will overwrite any data specified in setMessage.
-
- @param data The data to send in this push.
- */
-- (void)setData:(nullable NSDictionary *)data;
-
-/**
- Sets whether this push will go to Android devices.
-
- @param pushToAndroid Whether this push will go to Android devices.
-
- @deprecated Please use a `PFInstallation.+query` with a constraint on deviceType instead.
- */
-- (void)setPushToAndroid:(BOOL)pushToAndroid PARSE_DEPRECATED("Please use a [PFInstallation query] with a constraint on deviceType. This method is deprecated and won't do anything.");
-
-/**
- Sets whether this push will go to iOS devices.
-
- @param pushToIOS Whether this push will go to iOS devices.
-
- @deprecated Please use a `PFInstallation.+query` with a constraint on deviceType instead.
- */
-- (void)setPushToIOS:(BOOL)pushToIOS PARSE_DEPRECATED("Please use a [PFInstallation query] with a constraint on deviceType. This method is deprecated and won't do anything.");
-
-/**
- Sets the expiration time for this notification.
-
- The notification will be sent to devices which are either online
- at the time the notification is sent, or which come online before the expiration time is reached.
- Because device clocks are not guaranteed to be accurate,
- most applications should instead use `-expireAfterTimeInterval:`.
-
- @see expireAfterTimeInterval:
-
- @param date The time at which the notification should expire.
- */
-- (void)expireAtDate:(nullable NSDate *)date;
-
-/**
- Sets the time interval after which this notification should expire.
-
- This notification will be sent to devices which are either online at
- the time the notification is sent, or which come online within the given
- time interval of the notification being received by Parse's server.
- An interval which is less than or equal to zero indicates that the
- message should only be sent to devices which are currently online.
-
- @param timeInterval The interval after which the notification should expire.
- */
-- (void)expireAfterTimeInterval:(NSTimeInterval)timeInterval;
-
-/**
- Clears both expiration values, indicating that the notification should never expire.
- */
-- (void)clearExpiration;
-
-/**
- Date at which to send this push notification.
-
- Push notificaitons with this date will be delivered at the local time matching the `PFInstallation.timeZone`.
-
- @warning The date cannot be in the past, and can be up to two weeks in the future.
- */
-@property (nullable, nonatomic, strong) NSDate *pushDate;
-
-///--------------------------------------
-/// @name Sending Push Notifications
-///--------------------------------------
-
-/**
- *Synchronously* send a push message to a channel.
-
- @param channel The channel to send to. The channel name must start with
- a letter and contain only letters, numbers, dashes, and underscores.
- @param message The message to send.
- @param error Pointer to an `NSError` that will be set if necessary.
-
- @return Returns whether the send succeeded.
- */
-+ (BOOL)sendPushMessageToChannel:(NSString *)channel
- withMessage:(NSString *)message
- error:(NSError **)error;
-
-/**
- *Asynchronously* send a push message to a channel.
-
- @param channel The channel to send to. The channel name must start with
- a letter and contain only letters, numbers, dashes, and underscores.
- @param message The message to send.
-
- @return The task, that encapsulates the work being done.
- */
-+ (BFTask PF_GENERIC(NSNumber *)*)sendPushMessageToChannelInBackground:(NSString *)channel
- withMessage:(NSString *)message;
-
-/**
- *Asynchronously* sends a push message to a channel and calls the given block.
-
- @param channel The channel to send to. The channel name must start with
- a letter and contain only letters, numbers, dashes, and underscores.
- @param message The message to send.
- @param block The block to execute.
- It should have the following argument signature: `^(BOOL succeeded, NSError *error)`
- */
-+ (void)sendPushMessageToChannelInBackground:(NSString *)channel
- withMessage:(NSString *)message
- block:(nullable PFBooleanResultBlock)block;
-
-/*
- *Asynchronously* send a push message to a channel.
-
- @param channel The channel to send to. The channel name must start with
- a letter and contain only letters, numbers, dashes, and underscores.
- @param message The message to send.
- @param target The object to call selector on.
- @param selector The selector to call.
- It should have the following signature: `(void)callbackWithResult:(NSNumber *)result error:(NSError *)error`.
- `error` will be `nil` on success and set if there was an error.
- `[result boolValue]` will tell you whether the call succeeded or not.
- */
-+ (void)sendPushMessageToChannelInBackground:(NSString *)channel
- withMessage:(NSString *)message
- target:(__nullable id)target
- selector:(__nullable SEL)selector;
-
-/**
- Send a push message to a query.
-
- @param query The query to send to. The query must be a `PFInstallation` query created with `PFInstallation.+query`.
- @param message The message to send.
- @param error Pointer to an NSError that will be set if necessary.
-
- @return Returns whether the send succeeded.
- */
-+ (BOOL)sendPushMessageToQuery:(PFQuery PF_GENERIC(PFInstallation *)*)query
- withMessage:(NSString *)message
- error:(NSError **)error;
-
-/**
- *Asynchronously* send a push message to a query.
-
- @param query The query to send to. The query must be a `PFInstallation` query created with `PFInstallation.+query`.
- @param message The message to send.
-
- @return The task, that encapsulates the work being done.
- */
-+ (BFTask PF_GENERIC(NSNumber *)*)sendPushMessageToQueryInBackground:(PFQuery PF_GENERIC(PFInstallation *)*)query
- withMessage:(NSString *)message;
-
-/**
- *Asynchronously* sends a push message to a query and calls the given block.
-
- @param query The query to send to. The query must be a PFInstallation query
- created with [PFInstallation query].
- @param message The message to send.
- @param block The block to execute.
- It should have the following argument signature: `^(BOOL succeeded, NSError *error)`
- */
-+ (void)sendPushMessageToQueryInBackground:(PFQuery PF_GENERIC(PFInstallation *)*)query
- withMessage:(NSString *)message
- block:(nullable PFBooleanResultBlock)block;
-
-/**
- *Synchronously* send this push message.
-
- @param error Pointer to an `NSError` that will be set if necessary.
-
- @return Returns whether the send succeeded.
- */
-- (BOOL)sendPush:(NSError **)error;
-
-/**
- *Asynchronously* send this push message.
- @return The task, that encapsulates the work being done.
- */
-- (BFTask PF_GENERIC(NSNumber *)*)sendPushInBackground;
-
-/**
- *Asynchronously* send this push message and executes the given callback block.
-
- @param block The block to execute.
- It should have the following argument signature: `^(BOOL succeeded, NSError *error)`.
- */
-- (void)sendPushInBackgroundWithBlock:(nullable PFBooleanResultBlock)block;
-
-/*
- *Asynchronously* send this push message and calls the given callback.
-
- @param target The object to call selector on.
- @param selector The selector to call.
- It should have the following signature: `(void)callbackWithResult:(NSNumber *)result error:(NSError *)error`.
- `error` will be `nil` on success and set if there was an error.
- `[result boolValue]` will tell you whether the call succeeded or not.
- */
-- (void)sendPushInBackgroundWithTarget:(__nullable id)target selector:(__nullable SEL)selector;
-
-/**
- *Synchronously* send a push message with arbitrary data to a channel.
-
- See the guide for information about the dictionary structure.
-
- @param channel The channel to send to. The channel name must start with
- a letter and contain only letters, numbers, dashes, and underscores.
- @param data The data to send.
- @param error Pointer to an NSError that will be set if necessary.
-
- @return Returns whether the send succeeded.
- */
-+ (BOOL)sendPushDataToChannel:(NSString *)channel
- withData:(NSDictionary *)data
- error:(NSError **)error;
-
-/**
- *Asynchronously* send a push message with arbitrary data to a channel.
-
- See the guide for information about the dictionary structure.
-
- @param channel The channel to send to. The channel name must start with
- a letter and contain only letters, numbers, dashes, and underscores.
- @param data The data to send.
-
- @return The task, that encapsulates the work being done.
- */
-+ (BFTask PF_GENERIC(NSNumber *)*)sendPushDataToChannelInBackground:(NSString *)channel
- withData:(NSDictionary *)data;
-
-/**
- Asynchronously sends a push message with arbitrary data to a channel and calls the given block.
-
- See the guide for information about the dictionary structure.
-
- @param channel The channel to send to. The channel name must start with
- a letter and contain only letters, numbers, dashes, and underscores.
- @param data The data to send.
- @param block The block to execute.
- It should have the following argument signature: `^(BOOL succeeded, NSError *error)`.
- */
-+ (void)sendPushDataToChannelInBackground:(NSString *)channel
- withData:(NSDictionary *)data
- block:(nullable PFBooleanResultBlock)block;
-
-/*
- *Asynchronously* send a push message with arbitrary data to a channel.
-
- See the guide for information about the dictionary structure.
-
- @param channel The channel to send to. The channel name must start with
- a letter and contain only letters, numbers, dashes, and underscores.
- @param data The data to send.
- @param target The object to call selector on.
- @param selector The selector to call.
- It should have the following signature: `(void)callbackWithResult:(NSNumber *)result error:(NSError *)error`.
- `error` will be `nil` on success and set if there was an error.
- `[result boolValue]` will tell you whether the call succeeded or not.
- */
-+ (void)sendPushDataToChannelInBackground:(NSString *)channel
- withData:(NSDictionary *)data
- target:(__nullable id)target
- selector:(__nullable SEL)selector;
-
-/**
- *Synchronously* send a push message with arbitrary data to a query.
-
- See the guide for information about the dictionary structure.
-
- @param query The query to send to. The query must be a `PFInstallation` query
- created with `PFInstallation.+query`.
- @param data The data to send.
- @param error Pointer to an NSError that will be set if necessary.
-
- @return Returns whether the send succeeded.
- */
-+ (BOOL)sendPushDataToQuery:(PFQuery PF_GENERIC(PFInstallation *)*)query
- withData:(NSDictionary *)data
- error:(NSError **)error;
-
-/**
- Asynchronously send a push message with arbitrary data to a query.
-
- See the guide for information about the dictionary structure.
-
- @param query The query to send to. The query must be a `PFInstallation` query
- created with `PFInstallation.+query`.
- @param data The data to send.
-
- @return The task, that encapsulates the work being done.
- */
-+ (BFTask PF_GENERIC(NSNumber *)*)sendPushDataToQueryInBackground:(PFQuery PF_GENERIC(PFInstallation *)*)query
- withData:(NSDictionary *)data;
-
-/**
- *Asynchronously* sends a push message with arbitrary data to a query and calls the given block.
-
- See the guide for information about the dictionary structure.
-
- @param query The query to send to. The query must be a `PFInstallation` query
- created with `PFInstallation.+query`.
- @param data The data to send.
- @param block The block to execute.
- It should have the following argument signature: `^(BOOL succeeded, NSError *error)`.
- */
-+ (void)sendPushDataToQueryInBackground:(PFQuery PF_GENERIC(PFInstallation *)*)query
- withData:(NSDictionary *)data
- block:(nullable PFBooleanResultBlock)block;
-
-///--------------------------------------
-/// @name Handling Notifications
-///--------------------------------------
-
-/**
- A default handler for push notifications while the app is active that
- could be used to mimic the behavior of iOS push notifications while the app is backgrounded or not running.
-
- Call this from `application:didReceiveRemoteNotification:`.
- If push has a dictionary containing loc-key and loc-args in the alert,
- we support up to 10 items in loc-args (`NSRangeException` if limit exceeded).
-
- @warning This method is available only on iOS.
-
- @param userInfo The userInfo dictionary you get in `appplication:didReceiveRemoteNotification:`.
- */
-+ (void)handlePush:(nullable NSDictionary *)userInfo NS_AVAILABLE_IOS(3_0) PF_EXTENSION_UNAVAILABLE("");
-
-///--------------------------------------
-/// @name Managing Channel Subscriptions
-///--------------------------------------
-
-/**
- Store the device token locally for push notifications.
-
- Usually called from you main app delegate's `didRegisterForRemoteNotificationsWithDeviceToken:`.
-
- @param deviceToken Either as an `NSData` straight from `application:didRegisterForRemoteNotificationsWithDeviceToken:`
- or as an `NSString` if you converted it yourself.
- */
-+ (void)storeDeviceToken:(id)deviceToken;
-
-/**
- *Synchronously* get all the channels that this device is subscribed to.
-
- @param error Pointer to an `NSError` that will be set if necessary.
-
- @return Returns an `NSSet` containing all the channel names this device is subscribed to.
- */
-+ (nullable NSSet PF_GENERIC(NSString *)*)getSubscribedChannels:(NSError **)error;
-
-/**
- *Asynchronously* get all the channels that this device is subscribed to.
-
- @return The task, that encapsulates the work being done.
- */
-+ (BFTask PF_GENERIC(NSSet *)*)getSubscribedChannelsInBackground;
-
-/**
- *Asynchronously* get all the channels that this device is subscribed to.
- @param block The block to execute.
- It should have the following argument signature: `^(NSSet *channels, NSError *error)`.
- */
-+ (void)getSubscribedChannelsInBackgroundWithBlock:(PFSetResultBlock)block;
-
-/*
- *Asynchronously* get all the channels that this device is subscribed to.
-
- @param target The object to call selector on.
- @param selector The selector to call.
- It should have the following signature: `(void)callbackWithResult:(NSSet *)result error:(NSError *)error`.
- `error` will be `nil` on success and set if there was an error.
- */
-+ (void)getSubscribedChannelsInBackgroundWithTarget:(id)target selector:(SEL)selector;
-
-/**
- *Synchrnously* subscribes the device to a channel of push notifications.
-
- @param channel The channel to subscribe to. The channel name must start with
- a letter and contain only letters, numbers, dashes, and underscores.
- @param error Pointer to an `NSError` that will be set if necessary.
-
- @return Returns whether the subscribe succeeded.
- */
-+ (BOOL)subscribeToChannel:(NSString *)channel error:(NSError **)error;
-
-/**
- *Asynchronously* subscribes the device to a channel of push notifications.
-
- @param channel The channel to subscribe to. The channel name must start with
- a letter and contain only letters, numbers, dashes, and underscores.
-
- @return The task, that encapsulates the work being done.
- */
-+ (BFTask PF_GENERIC(NSNumber *)*)subscribeToChannelInBackground:(NSString *)channel;
-
-/**
- *Asynchronously* subscribes the device to a channel of push notifications and calls the given block.
-
- @param channel The channel to subscribe to. The channel name must start with
- a letter and contain only letters, numbers, dashes, and underscores.
- @param block The block to execute.
- It should have the following argument signature: `^(BOOL succeeded, NSError *error)`
- */
-+ (void)subscribeToChannelInBackground:(NSString *)channel
- block:(nullable PFBooleanResultBlock)block;
-
-/*
- *Asynchronously* subscribes the device to a channel of push notifications and calls the given callback.
-
- @param channel The channel to subscribe to. The channel name must start with
- a letter and contain only letters, numbers, dashes, and underscores.
- @param target The object to call selector on.
- @param selector The selector to call.
- It should have the following signature: `(void)callbackWithResult:(NSNumber *)result error:(NSError *)error`.
- `error` will be `nil` on success and set if there was an error.
- `[result boolValue]` will tell you whether the call succeeded or not.
- */
-+ (void)subscribeToChannelInBackground:(NSString *)channel
- target:(nullable id)target
- selector:(nullable SEL)selector;
-
-/**
- *Synchronously* unsubscribes the device to a channel of push notifications.
-
- @param channel The channel to unsubscribe from.
- @param error Pointer to an `NSError` that will be set if necessary.
-
- @return Returns whether the unsubscribe succeeded.
- */
-+ (BOOL)unsubscribeFromChannel:(NSString *)channel error:(NSError **)error;
-
-/**
- *Asynchronously* unsubscribes the device from a channel of push notifications.
-
- @param channel The channel to unsubscribe from.
-
- @return The task, that encapsulates the work being done.
- */
-+ (BFTask PF_GENERIC(NSNumber *)*)unsubscribeFromChannelInBackground:(NSString *)channel;
-
-/**
- *Asynchronously* unsubscribes the device from a channel of push notifications and calls the given block.
-
- @param channel The channel to unsubscribe from.
- @param block The block to execute.
- It should have the following argument signature: `^(BOOL succeeded, NSError *error)`.
- */
-+ (void)unsubscribeFromChannelInBackground:(NSString *)channel
- block:(nullable PFBooleanResultBlock)block;
-
-/*
- *Asynchronously* unsubscribes the device from a channel of push notifications and calls the given callback.
-
- @param channel The channel to unsubscribe from.
- @param target The object to call selector on.
- @param selector The selector to call.
- It should have the following signature: `(void)callbackWithResult:(NSNumber *)result error:(NSError *)error`.
- `error` will be `nil` on success and set if there was an error.
- `[result boolValue]` will tell you whether the call succeeded or not.
- */
-+ (void)unsubscribeFromChannelInBackground:(NSString *)channel
- target:(nullable id)target
- selector:(nullable SEL)selector;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/iOS/Parse.framework/Headers/PFQuery.h b/iOS/Parse.framework/Headers/PFQuery.h
deleted file mode 100644
index d5304ac..0000000
--- a/iOS/Parse.framework/Headers/PFQuery.h
+++ /dev/null
@@ -1,892 +0,0 @@
-/**
- * Copyright (c) 2015-present, Parse, LLC.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- */
-
-#import
-
-#import
-
-#import
-#import
-#import
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- The `PFQuery` class defines a query that is used to query for `PFObject`s.
- */
-@interface PFQuery PF_GENERIC(PFGenericObject : PFObject *) : NSObject
-
-///--------------------------------------
-/// @name Blocks
-///--------------------------------------
-
-typedef void (^PFQueryArrayResultBlock)(NSArray PF_GENERIC(PFGenericObject) * __nullable objects, NSError * __nullable error);
-
-///--------------------------------------
-/// @name Creating a Query for a Class
-///--------------------------------------
-
-/**
- Initializes the query with a class name.
-
- @param className The class name.
- */
-- (instancetype)initWithClassName:(NSString *)className;
-
-/**
- Returns a `PFQuery` for a given class.
-
- @param className The class to query on.
-
- @return A `PFQuery` object.
- */
-+ (instancetype)queryWithClassName:(NSString *)className;
-
-/**
- Creates a PFQuery with the constraints given by predicate.
-
- The following types of predicates are supported:
-
- - Simple comparisons such as `=`, `!=`, `<`, `>`, `<=`, `>=`, and `BETWEEN` with a key and a constant.
- - Containment predicates, such as `x IN {1, 2, 3}`.
- - Key-existence predicates, such as `x IN SELF`.
- - BEGINSWITH expressions.
- - Compound predicates with `AND`, `OR`, and `NOT`.
- - SubQueries with `key IN %@`, subquery.
-
- The following types of predicates are NOT supported:
-
- - Aggregate operations, such as `ANY`, `SOME`, `ALL`, or `NONE`.
- - Regular expressions, such as `LIKE`, `MATCHES`, `CONTAINS`, or `ENDSWITH`.
- - Predicates comparing one key to another.
- - Complex predicates with many ORed clauses.
-
- @param className The class to query on.
- @param predicate The predicate to create conditions from.
- */
-+ (instancetype)queryWithClassName:(NSString *)className predicate:(nullable NSPredicate *)predicate;
-
-/**
- The class name to query for.
- */
-@property (nonatomic, strong) NSString *parseClassName;
-
-///--------------------------------------
-/// @name Adding Basic Constraints
-///--------------------------------------
-
-/**
- Make the query include PFObjects that have a reference stored at the provided key.
-
- This has an effect similar to a join. You can use dot notation to specify which fields in
- the included object are also fetch.
-
- @param key The key to load child `PFObject`s for.
-
- @return The same instance of `PFQuery` as the receiver. This allows method chaining.
- */
-- (instancetype)includeKey:(NSString *)key;
-
-/**
- Make the query restrict the fields of the returned `PFObject`s to include only the provided keys.
-
- If this is called multiple times, then all of the keys specified in each of the calls will be included.
-
- @param keys The keys to include in the result.
-
- @return The same instance of `PFQuery` as the receiver. This allows method chaining.
- */
-- (instancetype)selectKeys:(NSArray PF_GENERIC(NSString *)*)keys;
-
-/**
- Add a constraint that requires a particular key exists.
-
- @param key The key that should exist.
-
- @return The same instance of `PFQuery` as the receiver. This allows method chaining.
- */
-- (instancetype)whereKeyExists:(NSString *)key;
-
-/**
- Add a constraint that requires a key not exist.
-
- @param key The key that should not exist.
-
- @return The same instance of `PFQuery` as the receiver. This allows method chaining.
- */
-- (instancetype)whereKeyDoesNotExist:(NSString *)key;
-
-/**
- Add a constraint to the query that requires a particular key's object to be equal to the provided object.
-
- @param key The key to be constrained.
- @param object The object that must be equalled.
-
- @return The same instance of `PFQuery` as the receiver. This allows method chaining.
- */
-- (instancetype)whereKey:(NSString *)key equalTo:(id)object;
-
-/**
- Add a constraint to the query that requires a particular key's object to be less than the provided object.
-
- @param key The key to be constrained.
- @param object The object that provides an upper bound.
-
- @return The same instance of `PFQuery` as the receiver. This allows method chaining.
- */
-- (instancetype)whereKey:(NSString *)key lessThan:(id)object;
-
-/**
- Add a constraint to the query that requires a particular key's object
- to be less than or equal to the provided object.
-
- @param key The key to be constrained.
- @param object The object that must be equalled.
-
- @return The same instance of `PFQuery` as the receiver. This allows method chaining.
- */
-- (instancetype)whereKey:(NSString *)key lessThanOrEqualTo:(id)object;
-
-/**
- Add a constraint to the query that requires a particular key's object
- to be greater than the provided object.
-
- @param key The key to be constrained.
- @param object The object that must be equalled.
-
- @return The same instance of `PFQuery` as the receiver. This allows method chaining.
- */
-- (instancetype)whereKey:(NSString *)key greaterThan:(id)object;
-
-/**
- Add a constraint to the query that requires a particular key's
- object to be greater than or equal to the provided object.
-
- @param key The key to be constrained.
- @param object The object that must be equalled.
-
- @return The same instance of `PFQuery` as the receiver. This allows method chaining.
- */
-- (instancetype)whereKey:(NSString *)key greaterThanOrEqualTo:(id)object;
-
-/**
- Add a constraint to the query that requires a particular key's object
- to be not equal to the provided object.
-
- @param key The key to be constrained.
- @param object The object that must not be equalled.
-
- @return The same instance of `PFQuery` as the receiver. This allows method chaining.
- */
-- (instancetype)whereKey:(NSString *)key notEqualTo:(id)object;
-
-/**
- Add a constraint to the query that requires a particular key's object
- to be contained in the provided array.
-
- @param key The key to be constrained.
- @param array The possible values for the key's object.
-
- @return The same instance of `PFQuery` as the receiver. This allows method chaining.
- */
-- (instancetype)whereKey:(NSString *)key containedIn:(NSArray *)array;
-
-/**
- Add a constraint to the query that requires a particular key's object
- not be contained in the provided array.
-
- @param key The key to be constrained.
- @param array The list of values the key's object should not be.
-
- @return The same instance of `PFQuery` as the receiver. This allows method chaining.
- */
-- (instancetype)whereKey:(NSString *)key notContainedIn:(NSArray *)array;
-
-/**
- Add a constraint to the query that requires a particular key's array
- contains every element of the provided array.
-
- @param key The key to be constrained.
- @param array The array of values to search for.
-
- @return The same instance of `PFQuery` as the receiver. This allows method chaining.
- */
-- (instancetype)whereKey:(NSString *)key containsAllObjectsInArray:(NSArray *)array;
-
-///--------------------------------------
-/// @name Adding Location Constraints
-///--------------------------------------
-
-/**
- Add a constraint to the query that requires a particular key's coordinates (specified via `PFGeoPoint`)
- be near a reference point.
-
- Distance is calculated based on angular distance on a sphere. Results will be sorted by distance
- from reference point.
-
- @param key The key to be constrained.
- @param geopoint The reference point represented as a `PFGeoPoint`.
-
- @return The same instance of `PFQuery` as the receiver. This allows method chaining.
- */
-- (instancetype)whereKey:(NSString *)key nearGeoPoint:(PFGeoPoint *)geopoint;
-
-/**
- Add a constraint to the query that requires a particular key's coordinates (specified via `PFGeoPoint`)
- be near a reference point and within the maximum distance specified (in miles).
-
- Distance is calculated based on a spherical coordinate system.
- Results will be sorted by distance (nearest to farthest) from the reference point.
-
- @param key The key to be constrained.
- @param geopoint The reference point represented as a `PFGeoPoint`.
- @param maxDistance Maximum distance in miles.
-
- @return The same instance of `PFQuery` as the receiver. This allows method chaining.
- */
-- (instancetype)whereKey:(NSString *)key
- nearGeoPoint:(PFGeoPoint *)geopoint
- withinMiles:(double)maxDistance;
-
-/**
- Add a constraint to the query that requires a particular key's coordinates (specified via `PFGeoPoint`)
- be near a reference point and within the maximum distance specified (in kilometers).
-
- Distance is calculated based on a spherical coordinate system.
- Results will be sorted by distance (nearest to farthest) from the reference point.
-
- @param key The key to be constrained.
- @param geopoint The reference point represented as a `PFGeoPoint`.
- @param maxDistance Maximum distance in kilometers.
-
- @return The same instance of `PFQuery` as the receiver. This allows method chaining.
- */
-- (instancetype)whereKey:(NSString *)key
- nearGeoPoint:(PFGeoPoint *)geopoint
- withinKilometers:(double)maxDistance;
-
-/**
- Add a constraint to the query that requires a particular key's coordinates (specified via `PFGeoPoint`) be near
- a reference point and within the maximum distance specified (in radians). Distance is calculated based on
- angular distance on a sphere. Results will be sorted by distance (nearest to farthest) from the reference point.
-
- @param key The key to be constrained.
- @param geopoint The reference point as a `PFGeoPoint`.
- @param maxDistance Maximum distance in radians.
-
- @return The same instance of `PFQuery` as the receiver. This allows method chaining.
- */
-- (instancetype)whereKey:(NSString *)key
- nearGeoPoint:(PFGeoPoint *)geopoint
- withinRadians:(double)maxDistance;
-
-/**
- Add a constraint to the query that requires a particular key's coordinates (specified via `PFGeoPoint`) be
- contained within a given rectangular geographic bounding box.
-
- @param key The key to be constrained.
- @param southwest The lower-left inclusive corner of the box.
- @param northeast The upper-right inclusive corner of the box.
-
- @return The same instance of `PFQuery` as the receiver. This allows method chaining.
- */
-- (instancetype)whereKey:(NSString *)key withinGeoBoxFromSouthwest:(PFGeoPoint *)southwest toNortheast:(PFGeoPoint *)northeast;
-
-///--------------------------------------
-/// @name Adding String Constraints
-///--------------------------------------
-
-/**
- Add a regular expression constraint for finding string values that match the provided regular expression.
-
- @warning This may be slow for large datasets.
-
- @param key The key that the string to match is stored in.
- @param regex The regular expression pattern to match.
-
- @return The same instance of `PFQuery` as the receiver. This allows method chaining.
- */
-- (instancetype)whereKey:(NSString *)key matchesRegex:(NSString *)regex;
-
-/**
- Add a regular expression constraint for finding string values that match the provided regular expression.
-
- @warning This may be slow for large datasets.
-
- @param key The key that the string to match is stored in.
- @param regex The regular expression pattern to match.
- @param modifiers Any of the following supported PCRE modifiers:
- - `i` - Case insensitive search
- - `m` - Search across multiple lines of input
-
- @return The same instance of `PFQuery` as the receiver. This allows method chaining.
- */
-- (instancetype)whereKey:(NSString *)key
- matchesRegex:(NSString *)regex
- modifiers:(nullable NSString *)modifiers;
-
-/**
- Add a constraint for finding string values that contain a provided substring.
-
- @warning This will be slow for large datasets.
-
- @param key The key that the string to match is stored in.
- @param substring The substring that the value must contain.
-
- @return The same instance of `PFQuery` as the receiver. This allows method chaining.
- */
-- (instancetype)whereKey:(NSString *)key containsString:(nullable NSString *)substring;
-
-/**
- Add a constraint for finding string values that start with a provided prefix.
-
- This will use smart indexing, so it will be fast for large datasets.
-
- @param key The key that the string to match is stored in.
- @param prefix The substring that the value must start with.
-
- @return The same instance of `PFQuery` as the receiver. This allows method chaining.
- */
-- (instancetype)whereKey:(NSString *)key hasPrefix:(nullable NSString *)prefix;
-
-/**
- Add a constraint for finding string values that end with a provided suffix.
-
- @warning This will be slow for large datasets.
-
- @param key The key that the string to match is stored in.
- @param suffix The substring that the value must end with.
-
- @return The same instance of `PFQuery` as the receiver. This allows method chaining.
- */
-- (instancetype)whereKey:(NSString *)key hasSuffix:(nullable NSString *)suffix;
-
-///--------------------------------------
-/// @name Adding Subqueries
-///--------------------------------------
-
-/**
- Returns a `PFQuery` that is the `or` of the passed in queries.
-
- @param queries The list of queries to or together.
-
- @return An instance of `PFQuery` that is the `or` of the passed in queries.
- */
-+ (instancetype)orQueryWithSubqueries:(NSArray PF_GENERIC(PFQuery *)*)queries;
-
-/**
- Adds a constraint that requires that a key's value matches a value in another key
- in objects returned by a sub query.
-
- @param key The key that the value is stored.
- @param otherKey The key in objects in the returned by the sub query whose value should match.
- @param query The query to run.
-
- @return The same instance of `PFQuery` as the receiver. This allows method chaining.
- */
-- (instancetype)whereKey:(NSString *)key
- matchesKey:(NSString *)otherKey
- inQuery:(PFQuery *)query;
-
-/**
- Adds a constraint that requires that a key's value `NOT` match a value in another key
- in objects returned by a sub query.
-
- @param key The key that the value is stored.
- @param otherKey The key in objects in the returned by the sub query whose value should match.
- @param query The query to run.
-
- @return The same instance of `PFQuery` as the receiver. This allows method chaining.
- */
-- (instancetype)whereKey:(NSString *)key
- doesNotMatchKey:(NSString *)otherKey
- inQuery:(PFQuery *)query;
-
-/**
- Add a constraint that requires that a key's value matches a `PFQuery` constraint.
-
- @warning This only works where the key's values are `PFObject`s or arrays of `PFObject`s.
-
- @param key The key that the value is stored in
- @param query The query the value should match
-
- @return The same instance of `PFQuery` as the receiver. This allows method chaining.
- */
-- (instancetype)whereKey:(NSString *)key matchesQuery:(PFQuery *)query;
-
-/**
- Add a constraint that requires that a key's value to not match a `PFQuery` constraint.
-
- @warning This only works where the key's values are `PFObject`s or arrays of `PFObject`s.
-
- @param key The key that the value is stored in
- @param query The query the value should not match
-
- @return The same instance of `PFQuery` as the receiver. This allows method chaining.
- */
-- (instancetype)whereKey:(NSString *)key doesNotMatchQuery:(PFQuery *)query;
-
-///--------------------------------------
-/// @name Sorting
-///--------------------------------------
-
-/**
- Sort the results in *ascending* order with the given key.
-
- @param key The key to order by.
-
- @return The same instance of `PFQuery` as the receiver. This allows method chaining.
- */
-- (instancetype)orderByAscending:(NSString *)key;
-
-/**
- Additionally sort in *ascending* order by the given key.
-
- The previous keys provided will precedence over this key.
-
- @param key The key to order by.
- */
-- (instancetype)addAscendingOrder:(NSString *)key;
-
-/**
- Sort the results in *descending* order with the given key.
-
- @param key The key to order by.
-
- @return The same instance of `PFQuery` as the receiver. This allows method chaining.
- */
-- (instancetype)orderByDescending:(NSString *)key;
-
-/**
- Additionally sort in *descending* order by the given key.
-
- The previous keys provided will precedence over this key.
-
- @param key The key to order by.
- */
-- (instancetype)addDescendingOrder:(NSString *)key;
-
-/**
- Sort the results using a given sort descriptor.
-
- @warning If a `sortDescriptor` has custom `selector` or `comparator` - they aren't going to be used.
-
- @param sortDescriptor The `NSSortDescriptor` to use to sort the results of the query.
-
- @return The same instance of `PFQuery` as the receiver. This allows method chaining.
- */
-- (instancetype)orderBySortDescriptor:(NSSortDescriptor *)sortDescriptor;
-
-/**
- Sort the results using a given array of sort descriptors.
-
- @warning If a `sortDescriptor` has custom `selector` or `comparator` - they aren't going to be used.
-
- @param sortDescriptors An array of `NSSortDescriptor` objects to use to sort the results of the query.
-
- @return The same instance of `PFQuery` as the receiver. This allows method chaining.
- */
-- (instancetype)orderBySortDescriptors:(nullable NSArray PF_GENERIC(NSSortDescriptor *)*)sortDescriptors;
-
-///--------------------------------------
-/// @name Getting Objects by ID
-///--------------------------------------
-
-/**
- Returns a `PFObject` with a given class and id.
-
- @param objectClass The class name for the object that is being requested.
- @param objectId The id of the object that is being requested.
-
- @return The `PFObject` if found. Returns `nil` if the object isn't found, or if there was an error.
- */
-+ (nullable PFGenericObject)getObjectOfClass:(NSString *)objectClass
- objectId:(NSString *)objectId PF_SWIFT_UNAVAILABLE;
-
-/**
- Returns a `PFObject` with a given class and id and sets an error if necessary.
-
- @param objectClass The class name for the object that is being requested.
- @param objectId The id of the object that is being requested.
- @param error Pointer to an `NSError` that will be set if necessary.
-
- @return The `PFObject` if found. Returns `nil` if the object isn't found, or if there was an `error`.
- */
-+ (nullable PFGenericObject)getObjectOfClass:(NSString *)objectClass
- objectId:(NSString *)objectId
- error:(NSError **)error;
-
-/**
- Returns a `PFObject` with the given id.
-
- @warning This method mutates the query.
- It will reset limit to `1`, skip to `0` and remove all conditions, leaving only `objectId`.
-
- @param objectId The id of the object that is being requested.
-
- @return The `PFObject` if found. Returns nil if the object isn't found, or if there was an error.
- */
-- (nullable PFGenericObject)getObjectWithId:(NSString *)objectId PF_SWIFT_UNAVAILABLE;
-
-/**
- Returns a `PFObject` with the given id and sets an error if necessary.
-
- @warning This method mutates the query.
- It will reset limit to `1`, skip to `0` and remove all conditions, leaving only `objectId`.
-
- @param objectId The id of the object that is being requested.
- @param error Pointer to an `NSError` that will be set if necessary.
-
- @return The `PFObject` if found. Returns nil if the object isn't found, or if there was an error.
- */
-- (nullable PFGenericObject)getObjectWithId:(NSString *)objectId error:(NSError **)error;
-
-/**
- Gets a `PFObject` asynchronously and calls the given block with the result.
-
- @warning This method mutates the query.
- It will reset limit to `1`, skip to `0` and remove all conditions, leaving only `objectId`.
-
- @param objectId The id of the object that is being requested.
-
- @return The task, that encapsulates the work being done.
- */
-- (BFTask PF_GENERIC(PFGenericObject) *)getObjectInBackgroundWithId:(NSString *)objectId;
-
-/**
- Gets a `PFObject` asynchronously and calls the given block with the result.
-
- @warning This method mutates the query.
- It will reset limit to `1`, skip to `0` and remove all conditions, leaving only `objectId`.
-
- @param objectId The id of the object that is being requested.
- @param block The block to execute.
- The block should have the following argument signature: `^(NSArray *object, NSError *error)`
- */
-- (void)getObjectInBackgroundWithId:(NSString *)objectId
- block:(nullable void (^)(PFGenericObject __nullable object, NSError *__nullable error))block;
-
-/*
- Gets a `PFObject` asynchronously.
-
- This mutates the PFQuery. It will reset limit to `1`, skip to `0` and remove all conditions, leaving only `objectId`.
-
- @param objectId The id of the object being requested.
- @param target The target for the callback selector.
- @param selector The selector for the callback.
- It should have the following signature: `(void)callbackWithResult:(id)result error:(NSError *)error`.
- Result will be `nil` if error is set and vice versa.
- */
-- (void)getObjectInBackgroundWithId:(NSString *)objectId
- target:(nullable id)target
- selector:(nullable SEL)selector;
-
-///--------------------------------------
-/// @name Getting User Objects
-///--------------------------------------
-
-/**
- Returns a `PFUser` with a given id.
-
- @param objectId The id of the object that is being requested.
-
- @return The PFUser if found. Returns nil if the object isn't found, or if there was an error.
- */
-+ (nullable PFUser *)getUserObjectWithId:(NSString *)objectId PF_SWIFT_UNAVAILABLE;
-
-/**
- Returns a PFUser with a given class and id and sets an error if necessary.
- @param objectId The id of the object that is being requested.
- @param error Pointer to an NSError that will be set if necessary.
- @result The PFUser if found. Returns nil if the object isn't found, or if there was an error.
- */
-+ (nullable PFUser *)getUserObjectWithId:(NSString *)objectId error:(NSError **)error;
-
-/**
- @deprecated Please use [PFUser query] instead.
- */
-+ (instancetype)queryForUser PARSE_DEPRECATED("Use [PFUser query] instead.");
-
-///--------------------------------------
-/// @name Getting all Matches for a Query
-///--------------------------------------
-
-/**
- Finds objects *synchronously* based on the constructed query.
-
- @return Returns an array of `PFObject` objects that were found.
- */
-- (nullable NSArray PF_GENERIC(PFGenericObject) *)findObjects PF_SWIFT_UNAVAILABLE;
-
-/**
- Finds objects *synchronously* based on the constructed query and sets an error if there was one.
-
- @param error Pointer to an `NSError` that will be set if necessary.
-
- @return Returns an array of `PFObject` objects that were found.
- */
-- (nullable NSArray PF_GENERIC(PFGenericObject) *)findObjects:(NSError **)error;
-
-/**
- Finds objects *asynchronously* and sets the `NSArray` of `PFObject` objects as a result of the task.
-
- @return The task, that encapsulates the work being done.
- */
-- (BFTask PF_GENERIC(NSArray *)*)findObjectsInBackground;
-
-/**
- Finds objects *asynchronously* and calls the given block with the results.
-
- @param block The block to execute.
- It should have the following argument signature: `^(NSArray *objects, NSError *error)`
- */
-- (void)findObjectsInBackgroundWithBlock:(nullable PFQueryArrayResultBlock)block;
-
-/*
- Finds objects *asynchronously* and calls the given callback with the results.
-
- @param target The object to call the selector on.
- @param selector The selector to call.
- It should have the following signature: `(void)callbackWithResult:(id)result error:(NSError *)error`.
- Result will be `nil` if error is set and vice versa.
- */
-- (void)findObjectsInBackgroundWithTarget:(nullable id)target selector:(nullable SEL)selector;
-
-///--------------------------------------
-/// @name Getting the First Match in a Query
-///--------------------------------------
-
-/**
- Gets an object *synchronously* based on the constructed query.
-
- @warning This method mutates the query. It will reset the limit to `1`.
-
- @return Returns a `PFObject`, or `nil` if none was found.
- */
-- (nullable PFGenericObject)getFirstObject PF_SWIFT_UNAVAILABLE;
-
-/**
- Gets an object *synchronously* based on the constructed query and sets an error if any occurred.
-
- @warning This method mutates the query. It will reset the limit to `1`.
-
- @param error Pointer to an `NSError` that will be set if necessary.
-
- @return Returns a `PFObject`, or `nil` if none was found.
- */
-- (nullable PFGenericObject)getFirstObject:(NSError **)error;
-
-/**
- Gets an object *asynchronously* and sets it as a result of the task.
-
- @warning This method mutates the query. It will reset the limit to `1`.
-
- @return The task, that encapsulates the work being done.
- */
-- (BFTask PF_GENERIC(PFGenericObject) *)getFirstObjectInBackground;
-
-/**
- Gets an object *asynchronously* and calls the given block with the result.
-
- @warning This method mutates the query. It will reset the limit to `1`.
-
- @param block The block to execute.
- It should have the following argument signature: `^(PFObject *object, NSError *error)`.
- `result` will be `nil` if `error` is set OR no object was found matching the query.
- `error` will be `nil` if `result` is set OR if the query succeeded, but found no results.
- */
-- (void)getFirstObjectInBackgroundWithBlock:(nullable void (^)(PFGenericObject __nullable object, NSError *__nullable error))block;
-
-/*
- Gets an object *asynchronously* and calls the given callback with the results.
-
- @warning This method mutates the query. It will reset the limit to `1`.
-
- @param target The object to call the selector on.
- @param selector The selector to call.
- It should have the following signature: `(void)callbackWithResult:(PFObject *)result error:(NSError *)error`.
- `result` will be `nil` if `error` is set OR no object was found matching the query.
- `error` will be `nil` if `result` is set OR if the query succeeded, but found no results.
- */
-- (void)getFirstObjectInBackgroundWithTarget:(nullable id)target selector:(nullable SEL)selector;
-
-///--------------------------------------
-/// @name Counting the Matches in a Query
-///--------------------------------------
-
-/**
- Counts objects *synchronously* based on the constructed query.
-
- @return Returns the number of `PFObject` objects that match the query, or `-1` if there is an error.
- */
-- (NSInteger)countObjects PF_SWIFT_UNAVAILABLE;
-
-/**
- Counts objects *synchronously* based on the constructed query and sets an error if there was one.
-
- @param error Pointer to an `NSError` that will be set if necessary.
-
- @return Returns the number of `PFObject` objects that match the query, or `-1` if there is an error.
- */
-- (NSInteger)countObjects:(NSError **)error;
-
-/**
- Counts objects *asynchronously* and sets `NSNumber` with count as a result of the task.
-
- @return The task, that encapsulates the work being done.
- */
-- (BFTask PF_GENERIC(NSNumber *)*)countObjectsInBackground;
-
-/**
- Counts objects *asynchronously* and calls the given block with the counts.
-
- @param block The block to execute.
- It should have the following argument signature: `^(int count, NSError *error)`
- */
-- (void)countObjectsInBackgroundWithBlock:(nullable PFIntegerResultBlock)block;
-
-/*
- Counts objects *asynchronously* and calls the given callback with the count.
-
- @param target The object to call the selector on.
- @param selector The selector to call.
- It should have the following signature: `(void)callbackWithResult:(NSNumber *)result error:(NSError *)error`.
- */
-- (void)countObjectsInBackgroundWithTarget:(nullable id)target selector:(nullable SEL)selector;
-
-///--------------------------------------
-/// @name Cancelling a Query
-///--------------------------------------
-
-/**
- Cancels the current network request (if any). Ensures that callbacks won't be called.
- */
-- (void)cancel;
-
-///--------------------------------------
-/// @name Paginating Results
-///--------------------------------------
-
-/**
- A limit on the number of objects to return. The default limit is `100`, with a
- maximum of 1000 results being returned at a time.
-
- @warning If you are calling `findObjects` with `limit = 1`, you may find it easier to use `getFirst` instead.
- */
-@property (nonatomic, assign) NSInteger limit;
-
-/**
- The number of objects to skip before returning any.
- */
-@property (nonatomic, assign) NSInteger skip;
-
-///--------------------------------------
-/// @name Controlling Caching Behavior
-///--------------------------------------
-
-/**
- The cache policy to use for requests.
-
- Not allowed when Pinning is enabled.
-
- @see fromLocalDatastore
- @see fromPin
- @see fromPinWithName:
- */
-@property (nonatomic, assign) PFCachePolicy cachePolicy;
-
-/**
- The age after which a cached value will be ignored
- */
-@property (nonatomic, assign) NSTimeInterval maxCacheAge;
-
-/**
- Returns whether there is a cached result for this query.
-
- @result `YES` if there is a cached result for this query, otherwise `NO`.
- */
-- (BOOL)hasCachedResult;
-
-/**
- Clears the cached result for this query. If there is no cached result, this is a noop.
- */
-- (void)clearCachedResult;
-
-/**
- Clears the cached results for all queries.
- */
-+ (void)clearAllCachedResults;
-
-///--------------------------------------
-/// @name Query Source
-///--------------------------------------
-
-/**
- Change the source of this query to all pinned objects.
-
- @warning Requires Local Datastore to be enabled.
-
- @return The same instance of `PFQuery` as the receiver. This allows method chaining.
-
- @see cachePolicy
- */
-- (instancetype)fromLocalDatastore;
-
-/**
- Change the source of this query to the default group of pinned objects.
-
- @warning Requires Local Datastore to be enabled.
-
- @return The same instance of `PFQuery` as the receiver. This allows method chaining.
-
- @see PFObjectDefaultPin
- @see cachePolicy
- */
-- (instancetype)fromPin;
-
-/**
- Change the source of this query to a specific group of pinned objects.
-
- @warning Requires Local Datastore to be enabled.
-
- @param name The pinned group.
-
- @return The same instance of `PFQuery` as the receiver. This allows method chaining.
-
- @see PFObjectDefaultPin
- @see cachePolicy
- */
-- (instancetype)fromPinWithName:(nullable NSString *)name;
-
-/**
- Ignore ACLs when querying from the Local Datastore.
-
- This is particularly useful when querying for objects with Role based ACLs set on them.
-
- @warning Requires Local Datastore to be enabled.
-
- @return The same instance of `PFQuery` as the receiver. This allows method chaining.
- */
-- (instancetype)ignoreACLs;
-
-///--------------------------------------
-/// @name Advanced Settings
-///--------------------------------------
-
-/**
- Whether or not performance tracing should be done on the query.
-
- @warning This should not be set to `YES` in most cases.
- */
-@property (nonatomic, assign) BOOL trace;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/iOS/Parse.framework/Headers/PFRelation.h b/iOS/Parse.framework/Headers/PFRelation.h
deleted file mode 100644
index 6b3c863..0000000
--- a/iOS/Parse.framework/Headers/PFRelation.h
+++ /dev/null
@@ -1,57 +0,0 @@
-/**
- * Copyright (c) 2015-present, Parse, LLC.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- */
-
-#import
-
-#import
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- The `PFRelation` class that is used to access all of the children of a many-to-many relationship.
- Each instance of `PFRelation` is associated with a particular parent object and key.
- */
-@interface PFRelation : NSObject
-
-/**
- The name of the class of the target child objects.
- */
-@property (nullable, nonatomic, copy) NSString *targetClass;
-
-///--------------------------------------
-/// @name Accessing Objects
-///--------------------------------------
-
-/**
- Returns a `PFQuery` object that can be used to get objects in this relation.
- */
-- (PFQuery *)query;
-
-///--------------------------------------
-/// @name Modifying Relations
-///--------------------------------------
-
-/**
- Adds a relation to the passed in object.
-
- @param object A `PFObject` object to add relation to.
- */
-- (void)addObject:(PFObject *)object;
-
-/**
- Removes a relation to the passed in object.
-
- @param object A `PFObject` object to add relation to.
- */
-- (void)removeObject:(PFObject *)object;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/iOS/Parse.framework/Headers/PFRole.h b/iOS/Parse.framework/Headers/PFRole.h
deleted file mode 100644
index 86c6981..0000000
--- a/iOS/Parse.framework/Headers/PFRole.h
+++ /dev/null
@@ -1,99 +0,0 @@
-/**
- * Copyright (c) 2015-present, Parse, LLC.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- */
-
-#import
-
-#import
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- The `PFRole` class represents a Role on the Parse server.
- `PFRoles` represent groupings of `PFUser` objects for the purposes of granting permissions
- (e.g. specifying a `PFACL` for a `PFObject`).
- Roles are specified by their sets of child users and child roles,
- all of which are granted any permissions that the parent role has.
-
- Roles must have a name (which cannot be changed after creation of the role), and must specify an ACL.
- */
-@interface PFRole : PFObject
-
-///--------------------------------------
-/// @name Creating a New Role
-///--------------------------------------
-
-/**
- Constructs a new `PFRole` with the given name.
- If no default ACL has been specified, you must provide an ACL for the role.
-
- @param name The name of the Role to create.
- */
-- (instancetype)initWithName:(NSString *)name;
-
-/**
- Constructs a new `PFRole` with the given name.
-
- @param name The name of the Role to create.
- @param acl The ACL for this role. Roles must have an ACL.
- */
-- (instancetype)initWithName:(NSString *)name acl:(nullable PFACL *)acl;
-
-/**
- Constructs a new `PFRole` with the given name.
-
- If no default ACL has been specified, you must provide an ACL for the role.
-
- @param name The name of the Role to create.
- */
-+ (instancetype)roleWithName:(NSString *)name;
-
-/**
- Constructs a new `PFRole` with the given name.
-
- @param name The name of the Role to create.
- @param acl The ACL for this role. Roles must have an ACL.
- */
-+ (instancetype)roleWithName:(NSString *)name acl:(nullable PFACL *)acl;
-
-///--------------------------------------
-/// @name Role-specific Properties
-///--------------------------------------
-
-/**
- Gets or sets the name for a role.
-
- This value must be set before the role has been saved to the server,
- and cannot be set once the role has been saved.
-
- @warning A role's name can only contain alphanumeric characters, `_`, `-`, and spaces.
- */
-@property (nonatomic, copy) NSString *name;
-
-/**
- Gets the `PFRelation` for the `PFUser` objects that are direct children of this role.
-
- These users are granted any privileges that this role has been granted
- (e.g. read or write access through ACLs). You can add or remove users from
- the role through this relation.
- */
-@property (nonatomic, strong, readonly) PFRelation *users;
-
-/**
- Gets the `PFRelation` for the `PFRole` objects that are direct children of this role.
-
- These roles' users are granted any privileges that this role has been granted
- (e.g. read or write access through ACLs). You can add or remove child roles
- from this role through this relation.
- */
-@property (nonatomic, strong, readonly) PFRelation *roles;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/iOS/Parse.framework/Headers/PFSession.h b/iOS/Parse.framework/Headers/PFSession.h
deleted file mode 100644
index ff9e271..0000000
--- a/iOS/Parse.framework/Headers/PFSession.h
+++ /dev/null
@@ -1,52 +0,0 @@
-/**
- * Copyright (c) 2015-present, Parse, LLC.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- */
-
-#import
-
-#import
-
-#import
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-@class PFSession;
-
-typedef void(^PFSessionResultBlock)(PFSession *__nullable session, NSError *__nullable error);
-
-/**
- `PFSession` is a local representation of a session.
- This class is a subclass of a `PFObject`,
- and retains the same functionality as any other subclass of `PFObject`.
- */
-@interface PFSession : PFObject
-
-/**
- The session token string for this session.
- */
-@property (nullable, nonatomic, copy, readonly) NSString *sessionToken;
-
-/**
- *Asynchronously* fetches a `PFSession` object related to the current user.
-
- @return A task that is `completed` with an instance of `PFSession` class or is `faulted` if the operation fails.
- */
-+ (BFTask PF_GENERIC(PFSession *)*)getCurrentSessionInBackground;
-
-/**
- *Asynchronously* fetches a `PFSession` object related to the current user.
-
- @param block The block to execute when the operation completes.
- It should have the following argument signature: `^(PFSession *session, NSError *error)`.
- */
-+ (void)getCurrentSessionInBackgroundWithBlock:(nullable PFSessionResultBlock)block;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/iOS/Parse.framework/Headers/PFSubclassing.h b/iOS/Parse.framework/Headers/PFSubclassing.h
deleted file mode 100644
index 6ccc3c5..0000000
--- a/iOS/Parse.framework/Headers/PFSubclassing.h
+++ /dev/null
@@ -1,89 +0,0 @@
-/**
- * Copyright (c) 2015-present, Parse, LLC.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- */
-
-#import
-
-@class PFQuery PF_GENERIC(PFGenericObject : PFObject *);
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- If a subclass of `PFObject` conforms to `PFSubclassing` and calls `PFObject.+registerSubclass`,
- Parse framework will be able to use that class as the native class for a Parse cloud object.
-
- Classes conforming to this protocol should subclass `PFObject` and
- include `PFObject+Subclass.h` in their implementation file.
- This ensures the methods in the Subclass category of `PFObject` are exposed in its subclasses only.
- */
-@protocol PFSubclassing
-
-@required
-
-/**
- The name of the class as seen in the REST API.
- */
-+ (NSString *)parseClassName;
-
-@optional
-
-/**
- Constructs an object of the most specific class known to implement `+parseClassName`.
-
- This method takes care to help `PFObject` subclasses be subclassed themselves.
- For example, `PFUser.+object` returns a `PFUser` by default but will return an
- object of a registered subclass instead if one is known.
- A default implementation is provided by `PFObject` which should always be sufficient.
-
- @return Returns the object that is instantiated.
- */
-+ (instancetype)object;
-
-/**
- Creates a reference to an existing PFObject for use in creating associations between PFObjects.
-
- Calling `PFObject.dataAvailable` on this object will return `NO`
- until `PFObject.-fetchIfNeeded` has been called. No network request will be made.
- A default implementation is provided by `PFObject` which should always be sufficient.
-
- @param objectId The object id for the referenced object.
-
- @return A new `PFObject` without data.
- */
-+ (instancetype)objectWithoutDataWithObjectId:(nullable NSString *)objectId;
-
-/**
- Create a query which returns objects of this type.
-
- A default implementation is provided by `PFObject` which should always be sufficient.
- */
-+ (nullable PFQuery *)query;
-
-/**
- Returns a query for objects of this type with a given predicate.
-
- A default implementation is provided by `PFObject` which should always be sufficient.
-
- @param predicate The predicate to create conditions from.
-
- @return An instance of `PFQuery`.
-
- @see [PFQuery queryWithClassName:predicate:]
- */
-+ (nullable PFQuery *)queryWithPredicate:(nullable NSPredicate *)predicate;
-
-/**
- Lets Parse know this class should be used to instantiate all objects with class type `parseClassName`.
-
- @warning This method must be called before `Parse.+setApplicationId:clientKey:`.
- */
-+ (void)registerSubclass;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/iOS/Parse.framework/Headers/PFUser.h b/iOS/Parse.framework/Headers/PFUser.h
deleted file mode 100644
index 34cd890..0000000
--- a/iOS/Parse.framework/Headers/PFUser.h
+++ /dev/null
@@ -1,519 +0,0 @@
-/**
- * Copyright (c) 2015-present, Parse, LLC.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- */
-
-#import
-
-#import
-
-#import
-#import
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-typedef void(^PFUserSessionUpgradeResultBlock)(NSError *__nullable error);
-typedef void(^PFUserLogoutResultBlock)(NSError *__nullable error);
-
-@class PFQuery PF_GENERIC(PFGenericObject : PFObject *);
-@protocol PFUserAuthenticationDelegate;
-
-/**
- The `PFUser` class is a local representation of a user persisted to the Parse Data.
- This class is a subclass of a `PFObject`, and retains the same functionality of a `PFObject`,
- but also extends it with various user specific methods, like authentication, signing up, and validation uniqueness.
-
- Many APIs responsible for linking a `PFUser` with Facebook or Twitter have been deprecated in favor of dedicated
- utilities for each social network. See `PFFacebookUtils`, `PFTwitterUtils` and `PFAnonymousUtils` for more information.
- */
-
-@interface PFUser : PFObject
-
-///--------------------------------------
-/// @name Accessing the Current User
-///--------------------------------------
-
-/**
- Gets the currently logged in user from disk and returns an instance of it.
-
- @return Returns a `PFUser` that is the currently logged in user. If there is none, returns `nil`.
- */
-+ (nullable instancetype)currentUser;
-
-/**
- The session token for the `PFUser`.
-
- This is set by the server upon successful authentication.
- */
-@property (nullable, nonatomic, copy, readonly) NSString *sessionToken;
-
-/**
- Whether the `PFUser` was just created from a request.
-
- This is only set after a Facebook or Twitter login.
- */
-@property (nonatomic, assign, readonly) BOOL isNew;
-
-/**
- Whether the user is an authenticated object for the device.
-
- An authenticated `PFUser` is one that is obtained via a `-signUp:` or `+logInWithUsername:password:` method.
- An authenticated object is required in order to save (with altered values) or delete it.
- */
-@property (nonatomic, assign, readonly, getter=isAuthenticated) BOOL authenticated;
-
-///--------------------------------------
-/// @name Creating a New User
-///--------------------------------------
-
-/**
- Creates a new `PFUser` object.
-
- @return Returns a new `PFUser` object.
- */
-+ (instancetype)user;
-
-/**
- Enables automatic creation of anonymous users.
-
- After calling this method, `+currentUser` will always have a value.
- The user will only be created on the server once the user has been saved,
- or once an object with a relation to that user or an ACL that refers to the user has been saved.
-
- @warning `PFObject.-saveEventually` will not work on if an item being saved has a relation
- to an automatic user that has never been saved.
- */
-+ (void)enableAutomaticUser;
-
-/**
- The username for the `PFUser`.
- */
-@property (nullable, nonatomic, strong) NSString *username;
-
-/**!
- The password for the `PFUser`.
-
- This will not be filled in from the server with the password.
- It is only meant to be set.
- */
-@property (nullable, nonatomic, strong) NSString *password;
-
-/**
- The email for the `PFUser`.
- */
-@property (nullable, nonatomic, strong) NSString *email;
-
-/**
- Signs up the user *synchronously*.
-
- This will also enforce that the username isn't already taken.
-
- @warning Make sure that password and username are set before calling this method.
-
- @return Returns `YES` if the sign up was successful, otherwise `NO`.
- */
-- (BOOL)signUp PF_SWIFT_UNAVAILABLE;
-
-/**
- Signs up the user *synchronously*.
-
- This will also enforce that the username isn't already taken.
-
- @warning Make sure that password and username are set before calling this method.
-
- @param error Error object to set on error.
-
- @return Returns whether the sign up was successful.
- */
-- (BOOL)signUp:(NSError **)error;
-
-/**
- Signs up the user *asynchronously*.
-
- This will also enforce that the username isn't already taken.
-
- @warning Make sure that password and username are set before calling this method.
-
- @return The task, that encapsulates the work being done.
- */
-- (BFTask PF_GENERIC(NSNumber *)*)signUpInBackground;
-
-/**
- Signs up the user *asynchronously*.
-
- This will also enforce that the username isn't already taken.
-
- @warning Make sure that password and username are set before calling this method.
-
- @param block The block to execute.
- It should have the following argument signature: `^(BOOL succeeded, NSError *error)`.
- */
-- (void)signUpInBackgroundWithBlock:(nullable PFBooleanResultBlock)block;
-
-/**
- Signs up the user *asynchronously*.
-
- This will also enforce that the username isn't already taken.
-
- @warning Make sure that password and username are set before calling this method.
-
- @param target Target object for the selector.
- @param selector The selector that will be called when the asynchrounous request is complete.
- It should have the following signature: `(void)callbackWithResult:(NSNumber *)result error:(NSError *)error`.
- `error` will be `nil` on success and set if there was an error.
- `[result boolValue]` will tell you whether the call succeeded or not.
- */
-- (void)signUpInBackgroundWithTarget:(nullable id)target selector:(nullable SEL)selector;
-
-///--------------------------------------
-/// @name Logging In
-///--------------------------------------
-
-/**
- Makes a *synchronous* request to login a user with specified credentials.
-
- Returns an instance of the successfully logged in `PFUser`.
- This also caches the user locally so that calls to `+currentUser` will use the latest logged in user.
-
- @param username The username of the user.
- @param password The password of the user.
-
- @return Returns an instance of the `PFUser` on success.
- If login failed for either wrong password or wrong username, returns `nil`.
- */
-+ (nullable instancetype)logInWithUsername:(NSString *)username
- password:(NSString *)password PF_SWIFT_UNAVAILABLE;
-
-/**
- Makes a *synchronous* request to login a user with specified credentials.
-
- Returns an instance of the successfully logged in `PFUser`.
- This also caches the user locally so that calls to `+currentUser` will use the latest logged in user.
-
- @param username The username of the user.
- @param password The password of the user.
- @param error The error object to set on error.
-
- @return Returns an instance of the `PFUser` on success.
- If login failed for either wrong password or wrong username, returns `nil`.
- */
-+ (nullable instancetype)logInWithUsername:(NSString *)username
- password:(NSString *)password
- error:(NSError **)error;
-
-/**
- Makes an *asynchronous* request to login a user with specified credentials.
-
- Returns an instance of the successfully logged in `PFUser`.
- This also caches the user locally so that calls to `+currentUser` will use the latest logged in user.
-
- @param username The username of the user.
- @param password The password of the user.
-
- @return The task, that encapsulates the work being done.
- */
-+ (BFTask PF_GENERIC(__kindof PFUser *)*)logInWithUsernameInBackground:(NSString *)username
- password:(NSString *)password;
-
-/**
- Makes an *asynchronous* request to login a user with specified credentials.
-
- Returns an instance of the successfully logged in `PFUser`.
- This also caches the user locally so that calls to `+currentUser` will use the latest logged in user.
-
- @param username The username of the user.
- @param password The password of the user.
- @param target Target object for the selector.
- @param selector The selector that will be called when the asynchrounous request is complete.
- It should have the following signature: `(void)callbackWithUser:(PFUser *)user error:(NSError *)error`.
- */
-+ (void)logInWithUsernameInBackground:(NSString *)username
- password:(NSString *)password
- target:(nullable id)target
- selector:(nullable SEL)selector;
-
-/**
- Makes an *asynchronous* request to log in a user with specified credentials.
-
- Returns an instance of the successfully logged in `PFUser`.
- This also caches the user locally so that calls to `+currentUser` will use the latest logged in user.
-
- @param username The username of the user.
- @param password The password of the user.
- @param block The block to execute.
- It should have the following argument signature: `^(PFUser *user, NSError *error)`.
- */
-+ (void)logInWithUsernameInBackground:(NSString *)username
- password:(NSString *)password
- block:(nullable PFUserResultBlock)block;
-
-///--------------------------------------
-/// @name Becoming a User
-///--------------------------------------
-
-/**
- Makes a *synchronous* request to become a user with the given session token.
-
- Returns an instance of the successfully logged in `PFUser`.
- This also caches the user locally so that calls to `+currentUser` will use the latest logged in user.
-
- @param sessionToken The session token for the user.
-
- @return Returns an instance of the `PFUser` on success.
- If becoming a user fails due to incorrect token, it returns `nil`.
- */
-+ (nullable instancetype)become:(NSString *)sessionToken PF_SWIFT_UNAVAILABLE;
-
-/**
- Makes a *synchronous* request to become a user with the given session token.
-
- Returns an instance of the successfully logged in `PFUser`.
- This will also cache the user locally so that calls to `+currentUser` will use the latest logged in user.
-
- @param sessionToken The session token for the user.
- @param error The error object to set on error.
-
- @return Returns an instance of the `PFUser` on success.
- If becoming a user fails due to incorrect token, it returns `nil`.
- */
-+ (nullable instancetype)become:(NSString *)sessionToken error:(NSError **)error;
-
-/**
- Makes an *asynchronous* request to become a user with the given session token.
-
- Returns an instance of the successfully logged in `PFUser`.
- This also caches the user locally so that calls to `+currentUser` will use the latest logged in user.
-
- @param sessionToken The session token for the user.
-
- @return The task, that encapsulates the work being done.
- */
-+ (BFTask PF_GENERIC(__kindof PFUser *)*)becomeInBackground:(NSString *)sessionToken;
-
-/**
- Makes an *asynchronous* request to become a user with the given session token.
-
- Returns an instance of the successfully logged in `PFUser`. This also caches the user locally
- so that calls to `+currentUser` will use the latest logged in user.
-
- @param sessionToken The session token for the user.
- @param block The block to execute.
- The block should have the following argument signature: `^(PFUser *user, NSError *error)`.
- */
-+ (void)becomeInBackground:(NSString *)sessionToken block:(nullable PFUserResultBlock)block;
-
-/**
- Makes an *asynchronous* request to become a user with the given session token.
-
- Returns an instance of the successfully logged in `PFUser`. This also caches the user locally
- so that calls to `+currentUser` will use the latest logged in user.
-
- @param sessionToken The session token for the user.
- @param target Target object for the selector.
- @param selector The selector that will be called when the asynchrounous request is complete.
- It should have the following signature: `(void)callbackWithUser:(PFUser *)user error:(NSError *)error`.
- */
-+ (void)becomeInBackground:(NSString *)sessionToken
- target:(__nullable id)target
- selector:(__nullable SEL)selector;
-
-///--------------------------------------
-/// @name Revocable Session
-///--------------------------------------
-
-/**
- Enables revocable sessions and migrates the currentUser session token to use revocable session if needed.
-
- This method is required if you want to use `PFSession` APIs
- and your application's 'Require Revocable Session' setting is turned off on `http://parse.com` app settings.
- After returned `BFTask` completes - `PFSession` class and APIs will be available for use.
-
- @return An instance of `BFTask` that is completed when revocable
- sessions are enabled and currentUser token is migrated.
- */
-+ (BFTask *)enableRevocableSessionInBackground;
-
-/**
- Enables revocable sessions and upgrades the currentUser session token to use revocable session if needed.
-
- This method is required if you want to use `PFSession` APIs
- and legacy sessions are enabled in your application settings on `http://parse.com/`.
- After returned `BFTask` completes - `PFSession` class and APIs will be available for use.
-
- @param block Block that will be called when revocable sessions are enabled and currentUser token is migrated.
- */
-+ (void)enableRevocableSessionInBackgroundWithBlock:(nullable PFUserSessionUpgradeResultBlock)block;
-
-///--------------------------------------
-/// @name Logging Out
-///--------------------------------------
-
-/**
- *Synchronously* logs out the currently logged in user on disk.
- */
-+ (void)logOut;
-
-/**
- *Asynchronously* logs out the currently logged in user.
-
- This will also remove the session from disk, log out of linked services
- and all future calls to `+currentUser` will return `nil`. This is preferrable to using `-logOut`,
- unless your code is already running from a background thread.
-
- @return An instance of `BFTask`, that is resolved with `nil` result when logging out completes.
- */
-+ (BFTask *)logOutInBackground;
-
-/**
- *Asynchronously* logs out the currently logged in user.
-
- This will also remove the session from disk, log out of linked services
- and all future calls to `+currentUser` will return `nil`. This is preferrable to using `-logOut`,
- unless your code is already running from a background thread.
-
- @param block A block that will be called when logging out completes or fails.
- */
-+ (void)logOutInBackgroundWithBlock:(nullable PFUserLogoutResultBlock)block;
-
-///--------------------------------------
-/// @name Requesting a Password Reset
-///--------------------------------------
-
-/**
- *Synchronously* Send a password reset request for a specified email.
-
- If a user account exists with that email, an email will be sent to that address
- with instructions on how to reset their password.
-
- @param email Email of the account to send a reset password request.
-
- @return Returns `YES` if the reset email request is successful. `NO` - if no account was found for the email address.
- */
-+ (BOOL)requestPasswordResetForEmail:(NSString *)email PF_SWIFT_UNAVAILABLE;
-
-/**
- *Synchronously* send a password reset request for a specified email and sets an error object.
-
- If a user account exists with that email, an email will be sent to that address
- with instructions on how to reset their password.
-
- @param email Email of the account to send a reset password request.
- @param error Error object to set on error.
- @return Returns `YES` if the reset email request is successful. `NO` - if no account was found for the email address.
- */
-+ (BOOL)requestPasswordResetForEmail:(NSString *)email error:(NSError **)error;
-
-/**
- Send a password reset request asynchronously for a specified email and sets an
- error object. If a user account exists with that email, an email will be sent to
- that address with instructions on how to reset their password.
- @param email Email of the account to send a reset password request.
- @return The task, that encapsulates the work being done.
- */
-+ (BFTask PF_GENERIC(NSNumber *)*)requestPasswordResetForEmailInBackground:(NSString *)email;
-
-/**
- Send a password reset request *asynchronously* for a specified email.
-
- If a user account exists with that email, an email will be sent to that address
- with instructions on how to reset their password.
-
- @param email Email of the account to send a reset password request.
- @param block The block to execute.
- It should have the following argument signature: `^(BOOL succeeded, NSError *error)`.
- */
-+ (void)requestPasswordResetForEmailInBackground:(NSString *)email
- block:(nullable PFBooleanResultBlock)block;
-
-/**
- Send a password reset request *asynchronously* for a specified email and sets an error object.
-
- If a user account exists with that email, an email will be sent to that address
- with instructions on how to reset their password.
-
- @param email Email of the account to send a reset password request.
- @param target Target object for the selector.
- @param selector The selector that will be called when the asynchronous request is complete.
- It should have the following signature: `(void)callbackWithResult:(NSNumber *)result error:(NSError *)error`.
- `error` will be `nil` on success and set if there was an error.
- `[result boolValue]` will tell you whether the call succeeded or not.
- */
-+ (void)requestPasswordResetForEmailInBackground:(NSString *)email
- target:(__nullable id)target
- selector:(__nullable SEL)selector;
-
-///--------------------------------------
-/// @name Third-party Authentication
-///--------------------------------------
-
-/**
- Registers a third party authentication delegate.
-
- @note This method shouldn't be invoked directly unless developing a third party authentication library.
- @see PFUserAuthenticationDelegate
-
- @param delegate The third party authenticaiton delegate to be registered.
- @param authType The name of the type of third party authentication source.
- */
-+ (void)registerAuthenticationDelegate:(id)delegate forAuthType:(NSString *)authType;
-
-/**
- Logs in a user with third party authentication credentials.
-
- @note This method shouldn't be invoked directly unless developing a third party authentication library.
- @see PFUserAuthenticationDelegate
-
- @param authType The name of the type of third party authentication source.
- @param authData The user credentials of the third party authentication source.
-
- @return A `BFTask` that is resolved to `PFUser` when logging in completes.
- */
-+ (BFTask PF_GENERIC(PFUser *)*)logInWithAuthTypeInBackground:(NSString *)authType
- authData:(NSDictionary PF_GENERIC(NSString *, NSString *)*)authData;
-
-/**
- Links this user to a third party authentication library.
-
- @note This method shouldn't be invoked directly unless developing a third party authentication library.
- @see PFUserAuthenticationDelegate
-
- @param authType The name of the type of third party authentication source.
- @param authData The user credentials of the third party authentication source.
-
- @return A `BFTask` that is resolved to `@YES` if linking succeeds.
- */
-- (BFTask PF_GENERIC(NSNumber *)*)linkWithAuthTypeInBackground:(NSString *)authType
- authData:(NSDictionary PF_GENERIC(NSString *, NSString *)*)authData;
-
-/**
- Unlinks this user from a third party authentication library.
-
- @note This method shouldn't be invoked directly unless developing a third party authentication library.
- @see PFUserAuthenticationDelegate
-
- @param authType The name of the type of third party authentication source.
-
- @return A `BFTask` that is resolved to `@YES` if unlinking succeeds.
- */
-- (BFTask PF_GENERIC(NSNumber *)*)unlinkWithAuthTypeInBackground:(NSString *)authType;
-
-/**
- Indicates whether this user is linked with a third party authentication library of a specific type.
-
- @note This method shouldn't be invoked directly unless developing a third party authentication library.
- @see PFUserAuthenticationDelegate
-
- @param authType The name of the type of third party authentication source.
-
- @return `YES` if the user is linked with a provider, otherwise `NO`.
- */
-- (BOOL)isLinkedWithAuthType:(NSString *)authType;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/iOS/Parse.framework/Headers/PFUserAuthenticationDelegate.h b/iOS/Parse.framework/Headers/PFUserAuthenticationDelegate.h
deleted file mode 100644
index 9c1eea7..0000000
--- a/iOS/Parse.framework/Headers/PFUserAuthenticationDelegate.h
+++ /dev/null
@@ -1,36 +0,0 @@
-/**
- * Copyright (c) 2015-present, Parse, LLC.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- */
-
-#import
-
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- Provides a general interface for delegation of third party authentication with `PFUser`s.
- */
-@protocol PFUserAuthenticationDelegate
-
-/**
- Called when restoring third party authentication credentials that have been serialized,
- such as session keys, user id, etc.
-
- @note This method will be executed on a background thread.
-
- @param authData The auth data for the provider. This value may be `nil` when unlinking an account.
-
- @return `YES` - if the `authData` was succesfully synchronized,
- or `NO` if user should not longer be associated because of bad `authData`.
- */
-- (BOOL)restoreAuthenticationWithAuthData:(nullable NSDictionary PF_GENERIC(NSString *, NSString *)*)authData;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/iOS/Parse.framework/Headers/Parse.h b/iOS/Parse.framework/Headers/Parse.h
deleted file mode 100644
index 8783589..0000000
--- a/iOS/Parse.framework/Headers/Parse.h
+++ /dev/null
@@ -1,200 +0,0 @@
-/**
- * Copyright (c) 2015-present, Parse, LLC.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- */
-
-#import
-
-#import
-#import
-#import
-#import
-#import
-#import
-#import
-#import
-#import
-#import
-#import
-#import
-#import
-#import
-#import
-#import
-#import
-
-#if TARGET_OS_IOS
-
-#import
-#import
-#import
-#import
-#import
-
-#elif PF_TARGET_OS_OSX
-
-#import
-#import
-
-#elif TARGET_OS_TV
-
-#import
-#import
-
-#endif
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- The `Parse` class contains static functions that handle global configuration for the Parse framework.
- */
-@interface Parse : NSObject
-
-///--------------------------------------
-/// @name Connecting to Parse
-///--------------------------------------
-
-/**
- Sets the applicationId and clientKey of your application.
-
- @param applicationId The application id of your Parse application.
- @param clientKey The client key of your Parse application.
- */
-+ (void)setApplicationId:(NSString *)applicationId clientKey:(NSString *)clientKey;
-
-/**
- The current application id that was used to configure Parse framework.
- */
-+ (NSString *)getApplicationId;
-
-/**
- The current client key that was used to configure Parse framework.
- */
-+ (NSString *)getClientKey;
-
-///--------------------------------------
-/// @name Enabling Local Datastore
-///--------------------------------------
-
-/**
- Enable pinning in your application. This must be called before your application can use
- pinning. The recommended way is to call this method before `+setApplicationId:clientKey:`.
- */
-+ (void)enableLocalDatastore PF_TV_UNAVAILABLE;
-
-/**
- Flag that indicates whether Local Datastore is enabled.
-
- @return `YES` if Local Datastore is enabled, otherwise `NO`.
- */
-+ (BOOL)isLocalDatastoreEnabled PF_TV_UNAVAILABLE;
-
-///--------------------------------------
-/// @name Enabling Extensions Data Sharing
-///--------------------------------------
-
-/**
- Enables data sharing with an application group identifier.
-
- After enabling - Local Datastore, `PFUser.+currentUser`, `PFInstallation.+currentInstallation` and all eventually commands
- are going to be available to every application/extension in a group that have the same Parse applicationId.
-
- @warning This method is required to be called before `+setApplicationId:clientKey:`.
-
- @param groupIdentifier Application Group Identifier to share data with.
- */
-+ (void)enableDataSharingWithApplicationGroupIdentifier:(NSString *)groupIdentifier PF_EXTENSION_UNAVAILABLE("Use `enableDataSharingWithApplicationGroupIdentifier:containingApplication:`.") PF_WATCH_UNAVAILABLE PF_TV_UNAVAILABLE;
-
-/**
- Enables data sharing with an application group identifier.
-
- After enabling - Local Datastore, `PFUser.+currentUser`, `PFInstallation.+currentInstallation` and all eventually commands
- are going to be available to every application/extension in a group that have the same Parse applicationId.
-
- @warning This method is required to be called before `+setApplicationId:clientKey:`.
- This method can only be used by application extensions.
-
- @param groupIdentifier Application Group Identifier to share data with.
- @param bundleIdentifier Bundle identifier of the containing application.
- */
-+ (void)enableDataSharingWithApplicationGroupIdentifier:(NSString *)groupIdentifier
- containingApplication:(NSString *)bundleIdentifier PF_WATCH_UNAVAILABLE PF_TV_UNAVAILABLE;
-
-/**
- Application Group Identifier for Data Sharing.
-
- @return `NSString` value if data sharing is enabled, otherwise `nil`.
- */
-+ (NSString *)applicationGroupIdentifierForDataSharing PF_WATCH_UNAVAILABLE PF_TV_UNAVAILABLE;
-
-/**
- Containing application bundle identifier for Data Sharing.
-
- @return `NSString` value if data sharing is enabled, otherwise `nil`.
- */
-+ (NSString *)containingApplicationBundleIdentifierForDataSharing PF_WATCH_UNAVAILABLE PF_TV_UNAVAILABLE;
-
-#if PARSE_IOS_ONLY
-
-///--------------------------------------
-/// @name Configuring UI Settings
-///--------------------------------------
-
-/**
- Set whether to show offline messages when using a Parse view or view controller related classes.
-
- @param enabled Whether a `UIAlertView` should be shown when the device is offline
- and network access is required from a view or view controller.
-
- @deprecated This method has no effect.
- */
-+ (void)offlineMessagesEnabled:(BOOL)enabled PARSE_DEPRECATED("This method is deprecated and has no effect.");
-
-/**
- Set whether to show an error message when using a Parse view or view controller related classes
- and a Parse error was generated via a query.
-
- @param enabled Whether a `UIAlertView` should be shown when an error occurs.
-
- @deprecated This method has no effect.
- */
-+ (void)errorMessagesEnabled:(BOOL)enabled PARSE_DEPRECATED("This method is deprecated and has no effect.");
-
-#endif
-
-///--------------------------------------
-/// @name Logging
-///--------------------------------------
-
-/**
- Sets the level of logging to display.
-
- By default:
- - If running inside an app that was downloaded from iOS App Store - it is set to `PFLogLevelNone`
- - All other cases - it is set to `PFLogLevelWarning`
-
- @param logLevel Log level to set.
- @see PFLogLevel
- */
-+ (void)setLogLevel:(PFLogLevel)logLevel;
-
-/**
- Log level that will be displayed.
-
- By default:
-
- - If running inside an app that was downloaded from iOS App Store - it is set to `PFLogLevelNone`
- - All other cases - it is set to `PFLogLevelWarning`
-
- @return A `PFLogLevel` value.
- @see PFLogLevel
- */
-+ (PFLogLevel)logLevel;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/iOS/Parse.framework/Info.plist b/iOS/Parse.framework/Info.plist
deleted file mode 100644
index 11d33c7..0000000
Binary files a/iOS/Parse.framework/Info.plist and /dev/null differ
diff --git a/iOS/Parse.framework/Modules/module.modulemap b/iOS/Parse.framework/Modules/module.modulemap
deleted file mode 100644
index 32a75e9..0000000
--- a/iOS/Parse.framework/Modules/module.modulemap
+++ /dev/null
@@ -1,6 +0,0 @@
-framework module Parse {
- umbrella header "Parse.h"
-
- export *
- module * { export * }
-}
diff --git a/iOS/Parse.framework/Parse b/iOS/Parse.framework/Parse
deleted file mode 100644
index 6273572..0000000
Binary files a/iOS/Parse.framework/Parse and /dev/null differ
diff --git a/iOS/Parse.framework/en.lproj/Parse.strings b/iOS/Parse.framework/en.lproj/Parse.strings
deleted file mode 100644
index 815195a..0000000
Binary files a/iOS/Parse.framework/en.lproj/Parse.strings and /dev/null differ
diff --git a/iOS/Parse.framework/third_party_licenses.txt b/iOS/Parse.framework/third_party_licenses.txt
deleted file mode 100644
index a49d8d1..0000000
--- a/iOS/Parse.framework/third_party_licenses.txt
+++ /dev/null
@@ -1,68 +0,0 @@
-THE FOLLOWING SETS FORTH ATTRIBUTION NOTICES FOR THIRD PARTY SOFTWARE THAT MAY BE CONTAINED IN PORTIONS OF THE PARSE PRODUCT.
-
------
-
-The following software may be included in this product: OAuthCore. This software contains the following license and notice below:
-
-Copyright (C) 2012 Loren Brichter
-
-Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
------
-
-The following software may be included in this product: google-breakpad. This software contains the following license and notice below:
-
-Copyright (c) 2006, Google Inc.
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are
-met:
-
-* Redistributions of source code must retain the above copyright
-notice, this list of conditions and the following disclaimer.
-* Redistributions in binary form must reproduce the above
-copyright notice, this list of conditions and the following disclaimer
-in the documentation and/or other materials provided with the
-distribution.
-* Neither the name of Google Inc. nor the names of its
-contributors may be used to endorse or promote products derived from
-this software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
---------------------------------------------------------------------
-
-Copyright 2001-2004 Unicode, Inc.
-
-Disclaimer
-
-This source code is provided as is by Unicode, Inc. No claims are
-made as to fitness for any particular purpose. No warranties of any
-kind are expressed or implied. The recipient agrees to determine
-applicability of information provided. If this file has been
-purchased on magnetic or optical media from Unicode, Inc., the
-sole remedy for any claim will be exchange of defective media
-within 90 days of receipt.
-
-Limitations on Rights to Redistribute This Code
-
-Unicode, Inc. hereby grants the right to freely use the information
-supplied in this file in the creation of products supporting the
-Unicode Standard, and to make copies of this file in any form
-for internal or external distribution as long as this notice
-remains attached.
diff --git a/iOS/ParseUI.framework/Headers/PFCollectionViewCell.h b/iOS/ParseUI.framework/Headers/PFCollectionViewCell.h
deleted file mode 100644
index 9abb31e..0000000
--- a/iOS/ParseUI.framework/Headers/PFCollectionViewCell.h
+++ /dev/null
@@ -1,61 +0,0 @@
-/*
- * Copyright (c) 2014, Parse, LLC. All rights reserved.
- *
- * You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
- * copy, modify, and distribute this software in source code or binary form for use
- * in connection with the web services and APIs provided by Parse.
- *
- * As with any software that integrates with the Parse platform, your use of
- * this software is subject to the Parse Terms of Service
- * [https://www.parse.com/about/terms]. This copyright notice shall be
- * included in all copies or substantial portions of the software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
- * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
- * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
- * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- *
- */
-
-#import
-
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-@class PFImageView;
-@class PFObject;
-
-/**
- The `PFCollectionViewCell` class represents a collection view cell which can
- download and display remote images stored on Parse as well as has a default simple text label.
- */
-@interface PFCollectionViewCell : UICollectionViewCell
-
-/**
- A simple lazy-loaded label for the collection view cell.
- */
-@property (nonatomic, strong, readonly) UILabel *textLabel;
-
-/**
- The lazy-loaded imageView of the collection view cell.
-
- @see PFImageView
- */
-@property (nonatomic, strong, readonly) PFImageView *imageView;
-
-/**
- This method should update all the relevant information inside a subclass of `PFCollectionViewCell`.
-
- This method is automatically called by `PFQueryCollectionViewController` whenever the cell
- should display new information. By default this method does nothing.
-
- @param object An instance of `PFObject` to update from.
- */
-- (void)updateFromObject:(nullable PFObject *)object;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/iOS/ParseUI.framework/Headers/PFImageView.h b/iOS/ParseUI.framework/Headers/PFImageView.h
deleted file mode 100644
index adabf56..0000000
--- a/iOS/ParseUI.framework/Headers/PFImageView.h
+++ /dev/null
@@ -1,79 +0,0 @@
-/*
- * Copyright (c) 2014, Parse, LLC. All rights reserved.
- *
- * You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
- * copy, modify, and distribute this software in source code or binary form for use
- * in connection with the web services and APIs provided by Parse.
- *
- * As with any software that integrates with the Parse platform, your use of
- * this software is subject to the Parse Terms of Service
- * [https://www.parse.com/about/terms]. This copyright notice shall be
- * included in all copies or substantial portions of the software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
- * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
- * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
- * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- *
- */
-
-#import
-
-#import
-
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-typedef void(^PFImageViewImageResultBlock)(UIImage *__nullable image, NSError *__nullable error);
-
-@class BFTask PF_GENERIC(__covariant BFGenericType);
-@class PFFile;
-
-/**
- An image view that downloads and displays remote image stored on Parse's server.
- */
-@interface PFImageView : UIImageView
-
-/**
- The remote file on Parse's server that stores the image.
-
- @warning Note that the download does not start until `-loadInBackground:` is called.
- */
-@property (nullable, nonatomic, strong) PFFile *file;
-
-/**
- Initiate downloading of the remote image.
-
- Once the download completes, the remote image will be displayed.
-
- @return The task, that encapsulates the work being done.
- */
-- (BFTask PF_GENERIC(UIImage *)*)loadInBackground;
-
-/**
- Initiate downloading of the remote image.
-
- Once the download completes, the remote image will be displayed.
-
- @param completion the completion block.
- */
-- (void)loadInBackground:(nullable PFImageViewImageResultBlock)completion;
-
-/**
- Initiate downloading of the remote image.
-
- Once the download completes, the remote image will be displayed.
-
- @param completion the completion block.
- @param progressBlock called with the download progress as the image is being downloaded.
- Will be called with a value of 100 before the completion block is called.
- */
-- (void)loadInBackground:(nullable PFImageViewImageResultBlock)completion
- progressBlock:(nullable void (^)(int percentDone))progressBlock;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/iOS/ParseUI.framework/Headers/PFLogInView.h b/iOS/ParseUI.framework/Headers/PFLogInView.h
deleted file mode 100644
index a2bce3d..0000000
--- a/iOS/ParseUI.framework/Headers/PFLogInView.h
+++ /dev/null
@@ -1,186 +0,0 @@
-/*
- * Copyright (c) 2014, Parse, LLC. All rights reserved.
- *
- * You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
- * copy, modify, and distribute this software in source code or binary form for use
- * in connection with the web services and APIs provided by Parse.
- *
- * As with any software that integrates with the Parse platform, your use of
- * this software is subject to the Parse Terms of Service
- * [https://www.parse.com/about/terms]. This copyright notice shall be
- * included in all copies or substantial portions of the software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
- * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
- * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
- * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- *
- */
-
-#import
-
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- `PFLogInFields` bitmask specifies the log in elements which are enabled in the view.
-
- @see PFLogInViewController
- @see PFLogInView
- */
-typedef NS_OPTIONS(NSInteger, PFLogInFields) {
- /** No fields. */
- PFLogInFieldsNone = 0,
- /** Username and password fields. */
- PFLogInFieldsUsernameAndPassword = 1 << 0,
- /** Forgot password button. */
- PFLogInFieldsPasswordForgotten = 1 << 1,
- /** Login button. */
- PFLogInFieldsLogInButton = 1 << 2,
- /** Button to login with Facebook. */
- PFLogInFieldsFacebook = 1 << 3,
- /** Button to login with Twitter. */
- PFLogInFieldsTwitter = 1 << 4,
- /** Signup Button. */
- PFLogInFieldsSignUpButton = 1 << 5,
- /** Dismiss Button. */
- PFLogInFieldsDismissButton = 1 << 6,
-
- /** Default value. Combines Username, Password, Login, Signup, Forgot Password and Dismiss buttons. */
- PFLogInFieldsDefault = (PFLogInFieldsUsernameAndPassword |
- PFLogInFieldsLogInButton |
- PFLogInFieldsSignUpButton |
- PFLogInFieldsPasswordForgotten |
- PFLogInFieldsDismissButton)
-};
-
-/**
- `PFLoginFields`'s accessibility label identifiers
-
- @see PFLogInView
- */
-extern NSString *const PFLogInViewUsernameFieldAccessibilityIdentifier;
-extern NSString *const PFLogInViewPasswordFieldAccessibilityIdentifier;
-extern NSString *const PFLogInViewLogInButtonAccessibilityIdentifier;
-extern NSString *const PFLogInViewSignUpButtonAccessibilityIdentifier;
-extern NSString *const PFLogInViewPasswordForgottenButtonAccessibilityIdentifier;
-extern NSString *const PFLogInViewTwitterButtonAccessibilityIdentifier;
-extern NSString *const PFLogInViewFacebookButtonAccessibilityIdentifier;
-extern NSString *const PFLogInViewDismissButtonAccessibilityIdentifier;
-
-@class PFTextField;
-
-/**
- The `PFLogInView` class provides a standard log in interface for authenticating a `PFUser`.
- */
-@interface PFLogInView : UIScrollView
-
-///--------------------------------------
-/// @name Creating Log In View
-///--------------------------------------
-
-/**
- Initializes the view with the specified log in elements.
-
- @param fields A bitmask specifying the log in elements which are enabled in the view
-
- @return An initialized `PFLogInView` object or `nil` if the object couldn't be created.
-
- @see PFLogInFields
- */
-- (instancetype)initWithFields:(PFLogInFields)fields;
-
-/**
- The view controller that will present this view.
-
- Used to lay out elements correctly when the presenting view controller has translucent elements.
- */
-@property (nullable, nonatomic, weak) UIViewController *presentingViewController;
-
-///--------------------------------------
-/// @name Customizing the Logo
-///--------------------------------------
-
-/// The logo. By default, it is the Parse logo.
-@property (nullable, nonatomic, strong) UIView *logo;
-
-///--------------------------------------
-/// @name Configure Username Behaviour
-///--------------------------------------
-
-/**
- If email should be used to log in, instead of username
-
- By default, this is set to `NO`.
- */
-@property (nonatomic, assign) BOOL emailAsUsername;
-
-///--------------------------------------
-/// @name Log In Elements
-///--------------------------------------
-
-/**
- The bitmask which specifies the enabled log in elements in the view.
- */
-@property (nonatomic, assign, readonly) PFLogInFields fields;
-
-/**
- The username text field. It is `nil` if the element is not enabled.
- */
-@property (nullable, nonatomic, strong, readonly) PFTextField *usernameField;
-
-/**
- The password text field. It is `nil` if the element is not enabled.
- */
-@property (nullable, nonatomic, strong, readonly) PFTextField *passwordField;
-
-/**
- The password forgotten button. It is `nil` if the element is not enabled.
- */
-@property (nullable, nonatomic, strong, readonly) UIButton *passwordForgottenButton;
-
-/**
- The log in button. It is `nil` if the element is not enabled.
- */
-@property (nullable, nonatomic, strong, readonly) UIButton *logInButton;
-
-/**
- The Facebook button. It is `nil` if the element is not enabled.
- */
-@property (nullable, nonatomic, strong, readonly) UIButton *facebookButton;
-
-/**
- The Twitter button. It is `nil` if the element is not enabled.
- */
-@property (nullable, nonatomic, strong, readonly) UIButton *twitterButton;
-
-/**
- The sign up button. It is `nil` if the element is not enabled.
- */
-@property (nullable, nonatomic, strong, readonly) UIButton *signUpButton;
-
-/**
- It is `nil` if the element is not enabled.
- */
-@property (nullable, nonatomic, strong, readonly) UIButton *dismissButton;
-
-/**
- The facebook/twitter login label.
-
- @deprecated This property is deprecated and will always be nil.
- */
-@property (nullable, nonatomic, strong, readonly) UILabel *externalLogInLabel __attribute__(PARSE_UI_DEPRECATED("This property is deprecated and will always be nil."));
-
-/**
- The sign up label.
-
- @deprecated This property is deprecated and will always be nil.
- */
-@property (nullable, nonatomic, strong, readonly) UILabel *signUpLabel __attribute__(PARSE_UI_DEPRECATED("This property is deprecated and will always be nil."));
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/iOS/ParseUI.framework/Headers/PFLogInViewController.h b/iOS/ParseUI.framework/Headers/PFLogInViewController.h
deleted file mode 100644
index 0c63fcb..0000000
--- a/iOS/ParseUI.framework/Headers/PFLogInViewController.h
+++ /dev/null
@@ -1,177 +0,0 @@
-/*
- * Copyright (c) 2014, Parse, LLC. All rights reserved.
- *
- * You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
- * copy, modify, and distribute this software in source code or binary form for use
- * in connection with the web services and APIs provided by Parse.
- *
- * As with any software that integrates with the Parse platform, your use of
- * this software is subject to the Parse Terms of Service
- * [https://www.parse.com/about/terms]. This copyright notice shall be
- * included in all copies or substantial portions of the software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
- * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
- * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
- * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- *
- */
-
-#import
-
-#import
-
-#import
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-@class PFSignUpViewController;
-@class PFUser;
-@protocol PFLogInViewControllerDelegate;
-
-/**
- The `PFLogInViewController` class presents and manages a standard authentication interface for logging in a `PFUser`.
- */
-@interface PFLogInViewController : UIViewController
-
-///--------------------------------------
-/// @name Configuring Log In Elements
-///--------------------------------------
-
-/**
- A bitmask specifying the log in elements which are enabled in the view.
-
- @see PFLogInFields
- */
-@property (nonatomic, assign) PFLogInFields fields;
-
-
-/**
- The log in view. It contains all the enabled log in elements.
-
- @see PFLogInView
- */
-@property (nullable, nonatomic, strong, readonly) PFLogInView *logInView;
-
-///--------------------------------------
-/// @name Configuring Log In Behaviors
-///--------------------------------------
-
-/**
- The delegate that responds to the control events of `PFLogInViewController`.
-
- @see PFLogInViewControllerDelegate
- */
-@property (nullable, nonatomic, weak) id delegate;
-
-/**
- The facebook permissions that Facebook log in requests for.
-
- If unspecified, the default is basic facebook permissions.
- */
-@property (nullable, nonatomic, copy) NSArray PF_GENERIC(NSString *)*facebookPermissions;
-
-/**
- The sign up controller if sign up is enabled.
-
- Use this to configure the sign up view, and the transition animation to the sign up view.
- The default is a sign up view with a username, a password, a dismiss button and a sign up button.
- */
-@property (nullable, nonatomic, strong) PFSignUpViewController *signUpController;
-
-/**
- Whether to prompt for the email as username on the login view.
-
- If set to `YES`, we'll prompt for the email in the username field.
- This property value propagates to the attached `signUpController`.
- By default, this is set to `NO`.
- */
-@property (nonatomic, assign) BOOL emailAsUsername;
-
-@end
-
-///--------------------------------------
-/// @name Notifications
-///--------------------------------------
-
-/**
- The notification is posted immediately after the log in succeeds.
- */
-extern NSString *const PFLogInSuccessNotification;
-
-/**
- The notification is posted immediately after the log in fails.
- If the delegate prevents the log in from starting, the notification is not sent.
- */
-extern NSString *const PFLogInFailureNotification;
-
-/**
- The notification is posted immediately after the log in is cancelled.
- */
-extern NSString *const PFLogInCancelNotification;
-
-///--------------------------------------
-/// @name PFLogInViewControllerDelegate
-///--------------------------------------
-
-/**
- The `PFLogInViewControllerDelegate` protocol defines methods a delegate of a `PFLogInViewController` should implement.
- All methods of this protocol are optional.
- */
-@protocol PFLogInViewControllerDelegate
-
-@optional
-
-///--------------------------------------
-/// @name Customizing Behavior
-///--------------------------------------
-
-/**
- Sent to the delegate to determine whether the log in request should be submitted to the server.
-
- @param logInController The login view controller that is requesting the data.
- @param username the username the user tries to log in with.
- @param password the password the user tries to log in with.
-
- @return A `BOOL` indicating whether the log in should proceed.
- */
-- (BOOL)logInViewController:(PFLogInViewController *)logInController
-shouldBeginLogInWithUsername:(NSString *)username
- password:(NSString *)password;
-
-///--------------------------------------
-/// @name Responding to Actions
-///--------------------------------------
-
-/**
- Sent to the delegate when a `PFUser` is logged in.
-
- @param logInController The login view controller where login finished.
- @param user `PFUser` object that is a result of the login.
- */
-- (void)logInViewController:(PFLogInViewController *)logInController didLogInUser:(PFUser *)user;
-
-/**
- Sent to the delegate when the log in attempt fails.
-
- If you implement this method, PFLoginViewController will not automatically show its default
- login failure alert view. Instead, you should show your custom alert view in your implementation.
-
- @param logInController The login view controller where login failed.
- @param error `NSError` object representing the error that occured.
- */
-- (void)logInViewController:(PFLogInViewController *)logInController didFailToLogInWithError:(nullable NSError *)error;
-
-/**
- Sent to the delegate when the log in screen is cancelled.
-
- @param logInController The login view controller where login was cancelled.
- */
-- (void)logInViewControllerDidCancelLogIn:(PFLogInViewController *)logInController;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/iOS/ParseUI.framework/Headers/PFProductTableViewController.h b/iOS/ParseUI.framework/Headers/PFProductTableViewController.h
deleted file mode 100644
index 6ee0849..0000000
--- a/iOS/ParseUI.framework/Headers/PFProductTableViewController.h
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * Copyright (c) 2014, Parse, LLC. All rights reserved.
- *
- * You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
- * copy, modify, and distribute this software in source code or binary form for use
- * in connection with the web services and APIs provided by Parse.
- *
- * As with any software that integrates with the Parse platform, your use of
- * this software is subject to the Parse Terms of Service
- * [https://www.parse.com/about/terms]. This copyright notice shall be
- * included in all copies or substantial portions of the software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
- * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
- * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
- * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- *
- */
-
-#import
-
-#import
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- `PFProductTableViewController` displays in-app purchase products stored on Parse.
- In addition to setting up in-app purchases in iTunes Connect, the app developer needs
- to register product information on Parse, in the Product class.
- */
-@interface PFProductTableViewController : PFQueryTableViewController
-
-/**
- Initializes a product table view controller.
-
- @param style The UITableViewStyle for the table
-
- @return An initialized `PFProductTableViewController` object or `nil` if the object couldn't be created.
- */
-- (instancetype)initWithStyle:(UITableViewStyle)style NS_DESIGNATED_INITIALIZER;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/iOS/ParseUI.framework/Headers/PFPurchaseTableViewCell.h b/iOS/ParseUI.framework/Headers/PFPurchaseTableViewCell.h
deleted file mode 100644
index 88e0e85..0000000
--- a/iOS/ParseUI.framework/Headers/PFPurchaseTableViewCell.h
+++ /dev/null
@@ -1,68 +0,0 @@
-/*
- * Copyright (c) 2014, Parse, LLC. All rights reserved.
- *
- * You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
- * copy, modify, and distribute this software in source code or binary form for use
- * in connection with the web services and APIs provided by Parse.
- *
- * As with any software that integrates with the Parse platform, your use of
- * this software is subject to the Parse Terms of Service
- * [https://www.parse.com/about/terms]. This copyright notice shall be
- * included in all copies or substantial portions of the software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
- * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
- * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
- * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- *
- */
-
-#import
-
-#import
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- An enum that represents states of the `PFPurchaseTableViewCell`.
- @see `PFPurchaseTableViewCell`
- */
-typedef NS_ENUM(uint8_t, PFPurchaseTableViewCellState) {
- /** Normal state of the cell. */
- PFPurchaseTableViewCellStateNormal = 0,
- /** Downloading state of the cell. */
- PFPurchaseTableViewCellStateDownloading,
- /** State of the cell, when the product was downloaded. */
- PFPurchaseTableViewCellStateDownloaded
-};
-
-/**
- `PFPurchaseTableViewCell` is a subclass `PFTableViewCell` that is used to show
- products in a `PFProductTableViewController`.
-
- @see `PFProductTableViewController`
- */
-@interface PFPurchaseTableViewCell : PFTableViewCell
-
-/**
- State of the cell.
- @see `PFPurchaseTableViewCellState`
- */
-@property (nonatomic, assign) PFPurchaseTableViewCellState state;
-
-/**
- Label where price of the product is displayed.
- */
-@property (nullable, nonatomic, strong, readonly) UILabel *priceLabel;
-
-/**
- Progress view that is shown, when the product is downloading.
- */
-@property (nullable, nonatomic, strong, readonly) UIProgressView *progressView;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/iOS/ParseUI.framework/Headers/PFQueryCollectionViewController.h b/iOS/ParseUI.framework/Headers/PFQueryCollectionViewController.h
deleted file mode 100644
index 1c0b73a..0000000
--- a/iOS/ParseUI.framework/Headers/PFQueryCollectionViewController.h
+++ /dev/null
@@ -1,228 +0,0 @@
-/*
- * Copyright (c) 2014, Parse, LLC. All rights reserved.
- *
- * You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
- * copy, modify, and distribute this software in source code or binary form for use
- * in connection with the web services and APIs provided by Parse.
- *
- * As with any software that integrates with the Parse platform, your use of
- * this software is subject to the Parse Terms of Service
- * [https://www.parse.com/about/terms]. This copyright notice shall be
- * included in all copies or substantial portions of the software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
- * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
- * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
- * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- *
- */
-
-#import
-
-#import
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-@class BFTask PF_GENERIC(__covariant BFGenericType);
-@class PFCollectionViewCell;
-@class PFObject;
-@class PFQuery;
-
-/**
- This class allows you to think about a one-to-one mapping between a `PFObject` and a `UICollectionViewCell`,
- rather than having to juggle index paths.
-
- You also get the following features out of the box:
-
- - Pagination with a cell that can be tapped to load the next page.
- - Pull-to-refresh collection view header.
- - Automatic downloading and displaying of remote images in cells.
- - Loading screen, shown before any data is loaded.
- - Automatic loading and management of the objects array.
- - Various methods that can be overridden to customize behavior at major events in the data cycle.
-
- @see `PFCollectionViewCell`
- */
-@interface PFQueryCollectionViewController : UICollectionViewController
-
-/**
- The class name of the `PFObject` this collection will use as a datasource.
- */
-@property (nullable, nonatomic, copy) IBInspectable NSString *parseClassName;
-
-/**
- Whether the collection should use the default loading view. Default - `YES`.
- */
-@property (nonatomic, assign) IBInspectable BOOL loadingViewEnabled;
-
-/**
- Whether the collection should use the built-in pull-to-refresh feature. Default - `YES`.
- */
-@property (nonatomic, assign) IBInspectable BOOL pullToRefreshEnabled;
-
-/**
- Whether the collection should use the built-in pagination feature. Default - `YES`.
- */
-@property (nonatomic, assign) IBInspectable BOOL paginationEnabled;
-
-/**
- The number of objects to show per page. Default - `25`.
- */
-@property (nonatomic, assign) IBInspectable NSUInteger objectsPerPage;
-
-/**
- Whether the collection is actively loading new data from the server.
- */
-@property (nonatomic, assign, getter=isLoading) BOOL loading;
-
-///--------------------------------------
-/// @name Creating a PFQueryCollectionViewController
-///--------------------------------------
-
-/**
- Initializes a view controller with a `UICollectionViewFlowLayout` and a class name
- of `PFObject` that will be associated with this collection.
-
- @param className The class name of the instances of `PFObject` that this table will display.
-
- @return An initialized `PFQueryCollectionViewController` object or `nil` if the object couldn't be created.
- */
-- (instancetype)initWithClassName:(nullable NSString *)className;
-
-/**
- Initializes a view controller with a class name of `PFObject` that will be associated with this collection.
-
- @param layout Layout for collection view to use.
- @param className The class name of the instances of `PFObject` that this table will display.
-
- @return An initialized `PFQueryCollectionViewController` object or `nil` if the object couldn't be created.
- */
-- (instancetype)initWithCollectionViewLayout:(UICollectionViewLayout *)layout
- className:(nullable NSString *)className NS_DESIGNATED_INITIALIZER;
-
-///--------------------------------------
-/// @name Responding to Events
-///--------------------------------------
-
-/**
- Called when objects will be loaded from Parse. If you override this method, you must
- call [super objectsWillLoad] in your implementation.
- */
-- (void)objectsWillLoad NS_REQUIRES_SUPER;
-
-/**
- Called when objects have loaded from Parse. If you override this method, you must
- call [super objectsDidLoad:] in your implementation.
- @param error The Parse error from running the PFQuery, if there was any.
- */
-- (void)objectsDidLoad:(nullable NSError *)error NS_REQUIRES_SUPER;
-
-///--------------------------------------
-/// @name Accessing Results
-///--------------------------------------
-
-/**
- The array of instances of `PFObject` that is used as a data source.
- */
-@property (nonatomic, copy, readonly) NSArray PF_GENERIC(__kindof PFObject *)*objects;
-
-/**
- Returns an object at a particular indexPath.
-
- The default impementation returns the object at `indexPath.item`.
- If you want to return objects in a different indexPath order, like for sections, override this method.
-
- @param indexPath An instance of `NSIndexPath`.
-
- @return The object at the specified indexPath.
- */
-- (nullable PFObject *)objectAtIndexPath:(nullable NSIndexPath *)indexPath;
-
-/**
- Removes an object at the specified index path, animated.
- */
-- (void)removeObjectAtIndexPath:(nullable NSIndexPath *)indexPath;
-
-/**
- Removes all objects at the specified index paths, animated.
- */
-- (void)removeObjectsAtIndexPaths:(nullable NSArray PF_GENERIC(NSIndexPath *)*)indexes;
-
-///--------------------------------------
-/// @name Loading Data
-///--------------------------------------
-
-/**
- Clears the collection view and loads the first page of objects.
-
- @return An awaitable task that completes when the reload succeeds
- */
-- (BFTask PF_GENERIC(NSArray<__kindof PFObject *>*)*)loadObjects;
-
-/**
- Loads the objects of the `PFObject.parseClassName` at the specified page and appends it to the
- objects already loaded and refreshes the collection.
-
- @param page The page of objects to load.
- @param clear Whether to clear the collection view after receiving the objects.
-
- @return An awaitable task that completes when the reload succeeds
- */
-- (BFTask PF_GENERIC(NSArray<__kindof PFObject *>*)*)loadObjects:(NSInteger)page clear:(BOOL)clear;
-
-/**
- Loads the next page of objects, appends to table, and refreshes.
- */
-- (void)loadNextPage;
-
-/**
- Clears the collection view of all objects.
- */
-- (void)clear;
-
-///--------------------------------------
-/// @name Querying
-///--------------------------------------
-
-/**
- Override to construct your own custom `PFQuery` to get the objects.
-
- @return An instance of `PFQuery` that `-loadObjects` method will use to the objects for this collection.
- */
-- (PFQuery *)queryForCollection;
-
-///--------------------------------------
-/// @name Data Source Methods
-///--------------------------------------
-
-/**
- Override this method to customize each cell given a `PFObject` that is loaded.
-
- @warning The cell should inherit from `PFCollectionViewCell` which is a subclass of `UICollectionViewCell`.
-
- @param collectionView The collection view object associated with this controller.
- @param indexPath The indexPath of the cell.
- @param object The `PFObject` that is associated with the cell.
-
- @return The cell that represents this object.
- */
-- (nullable PFCollectionViewCell *)collectionView:(UICollectionView *)collectionView
- cellForItemAtIndexPath:(NSIndexPath *)indexPath
- object:(nullable PFObject *)object;
-
-/**
- Override this method to customize the view that allows the user to load the
- next page when pagination is turned on.
-
- @param collectionView The collection view object associated with this controller.
-
- @return The view that allows the user to paginate.
- */
-- (nullable UICollectionReusableView *)collectionViewReusableViewForNextPageAction:(UICollectionView *)collectionView;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/iOS/ParseUI.framework/Headers/PFQueryTableViewController.h b/iOS/ParseUI.framework/Headers/PFQueryTableViewController.h
deleted file mode 100644
index 917b102..0000000
--- a/iOS/ParseUI.framework/Headers/PFQueryTableViewController.h
+++ /dev/null
@@ -1,259 +0,0 @@
-/*
- * Copyright (c) 2014, Parse, LLC. All rights reserved.
- *
- * You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
- * copy, modify, and distribute this software in source code or binary form for use
- * in connection with the web services and APIs provided by Parse.
- *
- * As with any software that integrates with the Parse platform, your use of
- * this software is subject to the Parse Terms of Service
- * [https://www.parse.com/about/terms]. This copyright notice shall be
- * included in all copies or substantial portions of the software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
- * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
- * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
- * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- *
- */
-
-#import
-
-#import
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-@class BFTask PF_GENERIC(__covariant BFGenericType);
-@class PFObject;
-@class PFQuery;
-@class PFTableViewCell;
-
-/**
- This class allows you to think about a one-to-one mapping between a `PFObject` and a `UITableViewCell`,
- rather than having to juggle index paths.
-
- You also get the following features out of the box:
-
- - Pagination with a cell that can be tapped to load the next page.
- - Pull-to-refresh table view header.
- - Automatic downloading and displaying of remote images in cells.
- - Loading screen, shown before any data is loaded.
- - Automatic loading and management of the objects array.
- - Various methods that can be overridden to customize behavior at major events in the data cycle.
- */
-@interface PFQueryTableViewController : UITableViewController
-
-///--------------------------------------
-/// @name Creating a PFQueryTableViewController
-///--------------------------------------
-
-/**
- Initializes with a class name of the `PFObject` that will be associated with this table.
-
- @param style The UITableViewStyle for the table
- @param className The class name of the instances of `PFObject` that this table will display.
-
- @return An initialized `PFQueryTableViewController` object or `nil` if the object couldn't be created.
- */
-- (instancetype)initWithStyle:(UITableViewStyle)style
- className:(nullable NSString *)className NS_DESIGNATED_INITIALIZER;
-
-/**
- Initializes with a class name of the PFObjects that will be associated with this table.
-
- @param className The class name of the instances of `PFObject` that this table will display.
-
- @return An initialized `PFQueryTableViewController` object or `nil` if the object couldn't be created.
- */
-- (instancetype)initWithClassName:(nullable NSString *)className;
-
-///--------------------------------------
-/// @name Configuring Behavior
-///--------------------------------------
-
-/**
- The class name of the `PFObject` this table will use as a datasource.
- */
-@property (nullable, nonatomic, copy) IBInspectable NSString *parseClassName;
-
-/**
- The key to use to display for the cell text label.
-
- This won't apply if you override `-tableView:cellForRowAtIndexPath:object:`
- */
-@property (nullable, nonatomic, copy) IBInspectable NSString *textKey;
-
-/**
- The key to use to display for the cell image view.
-
- This won't apply if you override `-tableView:cellForRowAtIndexPath:object:`
- */
-@property (nullable, nonatomic, copy) IBInspectable NSString *imageKey;
-
-/**
- The image to use as a placeholder for the cell images.
-
- This won't apply if you override `-tableView:cellForRowAtIndexPath:object:`
- */
-@property (nullable, nonatomic, strong) IBInspectable UIImage *placeholderImage;
-
-/**
- Whether the table should use the default loading view. Default - `YES`.
- */
-@property (nonatomic, assign) IBInspectable BOOL loadingViewEnabled;
-
-/**
- Whether the table should use the built-in pull-to-refresh feature. Default - `YES`.
- */
-@property (nonatomic, assign) IBInspectable BOOL pullToRefreshEnabled;
-
-/**
- Whether the table should use the built-in pagination feature. Default - `YES`.
- */
-@property (nonatomic, assign) IBInspectable BOOL paginationEnabled;
-
-/**
- The number of objects to show per page. Default - `25`.
- */
-@property (nonatomic, assign) IBInspectable NSUInteger objectsPerPage;
-
-/**
- Whether the table is actively loading new data from the server.
- */
-@property (nonatomic, assign, getter=isLoading) BOOL loading;
-
-///--------------------------------------
-/// @name Responding to Events
-///--------------------------------------
-
-/**
- Called when objects will loaded from Parse. If you override this method, you must
- call [super objectsWillLoad] in your implementation.
- */
-- (void)objectsWillLoad;
-
-/**
- Called when objects have loaded from Parse. If you override this method, you must
- call [super objectsDidLoad:] in your implementation.
- @param error The Parse error from running the PFQuery, if there was any.
- */
-- (void)objectsDidLoad:(nullable NSError *)error;
-
-///--------------------------------------
-/// @name Accessing Results
-///--------------------------------------
-
-/**
- The array of instances of `PFObject` that is used as a data source.
- */
-@property (nullable, nonatomic, copy, readonly) NSArray PF_GENERIC(__kindof PFObject *)*objects;
-
-/**
- Returns an object at a particular indexPath.
-
- The default impementation returns the object at `indexPath.row`.
- If you want to return objects in a different indexPath order, like for sections, override this method.
-
- @param indexPath The indexPath.
-
- @return The object at the specified index
- */
-- (nullable PFObject *)objectAtIndexPath:(nullable NSIndexPath *)indexPath;
-
-/**
- Removes an object at the specified index path, animated.
- */
-- (void)removeObjectAtIndexPath:(nullable NSIndexPath *)indexPath;
-
-/**
- Removes an object at the specified index path, with or without animation.
- */
-- (void)removeObjectAtIndexPath:(nullable NSIndexPath *)indexPath animated:(BOOL)animated;
-
-/**
- Removes all objects at the specified index paths, animated.
- */
-- (void)removeObjectsAtIndexPaths:(nullable NSArray PF_GENERIC(NSIndexPath *)*)indexPaths;
-
-/**
- Removes all objects at the specified index paths, with or without animation.
- */
-- (void)removeObjectsAtIndexPaths:(nullable NSArray PF_GENERIC(NSIndexPath *)*)indexPaths animated:(BOOL)animated;
-
-/**
- Clears the table of all objects.
- */
-- (void)clear;
-
-/**
- Clears the table and loads the first page of objects.
-
- @return An awaitable task that completes when the reload succeeds
- */
-- (BFTask PF_GENERIC(NSArray<__kindof PFObject *> *)*)loadObjects;
-
-/**
- Loads the objects of the className at the specified page and appends it to the
- objects already loaded and refreshes the table.
-
- @param page The page of objects to load.
- @param clear Whether to clear the table after receiving the objects
-
- @return An awaitable task that completes when the reload succeeds
- */
-- (BFTask PF_GENERIC(NSArray<__kindof PFObject *> *)*)loadObjects:(NSInteger)page clear:(BOOL)clear;
-
-/**
- Loads the next page of objects, appends to table, and refreshes.
- */
-- (void)loadNextPage;
-
-///--------------------------------------
-/// @name Querying
-///--------------------------------------
-
-/**
- Override to construct your own custom PFQuery to get the objects.
- @result PFQuery that loadObjects will use to the objects for this table.
- */
-- (PFQuery *)queryForTable;
-
-///--------------------------------------
-/// @name Data Source Methods
-///--------------------------------------
-
-/**
- Override this method to customize each cell given a PFObject that is loaded.
-
- If you don't override this method, it will use a default style cell and display either
- the first data key from the object, or it will display the key as specified with `textKey`, `imageKey`.
-
- @warning The cell should inherit from `PFTableViewCell` which is a subclass of `UITableViewCell`.
-
- @param tableView The table view object associated with this controller.
- @param indexPath The indexPath of the cell.
- @param object The PFObject that is associated with the cell.
-
- @return The cell that represents this object.
- */
-- (nullable PFTableViewCell *)tableView:(UITableView *)tableView
- cellForRowAtIndexPath:(NSIndexPath *)indexPath
- object:(nullable PFObject *)object;
-
-/**
- Override this method to customize the cell that allows the user to load the
- next page when pagination is turned on.
-
- @param tableView The table view object associated with this controller.
- @param indexPath The indexPath of the cell.
-
- @return The cell that allows the user to paginate.
- */
-- (nullable PFTableViewCell *)tableView:(UITableView *)tableView cellForNextPageAtIndexPath:(NSIndexPath *)indexPath;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/iOS/ParseUI.framework/Headers/PFSignUpView.h b/iOS/ParseUI.framework/Headers/PFSignUpView.h
deleted file mode 100644
index e203515..0000000
--- a/iOS/ParseUI.framework/Headers/PFSignUpView.h
+++ /dev/null
@@ -1,156 +0,0 @@
-/*
- * Copyright (c) 2014, Parse, LLC. All rights reserved.
- *
- * You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
- * copy, modify, and distribute this software in source code or binary form for use
- * in connection with the web services and APIs provided by Parse.
- *
- * As with any software that integrates with the Parse platform, your use of
- * this software is subject to the Parse Terms of Service
- * [https://www.parse.com/about/terms]. This copyright notice shall be
- * included in all copies or substantial portions of the software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
- * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
- * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
- * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- *
- */
-
-#import
-
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- `PFSignUpFields` bitmask specifies the sign up elements which are enabled in the view.
-
- @see PFSignUpViewController
- @see PFSignUpView
- */
-typedef NS_OPTIONS(NSInteger, PFSignUpFields) {
- /** Username and password fields. */
- PFSignUpFieldsUsernameAndPassword = 0,
- /** Email field. */
- PFSignUpFieldsEmail = 1 << 0,
- /** This field can be used for something else. */
- PFSignUpFieldsAdditional = 1 << 1,
- /** Sign Up Button */
- PFSignUpFieldsSignUpButton = 1 << 2,
- /** Dismiss Button */
- PFSignUpFieldsDismissButton = 1 << 3,
- /** Default value. Combines Username, Password, Email, Sign Up and Dismiss Buttons. */
- PFSignUpFieldsDefault = (PFSignUpFieldsUsernameAndPassword |
- PFSignUpFieldsEmail |
- PFSignUpFieldsSignUpButton |
- PFSignUpFieldsDismissButton)
-};
-
-/**
- `PFSignUpFields`'s accessibity identifiers
-
- @see PFSignUpView
- */
-extern NSString *const PFSignUpViewUsernameFieldAccessibilityIdentifier;
-extern NSString *const PFSignUpViewEmailFieldAccessibilityIdentifier;
-extern NSString *const PFSignUpViewPasswordFieldAccessibilityIdentifier;
-extern NSString *const PFSignUpViewAdditionalFieldAccessibilityIdentifier;
-extern NSString *const PFSignUpViewSignUpButtonAccessibilityIdentifier;
-extern NSString *const PFSignUpViewDismissButtonAccessibilityIdentifier;
-
-@class PFTextField;
-
-/**
- The `PFSignUpView` class provides a standard sign up interface for authenticating a `PFUser`.
- */
-@interface PFSignUpView : UIScrollView
-
-///--------------------------------------
-/// @name Creating SignUp View
-///--------------------------------------
-
-/**
- Initializes the view with the specified sign up elements.
-
- @param fields A bitmask specifying the sign up elements which are enabled in the view
-
- @return An initialized `PFSignUpView` object or `nil` if the object couldn't be created.
-
- @see PFSignUpFields
- */
-- (instancetype)initWithFields:(PFSignUpFields)fields;
-
-/**
- The view controller that will present this view.
-
- Used to lay out elements correctly when the presenting view controller has translucent elements.
- */
-@property (nullable, nonatomic, weak) UIViewController *presentingViewController;
-
-///--------------------------------------
-/// @name Customizing the Logo
-///--------------------------------------
-
-/**
- The logo. By default, it is the Parse logo.
- */
-@property (nullable, nonatomic, strong) UIView *logo;
-
-///--------------------------------------
-/// @name Configure Username Behaviour
-///--------------------------------------
-
-/**
- If email should be used to log in, instead of username
-
- By default, this is set to `NO`.
- */
-@property (nonatomic, assign) BOOL emailAsUsername;
-
-///--------------------------------------
-/// @name Sign Up Elements
-///--------------------------------------
-
-/**
- The bitmask which specifies the enabled sign up elements in the view
- */
-@property (nonatomic, assign, readonly) PFSignUpFields fields;
-
-/**
- The username text field.
- */
-@property (nullable, nonatomic, strong, readonly) PFTextField *usernameField;
-
-/**
- The password text field.
- */
-@property (nullable, nonatomic, strong, readonly) PFTextField *passwordField;
-
-/**
- The email text field. It is `nil` if the element is not enabled.
- */
-@property (nullable, nonatomic, strong, readonly) PFTextField *emailField;
-
-/**
- The additional text field. It is `nil` if the element is not enabled.
-
- This field is intended to be customized.
- */
-@property (nullable, nonatomic, strong, readonly) PFTextField *additionalField;
-
-/**
- The sign up button. It is `nil` if the element is not enabled.
- */
-@property (nullable, nonatomic, strong, readonly) UIButton *signUpButton;
-
-/**
- The dismiss button. It is `nil` if the element is not enabled.
- */
-@property (nullable, nonatomic, strong, readonly) UIButton *dismissButton;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/iOS/ParseUI.framework/Headers/PFSignUpViewController.h b/iOS/ParseUI.framework/Headers/PFSignUpViewController.h
deleted file mode 100644
index e9baf62..0000000
--- a/iOS/ParseUI.framework/Headers/PFSignUpViewController.h
+++ /dev/null
@@ -1,161 +0,0 @@
-/*
- * Copyright (c) 2014, Parse, LLC. All rights reserved.
- *
- * You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
- * copy, modify, and distribute this software in source code or binary form for use
- * in connection with the web services and APIs provided by Parse.
- *
- * As with any software that integrates with the Parse platform, your use of
- * this software is subject to the Parse Terms of Service
- * [https://www.parse.com/about/terms]. This copyright notice shall be
- * included in all copies or substantial portions of the software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
- * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
- * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
- * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- *
- */
-
-#import
-
-#import
-
-#import
-#import
-
-@class PFUser;
-@protocol PFSignUpViewControllerDelegate;
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- The `PFSignUpViewController` class that presents and manages
- a standard authentication interface for signing up a `PFUser`.
- */
-@interface PFSignUpViewController : UIViewController
-
-///--------------------------------------
-/// @name Configuring Sign Up Elements
-///--------------------------------------
-
-/**
- A bitmask specifying the log in elements which are enabled in the view.
-
- @see PFSignUpFields
- */
-@property (nonatomic, assign) PFSignUpFields fields;
-
-/**
- The sign up view. It contains all the enabled log in elements.
-
- @see PFSignUpView
- */
-@property (nullable, nonatomic, strong, readonly) PFSignUpView *signUpView;
-
-///--------------------------------------
-/// @name Configuring Sign Up Behaviors
-///--------------------------------------
-
-/**
- The delegate that responds to the control events of `PFSignUpViewController`.
-
- @see PFSignUpViewControllerDelegate
- */
-@property (nullable, nonatomic, weak) id delegate;
-
-/**
- Minimum required password length for user signups, defaults to `0`.
- */
-@property (nonatomic, assign) NSUInteger minPasswordLength;
-
-/**
- Whether to use the email as username on the attached `signUpView`.
-
- If set to `YES`, we'll hide the email field, prompt for the email in
- the username field, and save the email into both username and email
- fields on the new `PFUser` object. By default, this is set to `NO`.
- */
-@property (nonatomic, assign) BOOL emailAsUsername;
-
-@end
-
-///--------------------------------------
-/// @name Notifications
-///--------------------------------------
-
-/**
- The notification is posted immediately after the sign up succeeds.
- */
-extern NSString *const PFSignUpSuccessNotification;
-
-/**
- The notification is posted immediately after the sign up fails.
-
- If the delegate prevents the sign up to start, the notification is not sent.
- */
-extern NSString *const PFSignUpFailureNotification;
-
-/**
- The notification is posted immediately after the user cancels sign up.
- */
-extern NSString *const PFSignUpCancelNotification;
-
-///--------------------------------------
-/// @name PFSignUpViewControllerDelegate
-///--------------------------------------
-
-/**
- The `PFLogInViewControllerDelegate` protocol defines methods a delegate of a `PFSignUpViewController` should implement.
- All methods of this protocol are optional.
- */
-@protocol PFSignUpViewControllerDelegate
-
-@optional
-
-///--------------------------------------
-/// @name Customizing Behavior
-///--------------------------------------
-
-/**
- Sent to the delegate to determine whether the sign up request should be submitted to the server.
-
- @param signUpController The signup view controller that is requesting the data.
- @param info An `NSDictionary` instance which contains all sign up information that the user entered.
-
- @return A `BOOL` indicating whether the sign up should proceed.
- */
-- (BOOL)signUpViewController:(PFSignUpViewController *)signUpController shouldBeginSignUp:(NSDictionary PF_GENERIC(NSString *,NSString *)*)info;
-
-///--------------------------------------
-/// @name Responding to Actions
-///--------------------------------------
-
-/**
- Sent to the delegate when a `PFUser` is signed up.
-
- @param signUpController The signup view controller where signup finished.
- @param user `PFUser` object that is a result of the sign up.
- */
-- (void)signUpViewController:(PFSignUpViewController *)signUpController didSignUpUser:(PFUser *)user;
-
-/**
- Sent to the delegate when the sign up attempt fails.
-
- @param signUpController The signup view controller where signup failed.
- @param error `NSError` object representing the error that occured.
- */
-- (void)signUpViewController:(PFSignUpViewController *)signUpController didFailToSignUpWithError:(nullable NSError *)error;
-
-/**
- Sent to the delegate when the sign up screen is cancelled.
-
- @param signUpController The signup view controller where signup was cancelled.
- */
-- (void)signUpViewControllerDidCancelSignUp:(PFSignUpViewController *)signUpController;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/iOS/ParseUI.framework/Headers/PFTableViewCell.h b/iOS/ParseUI.framework/Headers/PFTableViewCell.h
deleted file mode 100644
index fe62c78..0000000
--- a/iOS/ParseUI.framework/Headers/PFTableViewCell.h
+++ /dev/null
@@ -1,46 +0,0 @@
-/*
- * Copyright (c) 2014, Parse, LLC. All rights reserved.
- *
- * You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
- * copy, modify, and distribute this software in source code or binary form for use
- * in connection with the web services and APIs provided by Parse.
- *
- * As with any software that integrates with the Parse platform, your use of
- * this software is subject to the Parse Terms of Service
- * [https://www.parse.com/about/terms]. This copyright notice shall be
- * included in all copies or substantial portions of the software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
- * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
- * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
- * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- *
- */
-
-#import
-
-#import
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- The `PFTableViewCell` class represents a table view cell which can download and display remote images stored on Parse.
-
- When used in a `PFQueryTableViewController` - downloading and
- displaying of the remote images are automatically managed by the controller.
- */
-@interface PFTableViewCell : UITableViewCell
-
-/**
- The imageView of the table view cell.
-
- @see `PFImageView`
- */
-@property (nullable, nonatomic, strong, readonly) PFImageView *imageView;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/iOS/ParseUI.framework/Headers/PFTextField.h b/iOS/ParseUI.framework/Headers/PFTextField.h
deleted file mode 100644
index 4e6f878..0000000
--- a/iOS/ParseUI.framework/Headers/PFTextField.h
+++ /dev/null
@@ -1,77 +0,0 @@
-/*
- * Copyright (c) 2014, Parse, LLC. All rights reserved.
- *
- * You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
- * copy, modify, and distribute this software in source code or binary form for use
- * in connection with the web services and APIs provided by Parse.
- *
- * As with any software that integrates with the Parse platform, your use of
- * this software is subject to the Parse Terms of Service
- * [https://www.parse.com/about/terms]. This copyright notice shall be
- * included in all copies or substantial portions of the software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
- * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
- * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
- * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- *
- */
-
-#import
-
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- `PFTextFieldSeparatorStyle` bitmask specifies the style of the separators,
- that should be used for a given `PFTextField`.
-
- @see PFTextField
- */
-typedef NS_OPTIONS(uint8_t, PFTextFieldSeparatorStyle){
- /** No separators are visible. */
- PFTextFieldSeparatorStyleNone = 0,
- /** Separator on top of the text field. */
- PFTextFieldSeparatorStyleTop = 1 << 0,
- /** Separator at the bottom of the text field. */
- PFTextFieldSeparatorStyleBottom = 1 << 1
-};
-
-/**
- `PFTextField` class serves as a stylable subclass of `UITextField`.
- It includes styles that are specific to `ParseUI` framework and allows advanced customization.
- */
-@interface PFTextField : UITextField
-
-/**
- Separator style bitmask that should be applied to this textfield.
-
- Default: `PFTextFieldSeparatorStyleNone`
-
- @see PFTextFieldSeparatorStyle
- */
-@property (nonatomic, assign) PFTextFieldSeparatorStyle separatorStyle;
-
-/**
- Color that should be used for the separators, if they are visible.
-
- Default: `227,227,227,1.0`.
- */
-@property (nullable, nonatomic, strong) UIColor *separatorColor UI_APPEARANCE_SELECTOR;
-
-/**
- This method is a convenience initializer that sets both `frame` and `separatorStyle` for an instance of `PFTextField.`
-
- @param frame The frame rectangle for the view, measured in points.
- @param separatorStyle Initial separator style to use.
-
- @return An initialized instance of `PFTextField` or `nil` if it couldn't be created.
- */
-- (instancetype)initWithFrame:(CGRect)frame separatorStyle:(PFTextFieldSeparatorStyle)separatorStyle;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/iOS/ParseUI.framework/Headers/ParseUI.h b/iOS/ParseUI.framework/Headers/ParseUI.h
deleted file mode 100644
index 788a4b0..0000000
--- a/iOS/ParseUI.framework/Headers/ParseUI.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * Copyright (c) 2014, Parse, LLC. All rights reserved.
- *
- * You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
- * copy, modify, and distribute this software in source code or binary form for use
- * in connection with the web services and APIs provided by Parse.
- *
- * As with any software that integrates with the Parse platform, your use of
- * this software is subject to the Parse Terms of Service
- * [https://www.parse.com/about/terms]. This copyright notice shall be
- * included in all copies or substantial portions of the software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
- * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
- * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
- * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- *
- */
-
-#import
-#import
-#import
-#import
-#import
-#import
-#import
-#import
-#import
-#import
-#import
-#import
-#import
diff --git a/iOS/ParseUI.framework/Headers/ParseUIConstants.h b/iOS/ParseUI.framework/Headers/ParseUIConstants.h
deleted file mode 100644
index edd970a..0000000
--- a/iOS/ParseUI.framework/Headers/ParseUIConstants.h
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- * Copyright (c) 2014, Parse, LLC. All rights reserved.
- *
- * You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
- * copy, modify, and distribute this software in source code or binary form for use
- * in connection with the web services and APIs provided by Parse.
- *
- * As with any software that integrates with the Parse platform, your use of
- * this software is subject to the Parse Terms of Service
- * [https://www.parse.com/about/terms]. This copyright notice shall be
- * included in all copies or substantial portions of the software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
- * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
- * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
- * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- *
- */
-
-#import
-#import
-
-#ifndef ParseUI_ParseUIConstants_h
-#define ParseUI_ParseUIConstants_h
-
-///--------------------------------------
-/// @name Deprecated Macros
-///--------------------------------------
-
-#ifndef PARSE_UI_DEPRECATED
-# ifdef __deprecated_msg
-# define PARSE_UI_DEPRECATED(_MSG) (deprecated(_MSG))
-# else
-# ifdef __deprecated
-# define PARSE_UI_DEPRECATED(_MSG) (deprecated)
-# else
-# define PARSE_UI_DEPRECATED(_MSG)
-# endif
-# endif
-#endif
-
-#endif
diff --git a/iOS/ParseUI.framework/Info.plist b/iOS/ParseUI.framework/Info.plist
deleted file mode 100644
index 4c91534..0000000
Binary files a/iOS/ParseUI.framework/Info.plist and /dev/null differ
diff --git a/iOS/ParseUI.framework/Modules/module.modulemap b/iOS/ParseUI.framework/Modules/module.modulemap
deleted file mode 100644
index 8bcc6b9..0000000
--- a/iOS/ParseUI.framework/Modules/module.modulemap
+++ /dev/null
@@ -1,6 +0,0 @@
-framework module ParseUI {
- umbrella header "ParseUI.h"
-
- export *
- module * { export * }
-}
diff --git a/iOS/ParseUI.framework/ParseUI b/iOS/ParseUI.framework/ParseUI
deleted file mode 100644
index 4eef377..0000000
Binary files a/iOS/ParseUI.framework/ParseUI and /dev/null differ
diff --git a/iOS/Podfile b/iOS/Podfile
new file mode 100644
index 0000000..bf2502e
--- /dev/null
+++ b/iOS/Podfile
@@ -0,0 +1,3 @@
+source 'https://github.com/CocoaPods/Specs.git'
+
+pod 'Parse'
diff --git a/iOS/Podfile.lock b/iOS/Podfile.lock
new file mode 100644
index 0000000..4b3a050
--- /dev/null
+++ b/iOS/Podfile.lock
@@ -0,0 +1,13 @@
+PODS:
+ - Bolts/Tasks (1.6.0)
+ - Parse (1.12.0):
+ - Bolts/Tasks (~> 1.5)
+
+DEPENDENCIES:
+ - Parse
+
+SPEC CHECKSUMS:
+ Bolts: f52a250053bb517ca874523c3913776359ab3def
+ Parse: de2c52a9a1421b91ae7594ab8ce191afd184f19b
+
+COCOAPODS: 0.39.0
diff --git a/iOS/Bolts.framework/Headers/BFCancellationToken.h b/iOS/Pods/Bolts/Bolts/Common/BFCancellationToken.h
similarity index 100%
rename from iOS/Bolts.framework/Headers/BFCancellationToken.h
rename to iOS/Pods/Bolts/Bolts/Common/BFCancellationToken.h
diff --git a/iOS/Pods/Bolts/Bolts/Common/BFCancellationToken.m b/iOS/Pods/Bolts/Bolts/Common/BFCancellationToken.m
new file mode 100644
index 0000000..d271c6c
--- /dev/null
+++ b/iOS/Pods/Bolts/Bolts/Common/BFCancellationToken.m
@@ -0,0 +1,141 @@
+/*
+ * Copyright (c) 2014, Facebook, Inc.
+ * All rights reserved.
+ *
+ * This source code is licensed under the BSD-style license found in the
+ * LICENSE file in the root directory of this source tree. An additional grant
+ * of patent rights can be found in the PATENTS file in the same directory.
+ *
+ */
+
+#import "BFCancellationToken.h"
+#import "BFCancellationTokenRegistration.h"
+
+@interface BFCancellationToken ()
+
+@property (nonatomic, assign, getter=isCancellationRequested) BOOL cancellationRequested;
+@property (nonatomic, strong) NSMutableArray *registrations;
+@property (nonatomic, strong) NSObject *lock;
+@property (nonatomic) BOOL disposed;
+
+@end
+
+@interface BFCancellationTokenRegistration (BFCancellationToken)
+
++ (instancetype)registrationWithToken:(BFCancellationToken *)token delegate:(BFCancellationBlock)delegate;
+
+- (void)notifyDelegate;
+
+@end
+
+@implementation BFCancellationToken
+
+#pragma mark - Initializer
+
+- (instancetype)init {
+ self = [super init];
+ if (!self) return nil;
+
+ _registrations = [NSMutableArray array];
+ _lock = [NSObject new];
+
+ return self;
+}
+
+#pragma mark - Custom Setters/Getters
+
+- (BOOL)isCancellationRequested {
+ @synchronized(self.lock) {
+ [self throwIfDisposed];
+ return _cancellationRequested;
+ }
+}
+
+- (void)cancel {
+ NSArray *registrations;
+ @synchronized(self.lock) {
+ [self throwIfDisposed];
+ if (_cancellationRequested) {
+ return;
+ }
+ [NSObject cancelPreviousPerformRequestsWithTarget:self selector:@selector(cancelPrivate) object:nil];
+ _cancellationRequested = YES;
+ registrations = [self.registrations copy];
+ }
+
+ [self notifyCancellation:registrations];
+}
+
+- (void)notifyCancellation:(NSArray *)registrations {
+ for (BFCancellationTokenRegistration *registration in registrations) {
+ [registration notifyDelegate];
+ }
+}
+
+- (BFCancellationTokenRegistration *)registerCancellationObserverWithBlock:(BFCancellationBlock)block {
+ @synchronized(self.lock) {
+ BFCancellationTokenRegistration *registration = [BFCancellationTokenRegistration registrationWithToken:self delegate:[block copy]];
+ [self.registrations addObject:registration];
+
+ return registration;
+ }
+}
+
+- (void)unregisterRegistration:(BFCancellationTokenRegistration *)registration {
+ @synchronized(self.lock) {
+ [self throwIfDisposed];
+ [self.registrations removeObject:registration];
+ }
+}
+
+// Delay on a non-public method to prevent interference with a user calling performSelector or
+// cancelPreviousPerformRequestsWithTarget on the public method
+- (void)cancelPrivate {
+ [self cancel];
+}
+
+- (void)cancelAfterDelay:(int)millis {
+ [self throwIfDisposed];
+ if (millis < -1) {
+ [NSException raise:NSInvalidArgumentException format:@"Delay must be >= -1"];
+ }
+
+ if (millis == 0) {
+ [self cancel];
+ return;
+ }
+
+ @synchronized(self.lock) {
+ [self throwIfDisposed];
+ [NSObject cancelPreviousPerformRequestsWithTarget:self selector:@selector(cancelPrivate) object:nil];
+ if (self.cancellationRequested) {
+ return;
+ }
+
+ if (millis != -1) {
+ double delay = (double)millis / 1000;
+ [self performSelector:@selector(cancelPrivate) withObject:nil afterDelay:delay];
+ }
+ }
+}
+
+- (void)dispose {
+ @synchronized(self.lock) {
+ if (self.disposed) {
+ return;
+ }
+ self.disposed = YES;
+ for (BFCancellationTokenRegistration *registration in self.registrations) {
+ [registration dispose];
+ }
+ [self.registrations removeAllObjects];
+ }
+}
+
+- (void)throwIfDisposed {
+ if (self.disposed) {
+ [NSException raise:NSInternalInconsistencyException format:@"Object already disposed"];
+ }
+}
+
+@end
diff --git a/iOS/Bolts.framework/Headers/BFCancellationTokenRegistration.h b/iOS/Pods/Bolts/Bolts/Common/BFCancellationTokenRegistration.h
similarity index 100%
rename from iOS/Bolts.framework/Headers/BFCancellationTokenRegistration.h
rename to iOS/Pods/Bolts/Bolts/Common/BFCancellationTokenRegistration.h
diff --git a/iOS/Pods/Bolts/Bolts/Common/BFCancellationTokenRegistration.m b/iOS/Pods/Bolts/Bolts/Common/BFCancellationTokenRegistration.m
new file mode 100644
index 0000000..cb40332
--- /dev/null
+++ b/iOS/Pods/Bolts/Bolts/Common/BFCancellationTokenRegistration.m
@@ -0,0 +1,75 @@
+/*
+ * Copyright (c) 2014, Facebook, Inc.
+ * All rights reserved.
+ *
+ * This source code is licensed under the BSD-style license found in the
+ * LICENSE file in the root directory of this source tree. An additional grant
+ * of patent rights can be found in the PATENTS file in the same directory.
+ *
+ */
+
+#import "BFCancellationTokenRegistration.h"
+
+#import "BFCancellationToken.h"
+
+@interface BFCancellationTokenRegistration ()
+
+@property (nonatomic, weak) BFCancellationToken *token;
+@property (nonatomic, strong) BFCancellationBlock cancellationObserverBlock;
+@property (nonatomic, strong) NSObject *lock;
+@property (nonatomic) BOOL disposed;
+
+@end
+
+@interface BFCancellationToken (BFCancellationTokenRegistration)
+
+- (void)unregisterRegistration:(BFCancellationTokenRegistration *)registration;
+
+@end
+
+@implementation BFCancellationTokenRegistration
+
++ (instancetype)registrationWithToken:(BFCancellationToken *)token delegate:(BFCancellationBlock)delegate {
+ BFCancellationTokenRegistration *registration = [BFCancellationTokenRegistration new];
+ registration.token = token;
+ registration.cancellationObserverBlock = delegate;
+ return registration;
+}
+
+- (instancetype)init {
+ self = [super init];
+ if (!self) return nil;
+
+ _lock = [NSObject new];
+
+ return self;
+}
+
+- (void)dispose {
+ @synchronized(self.lock) {
+ if (self.disposed) {
+ return;
+ }
+ self.disposed = YES;
+ }
+
+ BFCancellationToken *token = self.token;
+ if (token != nil) {
+ [token unregisterRegistration:self];
+ self.token = nil;
+ }
+ self.cancellationObserverBlock = nil;
+}
+
+- (void)notifyDelegate {
+ @synchronized(self.lock) {
+ [self throwIfDisposed];
+ self.cancellationObserverBlock();
+ }
+}
+
+- (void)throwIfDisposed {
+ NSAssert(!self.disposed, @"Object already disposed");
+}
+
+@end
diff --git a/iOS/Bolts.framework/Headers/BFCancellationTokenSource.h b/iOS/Pods/Bolts/Bolts/Common/BFCancellationTokenSource.h
similarity index 100%
rename from iOS/Bolts.framework/Headers/BFCancellationTokenSource.h
rename to iOS/Pods/Bolts/Bolts/Common/BFCancellationTokenSource.h
diff --git a/iOS/Pods/Bolts/Bolts/Common/BFCancellationTokenSource.m b/iOS/Pods/Bolts/Bolts/Common/BFCancellationTokenSource.m
new file mode 100644
index 0000000..947f725
--- /dev/null
+++ b/iOS/Pods/Bolts/Bolts/Common/BFCancellationTokenSource.m
@@ -0,0 +1,60 @@
+/*
+ * Copyright (c) 2014, Facebook, Inc.
+ * All rights reserved.
+ *
+ * This source code is licensed under the BSD-style license found in the
+ * LICENSE file in the root directory of this source tree. An additional grant
+ * of patent rights can be found in the PATENTS file in the same directory.
+ *
+ */
+
+#import "BFCancellationTokenSource.h"
+
+#import "BFCancellationToken.h"
+
+@interface BFCancellationToken (BFCancellationTokenSource)
+
+- (void)cancel;
+- (void)cancelAfterDelay:(int)millis;
+
+- (void)dispose;
+- (void)throwIfDisposed;
+
+@end
+
+@implementation BFCancellationTokenSource
+
+#pragma mark - Initializer
+
+- (instancetype)init {
+ self = [super init];
+ if (!self) return nil;
+
+ _token = [BFCancellationToken new];
+
+ return self;
+}
+
++ (instancetype)cancellationTokenSource {
+ return [BFCancellationTokenSource new];
+}
+
+#pragma mark - Custom Setters/Getters
+
+- (BOOL)isCancellationRequested {
+ return _token.isCancellationRequested;
+}
+
+- (void)cancel {
+ [_token cancel];
+}
+
+- (void)cancelAfterDelay:(int)millis {
+ [_token cancelAfterDelay:millis];
+}
+
+- (void)dispose {
+ [_token dispose];
+}
+
+@end
diff --git a/iOS/Bolts.framework/Headers/BFExecutor.h b/iOS/Pods/Bolts/Bolts/Common/BFExecutor.h
similarity index 100%
rename from iOS/Bolts.framework/Headers/BFExecutor.h
rename to iOS/Pods/Bolts/Bolts/Common/BFExecutor.h
diff --git a/iOS/Pods/Bolts/Bolts/Common/BFExecutor.m b/iOS/Pods/Bolts/Bolts/Common/BFExecutor.m
new file mode 100644
index 0000000..820faed
--- /dev/null
+++ b/iOS/Pods/Bolts/Bolts/Common/BFExecutor.m
@@ -0,0 +1,132 @@
+/*
+ * Copyright (c) 2014, Facebook, Inc.
+ * All rights reserved.
+ *
+ * This source code is licensed under the BSD-style license found in the
+ * LICENSE file in the root directory of this source tree. An additional grant
+ * of patent rights can be found in the PATENTS file in the same directory.
+ *
+ */
+
+#import "BFExecutor.h"
+
+#import
+
+/*!
+ Get the remaining stack-size of the current thread.
+
+ @param totalSize The total stack size of the current thread.
+
+ @return The remaining size, in bytes, available to the current thread.
+
+ @note This function cannot be inlined, as otherwise the internal implementation could fail to report the proper
+ remaining stack space.
+ */
+__attribute__((noinline)) static size_t remaining_stack_size(size_t *__nonnull restrict totalSize) {
+ pthread_t currentThread = pthread_self();
+
+ // NOTE: We must store stack pointers as uint8_t so that the pointer math is well-defined
+ uint8_t *endStack = pthread_get_stackaddr_np(currentThread);
+ *totalSize = pthread_get_stacksize_np(currentThread);
+
+ // NOTE: If the function is inlined, this value could be incorrect
+ uint8_t *frameAddr = __builtin_frame_address(0);
+
+ return (*totalSize) - (endStack - frameAddr);
+}
+
+@interface BFExecutor ()
+
+@property (nonatomic, copy) void(^block)(void(^block)());
+
+@end
+
+@implementation BFExecutor
+
+#pragma mark - Executor methods
+
++ (instancetype)defaultExecutor {
+ static BFExecutor *defaultExecutor = NULL;
+ static dispatch_once_t onceToken;
+ dispatch_once(&onceToken, ^{
+ defaultExecutor = [self executorWithBlock:^void(void(^block)()) {
+ // We prefer to run everything possible immediately, so that there is callstack information
+ // when debugging. However, we don't want the stack to get too deep, so if the remaining stack space
+ // is less than 10% of the total space, we dispatch to another GCD queue.
+ size_t totalStackSize = 0;
+ size_t remainingStackSize = remaining_stack_size(&totalStackSize);
+
+ if (remainingStackSize < (totalStackSize / 10)) {
+ dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), block);
+ } else {
+ @autoreleasepool {
+ block();
+ }
+ }
+ }];
+ });
+ return defaultExecutor;
+}
+
++ (instancetype)immediateExecutor {
+ static BFExecutor *immediateExecutor = NULL;
+ static dispatch_once_t onceToken;
+ dispatch_once(&onceToken, ^{
+ immediateExecutor = [self executorWithBlock:^void(void(^block)()) {
+ block();
+ }];
+ });
+ return immediateExecutor;
+}
+
++ (instancetype)mainThreadExecutor {
+ static BFExecutor *mainThreadExecutor = NULL;
+ static dispatch_once_t onceToken;
+ dispatch_once(&onceToken, ^{
+ mainThreadExecutor = [self executorWithBlock:^void(void(^block)()) {
+ if (![NSThread isMainThread]) {
+ dispatch_async(dispatch_get_main_queue(), block);
+ } else {
+ @autoreleasepool {
+ block();
+ }
+ }
+ }];
+ });
+ return mainThreadExecutor;
+}
+
++ (instancetype)executorWithBlock:(void(^)(void(^block)()))block {
+ return [[self alloc] initWithBlock:block];
+}
+
++ (instancetype)executorWithDispatchQueue:(dispatch_queue_t)queue {
+ return [self executorWithBlock:^void(void(^block)()) {
+ dispatch_async(queue, block);
+ }];
+}
+
++ (instancetype)executorWithOperationQueue:(NSOperationQueue *)queue {
+ return [self executorWithBlock:^void(void(^block)()) {
+ [queue addOperation:[NSBlockOperation blockOperationWithBlock:block]];
+ }];
+}
+
+#pragma mark - Initializer
+
+- (instancetype)initWithBlock:(void(^)(void(^block)()))block {
+ self = [super init];
+ if (!self) return nil;
+
+ _block = block;
+
+ return self;
+}
+
+#pragma mark - Execution
+
+- (void)execute:(void(^)())block {
+ self.block(block);
+}
+
+@end
diff --git a/iOS/Pods/Bolts/Bolts/Common/BFTask.h b/iOS/Pods/Bolts/Bolts/Common/BFTask.h
new file mode 100644
index 0000000..c8bf333
--- /dev/null
+++ b/iOS/Pods/Bolts/Bolts/Common/BFTask.h
@@ -0,0 +1,261 @@
+/*
+ * Copyright (c) 2014, Facebook, Inc.
+ * All rights reserved.
+ *
+ * This source code is licensed under the BSD-style license found in the
+ * LICENSE file in the root directory of this source tree. An additional grant
+ * of patent rights can be found in the PATENTS file in the same directory.
+ *
+ */
+
+#import
+
+#import
+
+NS_ASSUME_NONNULL_BEGIN
+
+/*!
+ Error domain used if there was multiple errors on .
+ */
+extern NSString *const BFTaskErrorDomain;
+
+/*!
+ An error code used for , if there were multiple errors.
+ */
+extern NSInteger const kBFMultipleErrorsError;
+
+/*!
+ An exception that is thrown if there was multiple exceptions on .
+ */
+extern NSString *const BFTaskMultipleExceptionsException;
+
+@class BFExecutor;
+@class BFTask;
+
+/*!
+ The consumer view of a Task. A BFTask has methods to
+ inspect the state of the task, and to add continuations to
+ be run once the task is complete.
+ */
+@interface BFTask<__covariant ResultType> : NSObject
+
+/*!
+ A block that can act as a continuation for a task.
+ */
+typedef __nullable id(^BFContinuationBlock)(BFTask *task);
+
+/*!
+ Creates a task that is already completed with the given result.
+ @param result The result for the task.
+ */
++ (instancetype)taskWithResult:(nullable ResultType)result;
+
+/*!
+ Creates a task that is already completed with the given error.
+ @param error The error for the task.
+ */
++ (instancetype)taskWithError:(NSError *)error;
+
+/*!
+ Creates a task that is already completed with the given exception.
+ @param exception The exception for the task.
+ */
++ (instancetype)taskWithException:(NSException *)exception;
+
+/*!
+ Creates a task that is already cancelled.
+ */
++ (instancetype)cancelledTask;
+
+/*!
+ Returns a task that will be completed (with result == nil) once
+ all of the input tasks have completed.
+ @param tasks An `NSArray` of the tasks to use as an input.
+ */
++ (instancetype)taskForCompletionOfAllTasks:(nullable NSArray *)tasks;
+
+/*!
+ Returns a task that will be completed once all of the input tasks have completed.
+ If all tasks complete successfully without being faulted or cancelled the result will be
+ an `NSArray` of all task results in the order they were provided.
+ @param tasks An `NSArray` of the tasks to use as an input.
+ */
++ (instancetype)taskForCompletionOfAllTasksWithResults:(nullable NSArray *)tasks;
+
+/*!
+ Returns a task that will be completed a certain amount of time in the future.
+ @param millis The approximate number of milliseconds to wait before the
+ task will be finished (with result == nil).
+ */
++ (instancetype)taskWithDelay:(int)millis;
+
+/*!
+ Returns a task that will be completed a certain amount of time in the future.
+ @param millis The approximate number of milliseconds to wait before the
+ task will be finished (with result == nil).
+ @param token The cancellation token (optional).
+ */
++ (instancetype)taskWithDelay:(int)millis cancellationToken:(nullable BFCancellationToken *)token;
+
+/*!
+ Returns a task that will be completed after the given block completes with
+ the specified executor.
+ @param executor A BFExecutor responsible for determining how the
+ continuation block will be run.
+ @param block The block to immediately schedule to run with the given executor.
+ @returns A task that will be completed after block has run.
+ If block returns a BFTask, then the task returned from
+ this method will not be completed until that task is completed.
+ */
++ (instancetype)taskFromExecutor:(BFExecutor *)executor withBlock:(nullable id (^)())block;
+
+// Properties that will be set on the task once it is completed.
+
+/*!
+ The result of a successful task.
+ */
+@property (nullable, nonatomic, strong, readonly) ResultType result;
+
+/*!
+ The error of a failed task.
+ */
+@property (nullable, nonatomic, strong, readonly) NSError *error;
+
+/*!
+ The exception of a failed task.
+ */
+@property (nullable, nonatomic, strong, readonly) NSException *exception;
+
+/*!
+ Whether this task has been cancelled.
+ */
+@property (nonatomic, assign, readonly, getter=isCancelled) BOOL cancelled;
+
+/*!
+ Whether this task has completed due to an error or exception.
+ */
+@property (nonatomic, assign, readonly, getter=isFaulted) BOOL faulted;
+
+/*!
+ Whether this task has completed.
+ */
+@property (nonatomic, assign, readonly, getter=isCompleted) BOOL completed;
+
+/*!
+ Enqueues the given block to be run once this task is complete.
+ This method uses a default execution strategy. The block will be
+ run on the thread where the previous task completes, unless the
+ the stack depth is too deep, in which case it will be run on a
+ dispatch queue with default priority.
+ @param block The block to be run once this task is complete.
+ @returns A task that will be completed after block has run.
+ If block returns a BFTask, then the task returned from
+ this method will not be completed until that task is completed.
+ */
+- (BFTask *)continueWithBlock:(BFContinuationBlock)block;
+
+/*!
+ Enqueues the given block to be run once this task is complete.
+ This method uses a default execution strategy. The block will be
+ run on the thread where the previous task completes, unless the
+ the stack depth is too deep, in which case it will be run on a
+ dispatch queue with default priority.
+ @param block The block to be run once this task is complete.
+ @param cancellationToken The cancellation token (optional).
+ @returns A task that will be completed after block has run.
+ If block returns a BFTask, then the task returned from
+ this method will not be completed until that task is completed.
+ */
+- (BFTask *)continueWithBlock:(BFContinuationBlock)block cancellationToken:(nullable BFCancellationToken *)cancellationToken;
+
+/*!
+ Enqueues the given block to be run once this task is complete.
+ @param executor A BFExecutor responsible for determining how the
+ continuation block will be run.
+ @param block The block to be run once this task is complete.
+ @returns A task that will be completed after block has run.
+ If block returns a BFTask, then the task returned from
+ this method will not be completed until that task is completed.
+ */
+- (BFTask *)continueWithExecutor:(BFExecutor *)executor withBlock:(BFContinuationBlock)block;
+/*!
+ Enqueues the given block to be run once this task is complete.
+ @param executor A BFExecutor responsible for determining how the
+ continuation block will be run.
+ @param block The block to be run once this task is complete.
+ @param cancellationToken The cancellation token (optional).
+ @returns A task that will be completed after block has run.
+ If block returns a BFTask, then the task returned from
+ his method will not be completed until that task is completed.
+ */
+- (BFTask *)continueWithExecutor:(BFExecutor *)executor
+ block:(BFContinuationBlock)block
+ cancellationToken:(nullable BFCancellationToken *)cancellationToken;
+
+/*!
+ Identical to continueWithBlock:, except that the block is only run
+ if this task did not produce a cancellation, error, or exception.
+ If it did, then the failure will be propagated to the returned
+ task.
+ @param block The block to be run once this task is complete.
+ @returns A task that will be completed after block has run.
+ If block returns a BFTask, then the task returned from
+ this method will not be completed until that task is completed.
+ */
+- (BFTask *)continueWithSuccessBlock:(BFContinuationBlock)block;
+
+/*!
+ Identical to continueWithBlock:, except that the block is only run
+ if this task did not produce a cancellation, error, or exception.
+ If it did, then the failure will be propagated to the returned
+ task.
+ @param block The block to be run once this task is complete.
+ @param cancellationToken The cancellation token (optional).
+ @returns A task that will be completed after block has run.
+ If block returns a BFTask, then the task returned from
+ this method will not be completed until that task is completed.
+ */
+- (BFTask *)continueWithSuccessBlock:(BFContinuationBlock)block cancellationToken:(nullable BFCancellationToken *)cancellationToken;
+
+/*!
+ Identical to continueWithExecutor:withBlock:, except that the block
+ is only run if this task did not produce a cancellation, error, or
+ exception. If it did, then the failure will be propagated to the
+ returned task.
+ @param executor A BFExecutor responsible for determining how the
+ continuation block will be run.
+ @param block The block to be run once this task is complete.
+ @returns A task that will be completed after block has run.
+ If block returns a BFTask, then the task returned from
+ this method will not be completed until that task is completed.
+ */
+- (BFTask *)continueWithExecutor:(BFExecutor *)executor withSuccessBlock:(BFContinuationBlock)block;
+
+/*!
+ Identical to continueWithExecutor:withBlock:, except that the block
+ is only run if this task did not produce a cancellation, error, or
+ exception. If it did, then the failure will be propagated to the
+ returned task.
+ @param executor A BFExecutor responsible for determining how the
+ continuation block will be run.
+ @param block The block to be run once this task is complete.
+ @param cancellationToken The cancellation token (optional).
+ @returns A task that will be completed after block has run.
+ If block returns a BFTask, then the task returned from
+ this method will not be completed until that task is completed.
+ */
+- (BFTask *)continueWithExecutor:(BFExecutor *)executor
+ successBlock:(BFContinuationBlock)block
+ cancellationToken:(nullable BFCancellationToken *)cancellationToken;
+
+/*!
+ Waits until this operation is completed.
+ This method is inefficient and consumes a thread resource while
+ it's running. It should be avoided. This method logs a warning
+ message if it is used on the main thread.
+ */
+- (void)waitUntilFinished;
+
+@end
+
+NS_ASSUME_NONNULL_END
diff --git a/iOS/Pods/Bolts/Bolts/Common/BFTask.m b/iOS/Pods/Bolts/Bolts/Common/BFTask.m
new file mode 100644
index 0000000..f410f9d
--- /dev/null
+++ b/iOS/Pods/Bolts/Bolts/Common/BFTask.m
@@ -0,0 +1,472 @@
+/*
+ * Copyright (c) 2014, Facebook, Inc.
+ * All rights reserved.
+ *
+ * This source code is licensed under the BSD-style license found in the
+ * LICENSE file in the root directory of this source tree. An additional grant
+ * of patent rights can be found in the PATENTS file in the same directory.
+ *
+ */
+
+#import "BFTask.h"
+
+#import
+
+#import "Bolts.h"
+
+__attribute__ ((noinline)) void warnBlockingOperationOnMainThread() {
+ NSLog(@"Warning: A long-running operation is being executed on the main thread. \n"
+ " Break on warnBlockingOperationOnMainThread() to debug.");
+}
+
+NSString *const BFTaskErrorDomain = @"bolts";
+NSInteger const kBFMultipleErrorsError = 80175001;
+NSString *const BFTaskMultipleExceptionsException = @"BFMultipleExceptionsException";
+
+@interface BFTask () {
+ id _result;
+ NSError *_error;
+ NSException *_exception;
+}
+
+@property (nonatomic, assign, readwrite, getter=isCancelled) BOOL cancelled;
+@property (nonatomic, assign, readwrite, getter=isFaulted) BOOL faulted;
+@property (nonatomic, assign, readwrite, getter=isCompleted) BOOL completed;
+
+@property (nonatomic, strong) NSObject *lock;
+@property (nonatomic, strong) NSCondition *condition;
+@property (nonatomic, strong) NSMutableArray *callbacks;
+
+@end
+
+@implementation BFTask
+
+#pragma mark - Initializer
+
+- (instancetype)init {
+ self = [super init];
+ if (!self) return nil;
+
+ _lock = [[NSObject alloc] init];
+ _condition = [[NSCondition alloc] init];
+ _callbacks = [NSMutableArray array];
+
+ return self;
+}
+
+- (instancetype)initWithResult:(id)result {
+ self = [super init];
+ if (!self) return nil;
+
+ [self trySetResult:result];
+
+ return self;
+}
+
+- (instancetype)initWithError:(NSError *)error {
+ self = [super init];
+ if (!self) return nil;
+
+ [self trySetError:error];
+
+ return self;
+}
+
+- (instancetype)initWithException:(NSException *)exception {
+ self = [super init];
+ if (!self) return nil;
+
+ [self trySetException:exception];
+
+ return self;
+}
+
+- (instancetype)initCancelled {
+ self = [super init];
+ if (!self) return nil;
+
+ [self trySetCancelled];
+
+ return self;
+}
+
+#pragma mark - Task Class methods
+
++ (instancetype)taskWithResult:(id)result {
+ return [[self alloc] initWithResult:result];
+}
+
++ (instancetype)taskWithError:(NSError *)error {
+ return [[self alloc] initWithError:error];
+}
+
++ (instancetype)taskWithException:(NSException *)exception {
+ return [[self alloc] initWithException:exception];
+}
+
++ (instancetype)cancelledTask {
+ return [[self alloc] initCancelled];
+}
+
++ (instancetype)taskForCompletionOfAllTasks:(NSArray *)tasks {
+ __block int32_t total = (int32_t)tasks.count;
+ if (total == 0) {
+ return [self taskWithResult:nil];
+ }
+
+ __block int32_t cancelled = 0;
+ NSObject *lock = [[NSObject alloc] init];
+ NSMutableArray *errors = [NSMutableArray array];
+ NSMutableArray *exceptions = [NSMutableArray array];
+
+ BFTaskCompletionSource *tcs = [BFTaskCompletionSource taskCompletionSource];
+ for (BFTask *task in tasks) {
+ [task continueWithBlock:^id(BFTask *task) {
+ if (task.exception) {
+ @synchronized (lock) {
+ [exceptions addObject:task.exception];
+ }
+ } else if (task.error) {
+ @synchronized (lock) {
+ [errors addObject:task.error];
+ }
+ } else if (task.cancelled) {
+ OSAtomicIncrement32(&cancelled);
+ }
+
+ if (OSAtomicDecrement32(&total) == 0) {
+ if (exceptions.count > 0) {
+ if (exceptions.count == 1) {
+ tcs.exception = [exceptions firstObject];
+ } else {
+ NSException *exception =
+ [NSException exceptionWithName:BFTaskMultipleExceptionsException
+ reason:@"There were multiple exceptions."
+ userInfo:@{ @"exceptions": exceptions }];
+ tcs.exception = exception;
+ }
+ } else if (errors.count > 0) {
+ if (errors.count == 1) {
+ tcs.error = [errors firstObject];
+ } else {
+ NSError *error = [NSError errorWithDomain:BFTaskErrorDomain
+ code:kBFMultipleErrorsError
+ userInfo:@{ @"errors": errors }];
+ tcs.error = error;
+ }
+ } else if (cancelled > 0) {
+ [tcs cancel];
+ } else {
+ tcs.result = nil;
+ }
+ }
+ return nil;
+ }];
+ }
+ return tcs.task;
+}
+
++ (instancetype)taskForCompletionOfAllTasksWithResults:(NSArray *)tasks {
+ return [[self taskForCompletionOfAllTasks:tasks] continueWithSuccessBlock:^id(BFTask *task) {
+ return [tasks valueForKey:@"result"];
+ }];
+}
+
++ (instancetype)taskWithDelay:(int)millis {
+ BFTaskCompletionSource *tcs = [BFTaskCompletionSource taskCompletionSource];
+ dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, millis * NSEC_PER_MSEC);
+ dispatch_after(popTime, dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^(void){
+ tcs.result = nil;
+ });
+ return tcs.task;
+}
+
++ (instancetype)taskWithDelay:(int)millis
+ cancellationToken:(BFCancellationToken *)token {
+ if (token.cancellationRequested) {
+ return [BFTask cancelledTask];
+ }
+
+ BFTaskCompletionSource *tcs = [BFTaskCompletionSource taskCompletionSource];
+ dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, millis * NSEC_PER_MSEC);
+ dispatch_after(popTime, dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^(void){
+ if (token.cancellationRequested) {
+ [tcs cancel];
+ return;
+ }
+ tcs.result = nil;
+ });
+ return tcs.task;
+}
+
++ (instancetype)taskFromExecutor:(BFExecutor *)executor withBlock:(nullable id (^)())block {
+ return [[self taskWithResult:nil] continueWithExecutor:executor withBlock:^id(BFTask *task) {
+ return block();
+ }];
+}
+
+#pragma mark - Custom Setters/Getters
+
+- (id)result {
+ @synchronized(self.lock) {
+ return _result;
+ }
+}
+
+- (BOOL)trySetResult:(id)result {
+ @synchronized(self.lock) {
+ if (self.completed) {
+ return NO;
+ }
+ self.completed = YES;
+ _result = result;
+ [self runContinuations];
+ return YES;
+ }
+}
+
+- (NSError *)error {
+ @synchronized(self.lock) {
+ return _error;
+ }
+}
+
+- (BOOL)trySetError:(NSError *)error {
+ @synchronized(self.lock) {
+ if (self.completed) {
+ return NO;
+ }
+ self.completed = YES;
+ self.faulted = YES;
+ _error = error;
+ [self runContinuations];
+ return YES;
+ }
+}
+
+- (NSException *)exception {
+ @synchronized(self.lock) {
+ return _exception;
+ }
+}
+
+- (BOOL)trySetException:(NSException *)exception {
+ @synchronized(self.lock) {
+ if (self.completed) {
+ return NO;
+ }
+ self.completed = YES;
+ self.faulted = YES;
+ _exception = exception;
+ [self runContinuations];
+ return YES;
+ }
+}
+
+- (BOOL)isCancelled {
+ @synchronized(self.lock) {
+ return _cancelled;
+ }
+}
+
+- (BOOL)isFaulted {
+ @synchronized(self.lock) {
+ return _faulted;
+ }
+}
+
+- (BOOL)trySetCancelled {
+ @synchronized(self.lock) {
+ if (self.completed) {
+ return NO;
+ }
+ self.completed = YES;
+ self.cancelled = YES;
+ [self runContinuations];
+ return YES;
+ }
+}
+
+- (BOOL)isCompleted {
+ @synchronized(self.lock) {
+ return _completed;
+ }
+}
+
+- (void)setCompleted {
+ @synchronized(self.lock) {
+ _completed = YES;
+ }
+}
+
+- (void)runContinuations {
+ @synchronized(self.lock) {
+ [self.condition lock];
+ [self.condition broadcast];
+ [self.condition unlock];
+ for (void (^callback)() in self.callbacks) {
+ callback();
+ }
+ [self.callbacks removeAllObjects];
+ }
+}
+
+#pragma mark - Chaining methods
+
+- (BFTask *)continueWithExecutor:(BFExecutor *)executor
+ withBlock:(BFContinuationBlock)block {
+ return [self continueWithExecutor:executor block:block cancellationToken:nil];
+}
+
+- (BFTask *)continueWithExecutor:(BFExecutor *)executor
+ block:(BFContinuationBlock)block
+ cancellationToken:(BFCancellationToken *)cancellationToken {
+ BFTaskCompletionSource *tcs = [BFTaskCompletionSource taskCompletionSource];
+
+ // Capture all of the state that needs to used when the continuation is complete.
+ void (^wrappedBlock)() = ^() {
+ [executor execute:^{
+ if (cancellationToken.cancellationRequested) {
+ [tcs cancel];
+ return;
+ }
+
+ id result = nil;
+ @try {
+ result = block(self);
+ } @catch (NSException *exception) {
+ tcs.exception = exception;
+ return;
+ }
+
+ if ([result isKindOfClass:[BFTask class]]) {
+
+ id (^setupWithTask) (BFTask *) = ^id(BFTask *task) {
+ if (cancellationToken.cancellationRequested || task.cancelled) {
+ [tcs cancel];
+ } else if (task.exception) {
+ tcs.exception = task.exception;
+ } else if (task.error) {
+ tcs.error = task.error;
+ } else {
+ tcs.result = task.result;
+ }
+ return nil;
+ };
+
+ BFTask *resultTask = (BFTask *)result;
+
+ if (resultTask.completed) {
+ setupWithTask(resultTask);
+ } else {
+ [resultTask continueWithBlock:setupWithTask];
+ }
+
+ } else {
+ tcs.result = result;
+ }
+ }];
+ };
+
+ BOOL completed;
+ @synchronized(self.lock) {
+ completed = self.completed;
+ if (!completed) {
+ [self.callbacks addObject:[wrappedBlock copy]];
+ }
+ }
+ if (completed) {
+ wrappedBlock();
+ }
+
+ return tcs.task;
+}
+
+- (BFTask *)continueWithBlock:(BFContinuationBlock)block {
+ return [self continueWithExecutor:[BFExecutor defaultExecutor] block:block cancellationToken:nil];
+}
+
+- (BFTask *)continueWithBlock:(BFContinuationBlock)block
+ cancellationToken:(BFCancellationToken *)cancellationToken {
+ return [self continueWithExecutor:[BFExecutor defaultExecutor] block:block cancellationToken:cancellationToken];
+}
+
+- (BFTask *)continueWithExecutor:(BFExecutor *)executor
+ withSuccessBlock:(BFContinuationBlock)block {
+ return [self continueWithExecutor:executor successBlock:block cancellationToken:nil];
+}
+
+- (BFTask *)continueWithExecutor:(BFExecutor *)executor
+ successBlock:(BFContinuationBlock)block
+ cancellationToken:(BFCancellationToken *)cancellationToken {
+ if (cancellationToken.cancellationRequested) {
+ return [BFTask cancelledTask];
+ }
+
+ return [self continueWithExecutor:executor block:^id(BFTask *task) {
+ if (task.faulted || task.cancelled) {
+ return task;
+ } else {
+ return block(task);
+ }
+ } cancellationToken:cancellationToken];
+}
+
+- (BFTask *)continueWithSuccessBlock:(BFContinuationBlock)block {
+ return [self continueWithExecutor:[BFExecutor defaultExecutor] successBlock:block cancellationToken:nil];
+}
+
+- (BFTask *)continueWithSuccessBlock:(BFContinuationBlock)block
+ cancellationToken:(BFCancellationToken *)cancellationToken {
+ return [self continueWithExecutor:[BFExecutor defaultExecutor] successBlock:block cancellationToken:cancellationToken];
+}
+
+#pragma mark - Syncing Task (Avoid it)
+
+- (void)warnOperationOnMainThread {
+ warnBlockingOperationOnMainThread();
+}
+
+- (void)waitUntilFinished {
+ if ([NSThread isMainThread]) {
+ [self warnOperationOnMainThread];
+ }
+
+ @synchronized(self.lock) {
+ if (self.completed) {
+ return;
+ }
+ [self.condition lock];
+ }
+ [self.condition wait];
+ [self.condition unlock];
+}
+
+#pragma mark - NSObject
+
+- (NSString *)description {
+ // Acquire the data from the locked properties
+ BOOL completed;
+ BOOL cancelled;
+ BOOL faulted;
+ NSString *resultDescription = nil;
+
+ @synchronized(self.lock) {
+ completed = self.completed;
+ cancelled = self.cancelled;
+ faulted = self.faulted;
+ resultDescription = completed ? [NSString stringWithFormat:@" result = %@", self.result] : @"";
+ }
+
+ // Description string includes status information and, if available, the
+ // result since in some ways this is what a promise actually "is".
+ return [NSString stringWithFormat:@"<%@: %p; completed = %@; cancelled = %@; faulted = %@;%@>",
+ NSStringFromClass([self class]),
+ self,
+ completed ? @"YES" : @"NO",
+ cancelled ? @"YES" : @"NO",
+ faulted ? @"YES" : @"NO",
+ resultDescription];
+}
+
+@end
diff --git a/iOS/Pods/Bolts/Bolts/Common/BFTaskCompletionSource.h b/iOS/Pods/Bolts/Bolts/Common/BFTaskCompletionSource.h
new file mode 100644
index 0000000..a403553
--- /dev/null
+++ b/iOS/Pods/Bolts/Bolts/Common/BFTaskCompletionSource.h
@@ -0,0 +1,89 @@
+/*
+ * Copyright (c) 2014, Facebook, Inc.
+ * All rights reserved.
+ *
+ * This source code is licensed under the BSD-style license found in the
+ * LICENSE file in the root directory of this source tree. An additional grant
+ * of patent rights can be found in the PATENTS file in the same directory.
+ *
+ */
+
+#import
+
+NS_ASSUME_NONNULL_BEGIN
+
+@class BFTask;
+
+/*!
+ A BFTaskCompletionSource represents the producer side of tasks.
+ It is a task that also has methods for changing the state of the
+ task by settings its completion values.
+ */
+@interface BFTaskCompletionSource<__covariant ResultType> : NSObject
+
+/*!
+ Creates a new unfinished task.
+ */
++ (instancetype)taskCompletionSource;
+
+/*!
+ The task associated with this TaskCompletionSource.
+ */
+@property (nonatomic, strong, readonly) BFTask *task;
+
+/*!
+ Completes the task by setting the result.
+ Attempting to set this for a completed task will raise an exception.
+ @param result The result of the task.
+ */
+- (void)setResult:(nullable ResultType)result;
+
+/*!
+ Completes the task by setting the error.
+ Attempting to set this for a completed task will raise an exception.
+ @param error The error for the task.
+ */
+- (void)setError:(NSError *)error;
+
+/*!
+ Completes the task by setting an exception.
+ Attempting to set this for a completed task will raise an exception.
+ @param exception The exception for the task.
+ */
+- (void)setException:(NSException *)exception;
+
+/*!
+ Completes the task by marking it as cancelled.
+ Attempting to set this for a completed task will raise an exception.
+ */
+- (void)cancel;
+
+/*!
+ Sets the result of the task if it wasn't already completed.
+ @returns whether the new value was set.
+ */
+- (BOOL)trySetResult:(nullable ResultType)result;
+
+/*!
+ Sets the error of the task if it wasn't already completed.
+ @param error The error for the task.
+ @returns whether the new value was set.
+ */
+- (BOOL)trySetError:(NSError *)error;
+
+/*!
+ Sets the exception of the task if it wasn't already completed.
+ @param exception The exception for the task.
+ @returns whether the new value was set.
+ */
+- (BOOL)trySetException:(NSException *)exception;
+
+/*!
+ Sets the cancellation state of the task if it wasn't already completed.
+ @returns whether the new value was set.
+ */
+- (BOOL)trySetCancelled;
+
+@end
+
+NS_ASSUME_NONNULL_END
diff --git a/iOS/Pods/Bolts/Bolts/Common/BFTaskCompletionSource.m b/iOS/Pods/Bolts/Bolts/Common/BFTaskCompletionSource.m
new file mode 100644
index 0000000..02b41e2
--- /dev/null
+++ b/iOS/Pods/Bolts/Bolts/Common/BFTaskCompletionSource.m
@@ -0,0 +1,93 @@
+/*
+ * Copyright (c) 2014, Facebook, Inc.
+ * All rights reserved.
+ *
+ * This source code is licensed under the BSD-style license found in the
+ * LICENSE file in the root directory of this source tree. An additional grant
+ * of patent rights can be found in the PATENTS file in the same directory.
+ *
+ */
+
+#import "BFTaskCompletionSource.h"
+
+#import "BFTask.h"
+
+@interface BFTaskCompletionSource ()
+
+@property (nonatomic, strong, readwrite) BFTask *task;
+
+@end
+
+@interface BFTask (BFTaskCompletionSource)
+
+- (BOOL)trySetResult:(id)result;
+- (BOOL)trySetError:(NSError *)error;
+- (BOOL)trySetException:(NSException *)exception;
+- (BOOL)trySetCancelled;
+
+@end
+
+@implementation BFTaskCompletionSource
+
+#pragma mark - Initializer
+
++ (instancetype)taskCompletionSource {
+ return [[self alloc] init];
+}
+
+- (instancetype)init {
+ self = [super init];
+ if (!self) return nil;
+
+ _task = [[BFTask alloc] init];
+
+ return self;
+}
+
+#pragma mark - Custom Setters/Getters
+
+- (void)setResult:(id)result {
+ if (![self.task trySetResult:result]) {
+ [NSException raise:NSInternalInconsistencyException
+ format:@"Cannot set the result on a completed task."];
+ }
+}
+
+- (void)setError:(NSError *)error {
+ if (![self.task trySetError:error]) {
+ [NSException raise:NSInternalInconsistencyException
+ format:@"Cannot set the error on a completed task."];
+ }
+}
+
+- (void)setException:(NSException *)exception {
+ if (![self.task trySetException:exception]) {
+ [NSException raise:NSInternalInconsistencyException
+ format:@"Cannot set the exception on a completed task."];
+ }
+}
+
+- (void)cancel {
+ if (![self.task trySetCancelled]) {
+ [NSException raise:NSInternalInconsistencyException
+ format:@"Cannot cancel a completed task."];
+ }
+}
+
+- (BOOL)trySetResult:(id)result {
+ return [self.task trySetResult:result];
+}
+
+- (BOOL)trySetError:(NSError *)error {
+ return [self.task trySetError:error];
+}
+
+- (BOOL)trySetException:(NSException *)exception {
+ return [self.task trySetException:exception];
+}
+
+- (BOOL)trySetCancelled {
+ return [self.task trySetCancelled];
+}
+
+@end
diff --git a/iOS/Pods/Bolts/Bolts/Common/Bolts.h b/iOS/Pods/Bolts/Bolts/Common/Bolts.h
new file mode 100644
index 0000000..d5ec973
--- /dev/null
+++ b/iOS/Pods/Bolts/Bolts/Common/Bolts.h
@@ -0,0 +1,43 @@
+/*
+ * Copyright (c) 2014, Facebook, Inc.
+ * All rights reserved.
+ *
+ * This source code is licensed under the BSD-style license found in the
+ * LICENSE file in the root directory of this source tree. An additional grant
+ * of patent rights can be found in the PATENTS file in the same directory.
+ *
+ */
+
+#import
+#import
+#import
+#import
+#import
+#import
+#import
+
+#if __has_include() && TARGET_OS_IPHONE && !TARGET_OS_WATCH && !TARGET_OS_TV
+#import
+#import
+#import
+#import
+#import
+#import
+#import
+#import
+#import
+#endif
+
+NS_ASSUME_NONNULL_BEGIN
+
+@interface Bolts : NSObject
+
+/*!
+ Returns the version of the Bolts Framework as an NSString.
+ @returns The NSString representation of the current version.
+ */
++ (NSString *)version;
+
+@end
+
+NS_ASSUME_NONNULL_END
diff --git a/iOS/Pods/Bolts/Bolts/Common/Bolts.m b/iOS/Pods/Bolts/Bolts/Common/Bolts.m
new file mode 100644
index 0000000..244f0a9
--- /dev/null
+++ b/iOS/Pods/Bolts/Bolts/Common/Bolts.m
@@ -0,0 +1,19 @@
+/*
+ * Copyright (c) 2014, Facebook, Inc.
+ * All rights reserved.
+ *
+ * This source code is licensed under the BSD-style license found in the
+ * LICENSE file in the root directory of this source tree. An additional grant
+ * of patent rights can be found in the PATENTS file in the same directory.
+ *
+ */
+
+#import "Bolts.h"
+
+@implementation Bolts
+
++ (NSString *)version {
+ return BOLTS_VERSION;
+}
+
+@end
diff --git a/iOS/Pods/Bolts/Bolts/Common/BoltsVersion.h b/iOS/Pods/Bolts/Bolts/Common/BoltsVersion.h
new file mode 100644
index 0000000..23c252c
--- /dev/null
+++ b/iOS/Pods/Bolts/Bolts/Common/BoltsVersion.h
@@ -0,0 +1 @@
+#define BOLTS_VERSION @"1.6.0"
diff --git a/iOS/Pods/Bolts/LICENSE b/iOS/Pods/Bolts/LICENSE
new file mode 100644
index 0000000..e1a5831
--- /dev/null
+++ b/iOS/Pods/Bolts/LICENSE
@@ -0,0 +1,30 @@
+BSD License
+
+For Bolts software
+
+Copyright (c) 2013-present, Facebook, Inc. All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification,
+are permitted provided that the following conditions are met:
+
+ * Redistributions of source code must retain the above copyright notice, this
+ list of conditions and the following disclaimer.
+
+ * Redistributions in binary form must reproduce the above copyright notice,
+ this list of conditions and the following disclaimer in the documentation
+ and/or other materials provided with the distribution.
+
+ * Neither the name Facebook nor the names of its contributors may be used to
+ endorse or promote products derived from this software without specific
+ prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\ No newline at end of file
diff --git a/iOS/Pods/Bolts/README.md b/iOS/Pods/Bolts/README.md
new file mode 100644
index 0000000..83e03b7
--- /dev/null
+++ b/iOS/Pods/Bolts/README.md
@@ -0,0 +1,682 @@
+Bolts
+============
+[](https://travis-ci.org/BoltsFramework/Bolts-iOS)
+[](https://codecov.io/github/BoltsFramework/Bolts-iOS?branch=master)
+[](https://github.com/Carthage/Carthage)
+[](http://cocoadocs.org/docsets/Bolts/)
+[](http://cocoadocs.org/docsets/Bolts/)
+[](https://github.com/BoltsFramework/Bolts-iOS/blob/master/LICENSE)
+[](https://www.versioneye.com/objective-c/bolts/references)
+
+Bolts is a collection of low-level libraries designed to make developing mobile
+apps easier. Bolts was designed by Parse and Facebook for our own internal use,
+and we have decided to open source these libraries to make them available to
+others. Using these libraries does not require using any Parse services. Nor
+do they require having a Parse or Facebook developer account.
+
+Bolts includes:
+
+* "Tasks", which make organization of complex asynchronous code more manageable. A task is kind of like a JavaScript Promise, but available for iOS and Android.
+* An implementation of the [App Links protocol](http://www.applinks.org), helping you link to content in other apps and handle incoming deep-links.
+
+For more information, see the [Bolts iOS API Reference](http://boltsframework.github.io/docs/ios/).
+
+# Tasks
+
+To build a truly responsive iOS application, you must keep long-running operations off of the UI thread, and be careful to avoid blocking anything the UI thread might be waiting on. This means you will need to execute various operations in the background. To make this easier, we've added a class called `BFTask`. A task represents the result of an asynchronous operation. Typically, a `BFTask` is returned from an asynchronous function and gives the ability to continue processing the result of the task. When a task is returned from a function, it's already begun doing its job. A task is not tied to a particular threading model: it represents the work being done, not where it is executing. Tasks have many advantages over other methods of asynchronous programming, such as callbacks. `BFTask` is not a replacement for `NSOperation` or GCD. In fact, they play well together. But tasks do fill in some gaps that those technologies don't address.
+* `BFTask` takes care of managing dependencies for you. Unlike using `NSOperation` for dependency management, you don't have to declare all dependencies before starting a `BFTask`. For example, imagine you need to save a set of objects and each one may or may not require saving child objects. With an `NSOperation`, you would normally have to create operations for each of the child saves ahead of time. But you don't always know before you start the work whether that's going to be necessary. That can make managing dependencies with `NSOperation` very painful. Even in the best case, you have to create your dependencies before the operations that depend on them, which results in code that appears in a different order than it executes. With `BFTask`, you can decide during your operation's work whether there will be subtasks and return the other task in just those cases.
+* `BFTasks` release their dependencies. `NSOperation` strongly retains its dependencies, so if you have a queue of ordered operations and sequence them using dependencies, you have a leak, because every operation gets retained forever. `BFTasks` release their callbacks as soon as they are run, so everything cleans up after itself. This can reduce memory use, and simplify memory management.
+* `BFTasks` keep track of the state of finished tasks: It tracks whether there was a returned value, the task was cancelled, or if an error occurred. It also has convenience methods for propagating errors. With `NSOperation`, you have to build all of this stuff yourself.
+* `BFTasks` don't depend on any particular threading model. So it's easy to have some tasks perform their work with an operation queue, while others perform work using blocks with GCD. These tasks can depend on each other seamlessly.
+* Performing several tasks in a row will not create nested "pyramid" code as you would get when using only callbacks.
+* `BFTasks` are fully composable, allowing you to perform branching, parallelism, and complex error handling, without the spaghetti code of having many named callbacks.
+* You can arrange task-based code in the order that it executes, rather than having to split your logic across scattered callback functions.
+
+For the examples in this doc, assume there are async versions of some common Parse methods, called `saveAsync:` and `findAsync:` which return a `Task`. In a later section, we'll show how to define these functions yourself.
+
+## The `continueWithBlock` Method
+
+Every `BFTask` has a method named `continueWithBlock:` which takes a continuation block. A continuation is a block that will be executed when the task is complete. You can then inspect the task to check if it was successful and to get its result.
+
+```objective-c
+// Objective-C
+[[self saveAsync:obj] continueWithBlock:^id(BFTask *task) {
+ if (task.isCancelled) {
+ // the save was cancelled.
+ } else if (task.error) {
+ // the save failed.
+ } else {
+ // the object was saved successfully.
+ PFObject *object = task.result;
+ }
+ return nil;
+}];
+```
+
+```swift
+// Swift
+self.saveAsync(obj).continueWithBlock {
+ (task: BFTask!) -> BFTask in
+ if task.isCancelled() {
+ // the save was cancelled.
+ } else if task.error() {
+ // the save failed.
+ } else {
+ // the object was saved successfully.
+ var object = task.result() as PFObject
+ }
+}
+```
+
+BFTasks use Objective-C blocks, so the syntax should be pretty straightforward. Let's look closer at the types involved with an example.
+
+```objective-c
+// Objective-C
+/**
+ * Gets an NSString asynchronously.
+ */
+- (BFTask *)getStringAsync {
+ // Let's suppose getNumberAsync returns a BFTask whose result is an NSNumber.
+ return [[self getNumberAsync] continueWithBlock:^id(BFTask *task) {
+ // This continuation block takes the NSNumber BFTask as input,
+ // and provides an NSString as output.
+
+ NSNumber *number = task.result;
+ return [NSString stringWithFormat:@"%@", number];
+ )];
+}
+```
+
+```swift
+// Swift
+/**
+ * Gets an NSString asynchronously.
+ */
+func getStringAsync() -> BFTask {
+ //Let's suppose getNumberAsync returns a BFTask whose result is an NSNumber.
+ return self.getNumberAsync().continueWithBlock {
+ (task: BFTask!) -> NSString in
+ // This continuation block takes the NSNumber BFTask as input,
+ // and provides an NSString as output.
+
+ let number = task.result() as NSNumber
+ return NSString(format:"%@", number)
+ }
+}
+```
+
+In many cases, you only want to do more work if the previous task was successful, and propagate any errors or cancellations to be dealt with later. To do this, use the `continueWithSuccessBlock:` method instead of `continueWithBlock:`.
+
+```objective-c
+// Objective-C
+[[self saveAsync:obj] continueWithSuccessBlock:^id(BFTask *task) {
+ // the object was saved successfully.
+ return nil;
+}];
+```
+
+```swift
+// Swift
+self.saveAsync(obj).continueWithSuccessBlock {
+ (task: BFTask!) -> AnyObject! in
+ // the object was saved successfully.
+ return nil
+}
+```
+
+## Chaining Tasks Together
+
+BFTasks are a little bit magical, in that they let you chain them without nesting. If you return a BFTask from `continueWithBlock:`, then the task returned by `continueWithBlock:` will not be considered finished until the new task returned from the new continuation block. This lets you perform multiple actions without incurring the pyramid code you would get with callbacks. Likewise, you can return a `BFTask` from `continueWithSuccessBlock:`. So, return a `BFTask` to do more asynchronous work.
+
+```objective-c
+// Objective-C
+PFQuery *query = [PFQuery queryWithClassName:@"Student"];
+[query orderByDescending:@"gpa"];
+[[[[[self findAsync:query] continueWithSuccessBlock:^id(BFTask *task) {
+ NSArray *students = task.result;
+ PFObject *valedictorian = [students objectAtIndex:0];
+ [valedictorian setObject:@YES forKey:@"valedictorian"];
+ return [self saveAsync:valedictorian];
+}] continueWithSuccessBlock:^id(BFTask *task) {
+ PFObject *valedictorian = task.result;
+ return [self findAsync:query];
+}] continueWithSuccessBlock:^id(BFTask *task) {
+ NSArray *students = task.result;
+ PFObject *salutatorian = [students objectAtIndex:1];
+ [salutatorian setObject:@YES forKey:@"salutatorian"];
+ return [self saveAsync:salutatorian];
+}] continueWithSuccessBlock:^id(BFTask *task) {
+ // Everything is done!
+ return nil;
+}];
+```
+
+```swift
+// Swift
+var query = PFQuery(className:"Student")
+query.orderByDescending("gpa")
+findAsync(query).continueWithSuccessBlock {
+ (task: BFTask!) -> BFTask in
+ let students = task.result() as NSArray
+ var valedictorian = students.objectAtIndex(0) as PFObject
+ valedictorian["valedictorian"] = true
+ return self.saveAsync(valedictorian)
+}.continueWithSuccessBlock {
+ (task: BFTask!) -> BFTask in
+ var valedictorian = task.result() as PFObject
+ return self.findAsync(query)
+}.continueWithSuccessBlock {
+ (task: BFTask!) -> BFTask in
+ let students = task.result() as NSArray
+ var salutatorian = students.objectAtIndex(1) as PFObject
+ salutatorian["salutatorian"] = true
+ return self.saveAsync(salutatorian)
+}.continueWithSuccessBlock {
+ (task: BFTask!) -> AnyObject! in
+ // Everything is done!
+ return nil
+}
+```
+
+## Error Handling
+
+By carefully choosing whether to call `continueWithBlock:` or `continueWithSuccessBlock:`, you can control how errors are propagated in your application. Using `continueWithBlock:` lets you handle errors by transforming them or dealing with them. You can think of failed tasks kind of like throwing an exception. In fact, if you throw an exception inside a continuation, the resulting task will be faulted with that exception.
+
+```objective-c
+// Objective-C
+PFQuery *query = [PFQuery queryWithClassName:@"Student"];
+[query orderByDescending:@"gpa"];
+[[[[[self findAsync:query] continueWithSuccessBlock:^id(BFTask *task) {
+ NSArray *students = task.result;
+ PFObject *valedictorian = [students objectAtIndex:0];
+ [valedictorian setObject:@YES forKey:@"valedictorian"];
+ // Force this callback to fail.
+ return [BFTask taskWithError:[NSError errorWithDomain:@"example.com"
+ code:-1
+ userInfo:nil]];
+}] continueWithSuccessBlock:^id(BFTask *task) {
+ // Now this continuation will be skipped.
+ PFQuery *valedictorian = task.result;
+ return [self findAsync:query];
+}] continueWithBlock:^id(BFTask *task) {
+ if (task.error) {
+ // This error handler WILL be called.
+ // The error will be the NSError returned above.
+ // Let's handle the error by returning a new value.
+ // The task will be completed with nil as its value.
+ return nil;
+ }
+ // This will also be skipped.
+ NSArray *students = task.result;
+ PFObject *salutatorian = [students objectAtIndex:1];
+ [salutatorian setObject:@YES forKey:@"salutatorian"];
+ return [self saveAsync:salutatorian];
+}] continueWithSuccessBlock:^id(BFTask *task) {
+ // Everything is done! This gets called.
+ // The task's result is nil.
+ return nil;
+}];
+```
+
+```swift
+// Swift
+var query = PFQuery(className:"Student")
+query.orderByDescending("gpa")
+findAsync(query).continueWithSuccessBlock {
+ (task: BFTask!) -> BFTask in
+ let students = task.result() as NSArray
+ var valedictorian = students.objectAtIndex(0) as PFObject
+ valedictorian["valedictorian"] = true
+ //Force this callback to fail.
+ return BFTask(error:NSError(domain:"example.com",
+ code:-1, userInfo: nil))
+}.continueWithSuccessBlock {
+ (task: BFTask!) -> AnyObject! in
+ //Now this continuation will be skipped.
+ var valedictorian = task.result() as PFObject
+ return self.findAsync(query)
+}.continueWithBlock {
+ (task: BFTask!) -> AnyObject! in
+ if task.error() {
+ // This error handler WILL be called.
+ // The error will be the NSError returned above.
+ // Let's handle the error by returning a new value.
+ // The task will be completed with nil as its value.
+ return nil
+ }
+ // This will also be skipped.
+ let students = task.result() as NSArray
+ var salutatorian = students.objectAtIndex(1) as PFObject
+ salutatorian["salutatorian"] = true
+ return self.saveAsync(salutatorian)
+}.continueWithSuccessBlock {
+ (task: BFTask!) -> AnyObject! in
+ // Everything is done! This gets called.
+ // The tasks result is nil.
+ return nil
+}
+```
+
+It's often convenient to have a long chain of success callbacks with only one error handler at the end.
+
+## Creating Tasks
+
+When you're getting started, you can just use the tasks returned from methods like `findAsync:` or `saveAsync:`. However, for more advanced scenarios, you may want to make your own tasks. To do that, you create a `BFTaskCompletionSource`. This object will let you create a new `BFTask`, and control whether it gets marked as finished or cancelled. After you create a `BFTaskCompletionSource`, you'll need to call `setResult:`, `setError:`, or `cancel` to trigger its continuations.
+
+```objective-c
+// Objective-C
+- (BFTask *)successAsync {
+ BFTaskCompletionSource *successful = [BFTaskCompletionSource taskCompletionSource];
+ [successful setResult:@"The good result."];
+ return successful.task;
+}
+
+- (BFTask *)failAsync {
+ BFTaskCompletionSource *failed = [BFTaskCompletionSource taskCompletionSource];
+ [failed setError:[NSError errorWithDomain:@"example.com" code:-1 userInfo:nil]];
+ return failed.task;
+}
+```
+
+```swift
+// Swift
+func successAsync() -> BFTask {
+ var successful = BFTaskCompletionSource()
+ successful.setResult("The good result.")
+ return successful.task
+}
+
+func failAsync() -> BFTask {
+ var failed = BFTaskCompletionSource()
+ failed.setError(NSError(domain:"example.com", code:-1, userInfo:nil))
+ return failed.task
+}
+```
+
+If you know the result of a task at the time it is created, there are some convenience methods you can use.
+
+```objective-c
+// Objective-C
+BFTask *successful = [BFTask taskWithResult:@"The good result."];
+
+BFTask *failed = [BFTask taskWithError:anError];
+```
+
+```swift
+// Swift
+let successful = BFTask(result:"The good result")
+
+let failed = BFTask(error:anError)
+```
+
+## Creating Async Methods
+
+With these tools, it's easy to make your own asynchronous functions that return tasks. For example, you can make a task-based version of `fetchAsync:` easily.
+
+```objective-c
+// Objective-C
+- (BFTask *) fetchAsync:(PFObject *)object {
+ BFTaskCompletionSource *task = [BFTaskCompletionSource taskCompletionSource];
+ [object fetchInBackgroundWithBlock:^(PFObject *object, NSError *error) {
+ if (!error) {
+ [task setResult:object];
+ } else {
+ [task setError:error];
+ }
+ }];
+ return task.task;
+}
+```
+
+```swift
+// Swift
+func fetchAsync(object: PFObject) -> BFTask {
+ var task = BFTaskCompletionSource()
+ object.fetchInBackgroundWithBlock {
+ (object: PFObject?, error: NSError?) -> Void in
+ if error == nil {
+ task.setResult(object)
+ } else {
+ task.setError(error)
+ }
+ }
+ return task.task
+}
+
+```
+
+It's similarly easy to create `saveAsync:`, `findAsync:` or `deleteAsync:`.
+
+## Tasks in Series
+
+`BFTasks` are convenient when you want to do a series of tasks in a row, each one waiting for the previous to finish. For example, imagine you want to delete all of the comments on your blog.
+
+```objective-c
+// Objective-C
+PFQuery *query = [PFQuery queryWithClassName:@"Comments"];
+[query whereKey:@"post" equalTo:@123];
+
+[[[self findAsync:query] continueWithBlock:^id(BFTask *task) {
+ NSArray *results = task.result;
+
+ // Create a trivial completed task as a base case.
+ BFTask *task = [BFTask taskWithResult:nil];
+ for (PFObject *result in results) {
+ // For each item, extend the task with a function to delete the item.
+ task = [task continueWithBlock:^id(BFTask *task) {
+ // Return a task that will be marked as completed when the delete is finished.
+ return [self deleteAsync:result];
+ }];
+ }
+ return task;
+}] continueWithBlock:^id(BFTask *task) {
+ // Every comment was deleted.
+ return nil;
+}];
+```
+
+```swift
+// Swift
+var query = PFQuery(className:"Comments")
+query.whereKey("post", equalTo:123)
+findAsync(query).continueWithBlock {
+ (task: BFTask!) -> BFTask in
+ let results = task.result() as NSArray
+
+ // Create a trivial completed task as a base case.
+ let task = BFTask(result:nil)
+ for result : PFObject in results {
+ // For each item, extend the task with a function to delete the item.
+ task = task.continueWithBlock {
+ (task: BFTask!) -> BFTask in
+ return self.deleteAsync(result)
+ }
+ }
+ return task
+}.continueWithBlock {
+ (task: BFTask!) -> AnyObject! in
+ // Every comment was deleted.
+ return nil
+}
+```
+
+## Tasks in Parallel
+
+You can also perform several tasks in parallel, using the `taskForCompletionOfAllTasks:` method. You can start multiple operations at once, and use `taskForCompletionOfAllTasks:` to create a new task that will be marked as completed when all of its input tasks are completed. The new task will be successful only if all of the passed-in tasks succeed. Performing operations in parallel will be faster than doing them serially, but may consume more system resources and bandwidth.
+
+```objective-c
+// Objective-C
+PFQuery *query = [PFQuery queryWithClassName:@"Comments"];
+[query whereKey:@"post" equalTo:@123];
+
+[[[self findAsync:query] continueWithBlock:^id(BFTask *results) {
+ // Collect one task for each delete into an array.
+ NSMutableArray *tasks = [NSMutableArray array];
+ for (PFObject *result in results) {
+ // Start this delete immediately and add its task to the list.
+ [tasks addObject:[self deleteAsync:result]];
+ }
+ // Return a new task that will be marked as completed when all of the deletes are
+ // finished.
+ return [BFTask taskForCompletionOfAllTasks:tasks];
+}] continueWithBlock:^id(BFTask *task) {
+ // Every comment was deleted.
+ return nil;
+}];
+```
+
+```swift
+// Swift
+var query = PFQuery(className:"Comments")
+query.whereKey("post", equalTo:123)
+
+findAsync(query).continueWithBlock {
+ (task: BFTask!) -> BFTask in
+ // Collect one task for each delete into an array.
+ var tasks = NSMutableArray.array()
+ var results = task.result() as NSArray
+ for result : PFObject! in results {
+ // Start this delete immediately and add its task to the list.
+ tasks.addObject(self.deleteAsync(result))
+ }
+ // Return a new task that will be marked as completed when all of the deletes
+ // are finished.
+ return BFTask(forCompletionOfAllTasks:tasks)
+}.continueWithBlock {
+ (task: BFTask!) -> AnyObject! in
+ // Every comment was deleted.
+ return nil
+}
+```
+
+## Task Executors
+
+Both `continueWithBlock:` and `continueWithSuccessBlock:` methods have another form that takes an instance of `BFExecutor`. These are `continueWithExecutor:withBlock:` and `continueWithExecutor:withSuccessBlock:`. These methods allow you to control how the continuation is executed. The default executor will dispatch to GCD, but you can provide your own executor to schedule work onto a different thread. For example, if you want to continue with work on the UI thread:
+
+```objective-c
+// Create a BFExecutor that uses the main thread.
+BFExecutor *myExecutor = [BFExecutor executorWithBlock:^void(void(^block)()) {
+ dispatch_async(dispatch_get_main_queue(), block);
+}];
+
+// And use the Main Thread Executor like this. The executor applies only to the new
+// continuation being passed into continueWithBlock.
+[[self fetchAsync:object] continueWithExecutor:myExecutor withBlock:^id(BFTask *task) {
+ myTextView.text = [object objectForKey:@"name"];
+}];
+```
+
+For common cases, such as dispatching on the main thread, we have provided default implementations of `BFExecutor`. These include `defaultExecutor`, `immediateExecutor`, `mainThreadExecutor`, `executorWithDispatchQueue:`, and `executorWithOperationQueue:`. For example:
+
+```objective-c
+// Continue on the Main Thread, using a built-in executor.
+[[self fetchAsync:object] continueWithExecutor:[BFExecutor mainThreadExecutor] withBlock:^id(BFTask *task) {
+ myTextView.text = [object objectForKey:@"name"];
+}];
+```
+
+## Task Cancellation
+
+It's generally bad design to keep track of the `BFTaskCompletionSource` for cancellation. A better model is to create a "cancellation token" at the top level, and pass that to each async function that you want to be part of the same "cancelable operation". Then, in your continuation blocks, you can check whether the cancellation token has been cancelled and bail out early by returning a `[BFTask cancelledTask]`. For example:
+
+```objective-c
+- (void)doSomethingComplicatedAsync:(MYCancellationToken *)cancellationToken {
+ [[self doSomethingAsync:cancellationToken] continueWithBlock:^{
+ if (cancellationToken.isCancelled) {
+ return [BFTask cancelledTask];
+ }
+ // Do something that takes a while.
+ return result;
+ }];
+}
+
+// Somewhere else.
+MYCancellationToken *cancellationToken = [[MYCancellationToken alloc] init];
+[obj doSomethingComplicatedAsync:cancellationToken];
+
+// When you get bored...
+[cancellationToken cancel];
+```
+
+**Note:** The cancellation token implementation should be thread-safe.
+We are likely to add some concept like this to Bolts at some point in the future.
+
+# App Links
+
+[App Links](http://www.applinks.org) provide a cross-platform mechanism that allows a developer to define and publish a deep-linking scheme for their content, allowing other apps to link directly to an experience optimized for the device they are running on. Whether you are building an app that receives incoming links or one that may link out to other apps' content, Bolts provides tools to simplify implementation of the [App Links protocol](http://www.applinks.org/documentation).
+
+## Handling an App Link
+
+The most common case will be making your app receive App Links. In-linking will allow your users to quickly access the richest, most native-feeling presentation of linked content on their devices. Bolts makes it easy to handle an inbound App Link (as well as general inbound deep-links) by providing utilities for processing an incoming URL.
+
+For example, you can use the `BFURL` utility class to parse an incoming URL in your `AppDelegate`:
+
+```objective-c
+- (BOOL)application:(UIApplication *)application
+ openURL:(NSURL *)url
+ sourceApplication:(NSString *)sourceApplication
+ annotation:(id)annotation {
+ BFURL *parsedUrl = [BFURL URLWithInboundURL:url sourceApplication:sourceApplication];
+
+ // Use the target URL from the App Link to locate content.
+ if ([parsedUrl.targetURL.pathComponents[1] isEqualToString:@"profiles"]) {
+ // Open a profile viewer.
+ }
+
+ // You can also check the query string easily.
+ NSString *query = parsedUrl.targetQueryParameters[@"query"];
+
+ // Apps that have existing deep-linking support and map their App Links to existing
+ // deep-linking functionality may instead want to perform these operations on the input URL.
+ // Use the target URL from the App Link to locate content.
+ if ([parsedUrl.inputURL.pathComponents[1] isEqualToString:@"profiles"]) {
+ // Open a profile viewer.
+ }
+
+ // You can also check the query string easily.
+ NSString *query = parsedUrl.inputQueryParameters[@"query"];
+
+ // Apps can easily check the Extras and App Link data from the App Link as well.
+ NSString *fbAccessToken = parsedUrl.appLinkExtras[@"fb_access_token"];
+ NSDictionary *refererData = parsedUrl.appLinkExtras[@"referer"];
+}
+```
+
+## Navigating to a URL
+
+Following an App Link allows your app to provide the best user experience (as defined by the receiving app) when a user navigates to a link. Bolts makes this process simple, automating the steps required to follow a link:
+
+1. Resolve the App Link by getting the App Link metadata from the HTML at the URL specified.
+2. Step through App Link targets relevant to the device being used, checking whether the app that can handle the target is present on the device.
+3. If an app is present, build a URL with the appropriate al_applink_data specified and navigate to that URL.
+4. Otherwise, open the browser with the original URL specified.
+
+In the simplest case, it takes just one line of code to navigate to a URL that may have an App Link:
+
+```objective-c
+[BFAppLinkNavigation navigateToURLInBackground:url];
+```
+
+### Adding App and Navigation Data
+
+Under most circumstances, the data that will need to be passed along to an app during a navigation will be contained in the URL itself, so that whether or not the app is actually installed on the device, users are taken to the correct content. Occasionally, however, apps will want to pass along data that is relevant for app-to-app navigation, or will want to augment the App Link protocol with information that might be used by the app to adjust how the app should behave (e.g. showing a link back to the referring app).
+
+If you want to take advantage of these features, you can break apart the navigation process. First, you must have an App Link to which you wish to navigate:
+
+```objective-c
+[[BFAppLinkNavigation resolveAppLinkInBackground:url] continueWithSuccessBlock:^id(BFTask *task) {
+ BFAppLink *link = task.result;
+}];
+```
+
+Then, you can build an App Link request with any additional data you would like and navigate:
+
+```objective-c
+BFAppLinkNavigation *navigation = [BFAppLinkNavigation navigationWithAppLink:link
+ extras:@{ @"access_token": @"t0kEn" }
+ appLinkData:@{ @"ref": @"12345" }];
+NSError *error = nil;
+[navigation navigate:&error];
+```
+
+### Resolving App Link Metadata
+
+Bolts allows for custom App Link resolution, which may be used as a performance optimization (e.g. caching the metadata) or as a mechanism to allow developers to use a centralized index for obtaining App Link metadata. A custom App Link resolver just needs to be able to take a URL and return a `BFAppLink` containing the ordered list of `BFAppLinkTarget`s that are applicable for this device. Bolts provides one of these out of the box that performs this resolution on the device using a hidden UIWebView.
+
+You can use any resolver that implements the `BFAppLinkResolving` protocol by using one of the overloads on `BFAppLinkNavigation`:
+
+```objective-c
+[BFAppLinkNavigation navigateToURLInBackground:url
+ resolver:resolver];
+```
+
+Alternatively, a you can swap out the default resolver to be used by the built-in APIs:
+
+```objective-c
+[BFAppLinkNavigation setDefaultResolver:resolver];
+[BFAppLinkNavigation navigateToURLInBackground:url];
+```
+
+## App Link Return-to-Referer View
+
+When an application is opened via an App Link, a banner allowing the user to "Touch to return to " should be displayed. The `BFAppLinkReturnToRefererView` provides this functionality. It will take an incoming App Link and parse the referer information to display the appropriate calling app name.
+
+```objective-c
+- (void)viewDidLoad {
+ [super viewDidLoad];
+
+ // Perform other view initialization.
+
+ self.returnToRefererController = [[BFAppLinkReturnToRefererController alloc] init];
+
+ // self.returnToRefererView is a BFAppLinkReturnToRefererView.
+ // You may initialize the view either by loading it from a NIB or programmatically.
+ self.returnToRefererController.view = self.returnToRefererView;
+
+ // If you have a UINavigationController in the view, then the bar must be shown above it.
+ [self.returnToRefererController]
+}
+```
+
+The following code assumes that the view controller has an `openedAppLinkURL` `NSURL` property that has already been populated with the URL used to open the app. You can then do something like this to show the view:
+
+```objective-c
+- (void)viewWillAppear {
+ [super viewWillAppear];
+
+ // Show only if you have a back AppLink.
+ [self.returnToRefererController showViewForRefererURL:self.openedAppLinkURL];
+}
+```
+
+In a navigaton-controller view hierarchy, the banner should be displayed above the navigation bar, and `BFAppLinkReturnToRefererController` provides an `initForDisplayAboveNavController` method to assist with this.
+
+## Analytics
+
+Bolts introduces Measurement Event. App Links posts three different Measurement Event notifications to the application, which can be caught and integrated with existing analytics components in your application.
+
+* `al_nav_out` — Raised when your app switches out to an App Links URL.
+* `al_nav_in` — Raised when your app opens an incoming App Links URL.
+* `al_ref_back_out` — Raised when your app returns back the referrer app using the built-in top navigation back bar view.
+
+### Listen for App Links Measurement Events
+
+There are other analytics tools that are integrated with Bolts' App Links events, but you can also listen for these events yourself:
+
+```objective-c
+[[NSNotificationCenter defaultCenter] addObserverForName:BFMeasurementEventNotificationName object:nil queue:nil usingBlock:^(NSNotification *note) {
+ NSDictionary *event = note.userInfo;
+ NSDictionary *eventData = event[BFMeasurementEventArgsKey];
+ // Integrate to your logging/analytics component.
+}];
+```
+
+### App Links Event Fields
+
+App Links Measurement Events sends additional information from App Links Intents in flattened string key value pairs. Here are some of the useful fields for the three events.
+
+* `al_nav_in`
+ * `inputURL`: the URL that opens the app.
+ * `inputURLScheme`: the scheme of `inputURL`.
+ * `refererURL`: the URL that the referrer app added into `al_applink_data`: `referer_app_link`.
+ * `refererAppName`: the app name that the referrer app added to `al_applink_data`: `referer_app_link`.
+ * `sourceApplication`: the bundle of referrer application.
+ * `targetURL`: the `target_url` field in `al_applink_data`.
+ * `version`: App Links API version.
+
+* `al_nav_out` / `al_ref_back_out`
+ * `outputURL`: the URL used to open the other app (or browser). If there is an eligible app to open, this will be the custom scheme url/intent in `al_applink_data`.
+ * `outputURLScheme`: the scheme of `outputURL`.
+ * `sourceURL`: the URL of the page hosting App Links meta tags.
+ * `sourceURLHost`: the hostname of `sourceURL`.
+ * `success`: `“1”` to indicate success in opening the App Link in another app or browser; `“0”` to indicate failure to open the App Link.
+ * `type`: `“app”` for open in app, `“web”` for open in browser; `“fail”` when the success field is `“0”`.
+ * `version`: App Links API version.
+
+# Installation
+
+You can download the latest framework files from our [Releases page](https://github.com/BoltsFramework/Bolts-iOS/releases).
+
+Bolts is also available through [CocoaPods](http://cocoapods.org). To install it simply add the following line to your Podfile:
+
+ pod 'Bolts'
diff --git a/iOS/Pods/Headers/Private/Bolts/BFCancellationToken.h b/iOS/Pods/Headers/Private/Bolts/BFCancellationToken.h
new file mode 120000
index 0000000..0b69486
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Bolts/BFCancellationToken.h
@@ -0,0 +1 @@
+../../../Bolts/Bolts/Common/BFCancellationToken.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Bolts/BFCancellationTokenRegistration.h b/iOS/Pods/Headers/Private/Bolts/BFCancellationTokenRegistration.h
new file mode 120000
index 0000000..c587ca7
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Bolts/BFCancellationTokenRegistration.h
@@ -0,0 +1 @@
+../../../Bolts/Bolts/Common/BFCancellationTokenRegistration.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Bolts/BFCancellationTokenSource.h b/iOS/Pods/Headers/Private/Bolts/BFCancellationTokenSource.h
new file mode 120000
index 0000000..d3d5985
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Bolts/BFCancellationTokenSource.h
@@ -0,0 +1 @@
+../../../Bolts/Bolts/Common/BFCancellationTokenSource.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Bolts/BFExecutor.h b/iOS/Pods/Headers/Private/Bolts/BFExecutor.h
new file mode 120000
index 0000000..c071e8c
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Bolts/BFExecutor.h
@@ -0,0 +1 @@
+../../../Bolts/Bolts/Common/BFExecutor.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Bolts/BFTask.h b/iOS/Pods/Headers/Private/Bolts/BFTask.h
new file mode 120000
index 0000000..5468334
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Bolts/BFTask.h
@@ -0,0 +1 @@
+../../../Bolts/Bolts/Common/BFTask.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Bolts/BFTaskCompletionSource.h b/iOS/Pods/Headers/Private/Bolts/BFTaskCompletionSource.h
new file mode 120000
index 0000000..c74760f
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Bolts/BFTaskCompletionSource.h
@@ -0,0 +1 @@
+../../../Bolts/Bolts/Common/BFTaskCompletionSource.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Bolts/Bolts.h b/iOS/Pods/Headers/Private/Bolts/Bolts.h
new file mode 120000
index 0000000..146ac6e
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Bolts/Bolts.h
@@ -0,0 +1 @@
+../../../Bolts/Bolts/Common/Bolts.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Bolts/BoltsVersion.h b/iOS/Pods/Headers/Private/Bolts/BoltsVersion.h
new file mode 120000
index 0000000..0fa0e2d
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Bolts/BoltsVersion.h
@@ -0,0 +1 @@
+../../../Bolts/Bolts/Common/BoltsVersion.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/BFTask+Private.h b/iOS/Pods/Headers/Private/Parse/BFTask+Private.h
new file mode 120000
index 0000000..10159b2
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/BFTask+Private.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/BFTask+Private.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFACL.h b/iOS/Pods/Headers/Private/Parse/PFACL.h
new file mode 120000
index 0000000..7c3c14f
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFACL.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFACL.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFACLPrivate.h b/iOS/Pods/Headers/Private/Parse/PFACLPrivate.h
new file mode 120000
index 0000000..2879692
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFACLPrivate.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/ACL/PFACLPrivate.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFACLState.h b/iOS/Pods/Headers/Private/Parse/PFACLState.h
new file mode 120000
index 0000000..d3b8d9b
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFACLState.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/ACL/State/PFACLState.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFACLState_Private.h b/iOS/Pods/Headers/Private/Parse/PFACLState_Private.h
new file mode 120000
index 0000000..d9dd502
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFACLState_Private.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/ACL/State/PFACLState_Private.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFAlertView.h b/iOS/Pods/Headers/Private/Parse/PFAlertView.h
new file mode 120000
index 0000000..85018b0
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFAlertView.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PFAlertView.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFAnalytics.h b/iOS/Pods/Headers/Private/Parse/PFAnalytics.h
new file mode 120000
index 0000000..7751f45
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFAnalytics.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFAnalytics.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFAnalyticsController.h b/iOS/Pods/Headers/Private/Parse/PFAnalyticsController.h
new file mode 120000
index 0000000..e1fc43f
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFAnalyticsController.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Analytics/Controller/PFAnalyticsController.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFAnalyticsUtilities.h b/iOS/Pods/Headers/Private/Parse/PFAnalyticsUtilities.h
new file mode 120000
index 0000000..b383f8f
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFAnalyticsUtilities.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Analytics/Utilities/PFAnalyticsUtilities.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFAnalytics_Private.h b/iOS/Pods/Headers/Private/Parse/PFAnalytics_Private.h
new file mode 120000
index 0000000..defa006
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFAnalytics_Private.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Analytics/PFAnalytics_Private.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFAnonymousAuthenticationProvider.h b/iOS/Pods/Headers/Private/Parse/PFAnonymousAuthenticationProvider.h
new file mode 120000
index 0000000..14cb5b3
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFAnonymousAuthenticationProvider.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/User/AuthenticationProviders/Providers/Anonymous/PFAnonymousAuthenticationProvider.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFAnonymousUtils+Deprecated.h b/iOS/Pods/Headers/Private/Parse/PFAnonymousUtils+Deprecated.h
new file mode 120000
index 0000000..f263bed
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFAnonymousUtils+Deprecated.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFAnonymousUtils+Deprecated.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFAnonymousUtils.h b/iOS/Pods/Headers/Private/Parse/PFAnonymousUtils.h
new file mode 120000
index 0000000..7b9b437
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFAnonymousUtils.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFAnonymousUtils.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFAnonymousUtils_Private.h b/iOS/Pods/Headers/Private/Parse/PFAnonymousUtils_Private.h
new file mode 120000
index 0000000..8b4fcef
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFAnonymousUtils_Private.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/User/AuthenticationProviders/Providers/Anonymous/PFAnonymousUtils_Private.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFApplication.h b/iOS/Pods/Headers/Private/Parse/PFApplication.h
new file mode 120000
index 0000000..b0d8ee6
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFApplication.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PFApplication.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFAssert.h b/iOS/Pods/Headers/Private/Parse/PFAssert.h
new file mode 120000
index 0000000..370352c
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFAssert.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PFAssert.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFAsyncTaskQueue.h b/iOS/Pods/Headers/Private/Parse/PFAsyncTaskQueue.h
new file mode 120000
index 0000000..87cce9d
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFAsyncTaskQueue.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PFAsyncTaskQueue.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFBase64Encoder.h b/iOS/Pods/Headers/Private/Parse/PFBase64Encoder.h
new file mode 120000
index 0000000..adae939
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFBase64Encoder.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PFBase64Encoder.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFBaseState.h b/iOS/Pods/Headers/Private/Parse/PFBaseState.h
new file mode 120000
index 0000000..6c1b489
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFBaseState.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PFBaseState.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFCachedQueryController.h b/iOS/Pods/Headers/Private/Parse/PFCachedQueryController.h
new file mode 120000
index 0000000..0712e6e
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFCachedQueryController.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Query/Controller/PFCachedQueryController.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFCategoryLoader.h b/iOS/Pods/Headers/Private/Parse/PFCategoryLoader.h
new file mode 120000
index 0000000..7dedc13
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFCategoryLoader.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PFCategoryLoader.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFCloud+Deprecated.h b/iOS/Pods/Headers/Private/Parse/PFCloud+Deprecated.h
new file mode 120000
index 0000000..6d17f8b
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFCloud+Deprecated.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFCloud+Deprecated.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFCloud+Synchronous.h b/iOS/Pods/Headers/Private/Parse/PFCloud+Synchronous.h
new file mode 120000
index 0000000..937840e
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFCloud+Synchronous.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFCloud+Synchronous.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFCloud.h b/iOS/Pods/Headers/Private/Parse/PFCloud.h
new file mode 120000
index 0000000..4070bb1
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFCloud.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFCloud.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFCloudCodeController.h b/iOS/Pods/Headers/Private/Parse/PFCloudCodeController.h
new file mode 120000
index 0000000..38ca262
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFCloudCodeController.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/CloudCode/PFCloudCodeController.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFCommandCache.h b/iOS/Pods/Headers/Private/Parse/PFCommandCache.h
new file mode 120000
index 0000000..b9d3183
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFCommandCache.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PFCommandCache.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFCommandCache_Private.h b/iOS/Pods/Headers/Private/Parse/PFCommandCache_Private.h
new file mode 120000
index 0000000..aafb22b
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFCommandCache_Private.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PFCommandCache_Private.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFCommandResult.h b/iOS/Pods/Headers/Private/Parse/PFCommandResult.h
new file mode 120000
index 0000000..2f1114a
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFCommandResult.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PFCommandResult.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFCommandRunning.h b/iOS/Pods/Headers/Private/Parse/PFCommandRunning.h
new file mode 120000
index 0000000..f2d7c78
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFCommandRunning.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Commands/CommandRunner/PFCommandRunning.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFCommandRunningConstants.h b/iOS/Pods/Headers/Private/Parse/PFCommandRunningConstants.h
new file mode 120000
index 0000000..3a73786
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFCommandRunningConstants.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Commands/CommandRunner/PFCommandRunningConstants.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFCommandURLRequestConstructor.h b/iOS/Pods/Headers/Private/Parse/PFCommandURLRequestConstructor.h
new file mode 120000
index 0000000..bb68366
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFCommandURLRequestConstructor.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Commands/CommandRunner/URLRequestConstructor/PFCommandURLRequestConstructor.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFConfig+Synchronous.h b/iOS/Pods/Headers/Private/Parse/PFConfig+Synchronous.h
new file mode 120000
index 0000000..8de455f
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFConfig+Synchronous.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFConfig+Synchronous.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFConfig.h b/iOS/Pods/Headers/Private/Parse/PFConfig.h
new file mode 120000
index 0000000..919b834
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFConfig.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFConfig.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFConfigController.h b/iOS/Pods/Headers/Private/Parse/PFConfigController.h
new file mode 120000
index 0000000..354d1e5
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFConfigController.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Config/Controller/PFConfigController.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFConfig_Private.h b/iOS/Pods/Headers/Private/Parse/PFConfig_Private.h
new file mode 120000
index 0000000..64be7b4
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFConfig_Private.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Config/PFConfig_Private.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFConstants.h b/iOS/Pods/Headers/Private/Parse/PFConstants.h
new file mode 120000
index 0000000..3b96186
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFConstants.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFConstants.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFCoreDataProvider.h b/iOS/Pods/Headers/Private/Parse/PFCoreDataProvider.h
new file mode 120000
index 0000000..738cd66
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFCoreDataProvider.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PFCoreDataProvider.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFCoreManager.h b/iOS/Pods/Headers/Private/Parse/PFCoreManager.h
new file mode 120000
index 0000000..c856497
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFCoreManager.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PFCoreManager.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFCurrentConfigController.h b/iOS/Pods/Headers/Private/Parse/PFCurrentConfigController.h
new file mode 120000
index 0000000..aa2f13d
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFCurrentConfigController.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Config/Controller/PFCurrentConfigController.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFCurrentInstallationController.h b/iOS/Pods/Headers/Private/Parse/PFCurrentInstallationController.h
new file mode 120000
index 0000000..c935649
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFCurrentInstallationController.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Installation/CurrentInstallationController/PFCurrentInstallationController.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFCurrentObjectControlling.h b/iOS/Pods/Headers/Private/Parse/PFCurrentObjectControlling.h
new file mode 120000
index 0000000..0d5e144
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFCurrentObjectControlling.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Object/CurrentController/PFCurrentObjectControlling.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFCurrentUserController.h b/iOS/Pods/Headers/Private/Parse/PFCurrentUserController.h
new file mode 120000
index 0000000..4c70eaa
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFCurrentUserController.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/User/CurrentUserController/PFCurrentUserController.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFDataProvider.h b/iOS/Pods/Headers/Private/Parse/PFDataProvider.h
new file mode 120000
index 0000000..52db407
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFDataProvider.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PFDataProvider.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFDateFormatter.h b/iOS/Pods/Headers/Private/Parse/PFDateFormatter.h
new file mode 120000
index 0000000..14af49b
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFDateFormatter.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PFDateFormatter.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFDecoder.h b/iOS/Pods/Headers/Private/Parse/PFDecoder.h
new file mode 120000
index 0000000..e8ca6e2
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFDecoder.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PFDecoder.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFDefaultACLController.h b/iOS/Pods/Headers/Private/Parse/PFDefaultACLController.h
new file mode 120000
index 0000000..28ee2d0
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFDefaultACLController.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/ACL/DefaultACLController/PFDefaultACLController.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFDevice.h b/iOS/Pods/Headers/Private/Parse/PFDevice.h
new file mode 120000
index 0000000..45f3174
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFDevice.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PFDevice.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFEncoder.h b/iOS/Pods/Headers/Private/Parse/PFEncoder.h
new file mode 120000
index 0000000..ccfe72c
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFEncoder.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PFEncoder.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFErrorUtilities.h b/iOS/Pods/Headers/Private/Parse/PFErrorUtilities.h
new file mode 120000
index 0000000..6cc92b4
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFErrorUtilities.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PFErrorUtilities.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFEventuallyPin.h b/iOS/Pods/Headers/Private/Parse/PFEventuallyPin.h
new file mode 120000
index 0000000..d7914fd
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFEventuallyPin.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PFEventuallyPin.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFEventuallyQueue.h b/iOS/Pods/Headers/Private/Parse/PFEventuallyQueue.h
new file mode 120000
index 0000000..93c4119
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFEventuallyQueue.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PFEventuallyQueue.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFEventuallyQueue_Private.h b/iOS/Pods/Headers/Private/Parse/PFEventuallyQueue_Private.h
new file mode 120000
index 0000000..b7d09c4
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFEventuallyQueue_Private.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PFEventuallyQueue_Private.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFFieldOperation.h b/iOS/Pods/Headers/Private/Parse/PFFieldOperation.h
new file mode 120000
index 0000000..f0a3bab
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFFieldOperation.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/FieldOperation/PFFieldOperation.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFFieldOperationDecoder.h b/iOS/Pods/Headers/Private/Parse/PFFieldOperationDecoder.h
new file mode 120000
index 0000000..2cd60fe
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFFieldOperationDecoder.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/FieldOperation/PFFieldOperationDecoder.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFFile+Deprecated.h b/iOS/Pods/Headers/Private/Parse/PFFile+Deprecated.h
new file mode 120000
index 0000000..b80cf91
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFFile+Deprecated.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFFile+Deprecated.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFFile+Synchronous.h b/iOS/Pods/Headers/Private/Parse/PFFile+Synchronous.h
new file mode 120000
index 0000000..ceb1ad8
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFFile+Synchronous.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFFile+Synchronous.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFFile.h b/iOS/Pods/Headers/Private/Parse/PFFile.h
new file mode 120000
index 0000000..05ca154
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFFile.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFFile.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFFileController.h b/iOS/Pods/Headers/Private/Parse/PFFileController.h
new file mode 120000
index 0000000..8c0f296
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFFileController.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/File/Controller/PFFileController.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFFileDataStream.h b/iOS/Pods/Headers/Private/Parse/PFFileDataStream.h
new file mode 120000
index 0000000..54cbb17
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFFileDataStream.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/File/FileDataStream/PFFileDataStream.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFFileManager.h b/iOS/Pods/Headers/Private/Parse/PFFileManager.h
new file mode 120000
index 0000000..09a9757
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFFileManager.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PFFileManager.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFFilePersistenceGroup.h b/iOS/Pods/Headers/Private/Parse/PFFilePersistenceGroup.h
new file mode 120000
index 0000000..6073f9b
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFFilePersistenceGroup.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Persistence/Group/PFFilePersistenceGroup.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFFileStagingController.h b/iOS/Pods/Headers/Private/Parse/PFFileStagingController.h
new file mode 120000
index 0000000..af38d1e
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFFileStagingController.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/File/Controller/PFFileStagingController.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFFileState.h b/iOS/Pods/Headers/Private/Parse/PFFileState.h
new file mode 120000
index 0000000..f70310a
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFFileState.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/File/State/PFFileState.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFFileState_Private.h b/iOS/Pods/Headers/Private/Parse/PFFileState_Private.h
new file mode 120000
index 0000000..fd636fa
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFFileState_Private.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/File/State/PFFileState_Private.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFFile_Private.h b/iOS/Pods/Headers/Private/Parse/PFFile_Private.h
new file mode 120000
index 0000000..53b4a61
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFFile_Private.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/File/PFFile_Private.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFGeoPoint.h b/iOS/Pods/Headers/Private/Parse/PFGeoPoint.h
new file mode 120000
index 0000000..e9079fe
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFGeoPoint.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFGeoPoint.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFGeoPointPrivate.h b/iOS/Pods/Headers/Private/Parse/PFGeoPointPrivate.h
new file mode 120000
index 0000000..f151ab9
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFGeoPointPrivate.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PFGeoPointPrivate.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFHTTPRequest.h b/iOS/Pods/Headers/Private/Parse/PFHTTPRequest.h
new file mode 120000
index 0000000..578b9f2
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFHTTPRequest.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/HTTPRequest/PFHTTPRequest.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFHTTPURLRequestConstructor.h b/iOS/Pods/Headers/Private/Parse/PFHTTPURLRequestConstructor.h
new file mode 120000
index 0000000..f2e4304
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFHTTPURLRequestConstructor.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/HTTPRequest/PFHTTPURLRequestConstructor.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFHash.h b/iOS/Pods/Headers/Private/Parse/PFHash.h
new file mode 120000
index 0000000..ecea29b
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFHash.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PFHash.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFInstallation.h b/iOS/Pods/Headers/Private/Parse/PFInstallation.h
new file mode 120000
index 0000000..1f2d37a
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFInstallation.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFInstallation.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFInstallationConstants.h b/iOS/Pods/Headers/Private/Parse/PFInstallationConstants.h
new file mode 120000
index 0000000..a4ca8a6
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFInstallationConstants.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Installation/Constants/PFInstallationConstants.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFInstallationController.h b/iOS/Pods/Headers/Private/Parse/PFInstallationController.h
new file mode 120000
index 0000000..530f6c2
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFInstallationController.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Installation/Controller/PFInstallationController.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFInstallationIdentifierStore.h b/iOS/Pods/Headers/Private/Parse/PFInstallationIdentifierStore.h
new file mode 120000
index 0000000..827fb6c
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFInstallationIdentifierStore.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Installation/InstallationIdentifierStore/PFInstallationIdentifierStore.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFInstallationIdentifierStore_Private.h b/iOS/Pods/Headers/Private/Parse/PFInstallationIdentifierStore_Private.h
new file mode 120000
index 0000000..acff66f
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFInstallationIdentifierStore_Private.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Installation/InstallationIdentifierStore/PFInstallationIdentifierStore_Private.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFInstallationPrivate.h b/iOS/Pods/Headers/Private/Parse/PFInstallationPrivate.h
new file mode 120000
index 0000000..fc6ac83
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFInstallationPrivate.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Installation/PFInstallationPrivate.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFInternalUtils.h b/iOS/Pods/Headers/Private/Parse/PFInternalUtils.h
new file mode 120000
index 0000000..a0e19bf
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFInternalUtils.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PFInternalUtils.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFJSONSerialization.h b/iOS/Pods/Headers/Private/Parse/PFJSONSerialization.h
new file mode 120000
index 0000000..786edd6
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFJSONSerialization.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PFJSONSerialization.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFKeyValueCache.h b/iOS/Pods/Headers/Private/Parse/PFKeyValueCache.h
new file mode 120000
index 0000000..f68af04
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFKeyValueCache.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/KeyValueCache/PFKeyValueCache.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFKeyValueCache_Private.h b/iOS/Pods/Headers/Private/Parse/PFKeyValueCache_Private.h
new file mode 120000
index 0000000..d971da7
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFKeyValueCache_Private.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/KeyValueCache/PFKeyValueCache_Private.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFKeychainStore.h b/iOS/Pods/Headers/Private/Parse/PFKeychainStore.h
new file mode 120000
index 0000000..1609762
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFKeychainStore.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PFKeychainStore.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFLocationManager.h b/iOS/Pods/Headers/Private/Parse/PFLocationManager.h
new file mode 120000
index 0000000..c534560
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFLocationManager.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PFLocationManager.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFLogger.h b/iOS/Pods/Headers/Private/Parse/PFLogger.h
new file mode 120000
index 0000000..f100f88
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFLogger.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PFLogger.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFLogging.h b/iOS/Pods/Headers/Private/Parse/PFLogging.h
new file mode 120000
index 0000000..0957f9c
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFLogging.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PFLogging.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFMacros.h b/iOS/Pods/Headers/Private/Parse/PFMacros.h
new file mode 120000
index 0000000..be0a4a8
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFMacros.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PFMacros.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFMultiProcessFileLock.h b/iOS/Pods/Headers/Private/Parse/PFMultiProcessFileLock.h
new file mode 120000
index 0000000..d40b109
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFMultiProcessFileLock.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/MultiProcessLock/PFMultiProcessFileLock.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFMultiProcessFileLockController.h b/iOS/Pods/Headers/Private/Parse/PFMultiProcessFileLockController.h
new file mode 120000
index 0000000..8e59276
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFMultiProcessFileLockController.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/MultiProcessLock/PFMultiProcessFileLockController.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFMulticastDelegate.h b/iOS/Pods/Headers/Private/Parse/PFMulticastDelegate.h
new file mode 120000
index 0000000..c731e9b
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFMulticastDelegate.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PFMulticastDelegate.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFMutableACLState.h b/iOS/Pods/Headers/Private/Parse/PFMutableACLState.h
new file mode 120000
index 0000000..05bf135
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFMutableACLState.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/ACL/State/PFMutableACLState.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFMutableFileState.h b/iOS/Pods/Headers/Private/Parse/PFMutableFileState.h
new file mode 120000
index 0000000..d08ab4a
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFMutableFileState.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/File/State/PFMutableFileState.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFMutableObjectState.h b/iOS/Pods/Headers/Private/Parse/PFMutableObjectState.h
new file mode 120000
index 0000000..e715fb4
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFMutableObjectState.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Object/State/PFMutableObjectState.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFMutablePushState.h b/iOS/Pods/Headers/Private/Parse/PFMutablePushState.h
new file mode 120000
index 0000000..3fe0c5d
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFMutablePushState.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Push/State/PFMutablePushState.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFMutableQueryState.h b/iOS/Pods/Headers/Private/Parse/PFMutableQueryState.h
new file mode 120000
index 0000000..8e8c7a5
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFMutableQueryState.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Query/State/PFMutableQueryState.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFMutableRelationState.h b/iOS/Pods/Headers/Private/Parse/PFMutableRelationState.h
new file mode 120000
index 0000000..13a1999
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFMutableRelationState.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Relation/State/PFMutableRelationState.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFMutableUserState.h b/iOS/Pods/Headers/Private/Parse/PFMutableUserState.h
new file mode 120000
index 0000000..d5dbab7
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFMutableUserState.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/User/State/PFMutableUserState.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFNetworkActivityIndicatorManager.h b/iOS/Pods/Headers/Private/Parse/PFNetworkActivityIndicatorManager.h
new file mode 120000
index 0000000..1ae2fdb
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFNetworkActivityIndicatorManager.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFNetworkActivityIndicatorManager.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFNetworkCommand.h b/iOS/Pods/Headers/Private/Parse/PFNetworkCommand.h
new file mode 120000
index 0000000..2c8a391
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFNetworkCommand.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PFNetworkCommand.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFObject+Deprecated.h b/iOS/Pods/Headers/Private/Parse/PFObject+Deprecated.h
new file mode 120000
index 0000000..32421d4
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFObject+Deprecated.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFObject+Deprecated.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFObject+Subclass.h b/iOS/Pods/Headers/Private/Parse/PFObject+Subclass.h
new file mode 120000
index 0000000..ccbad16
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFObject+Subclass.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFObject+Subclass.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFObject+Synchronous.h b/iOS/Pods/Headers/Private/Parse/PFObject+Synchronous.h
new file mode 120000
index 0000000..a7baaf9
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFObject+Synchronous.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFObject+Synchronous.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFObject.h b/iOS/Pods/Headers/Private/Parse/PFObject.h
new file mode 120000
index 0000000..b00d5bb
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFObject.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFObject.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFObjectBatchController.h b/iOS/Pods/Headers/Private/Parse/PFObjectBatchController.h
new file mode 120000
index 0000000..ed0585f
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFObjectBatchController.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Object/BatchController/PFObjectBatchController.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFObjectConstants.h b/iOS/Pods/Headers/Private/Parse/PFObjectConstants.h
new file mode 120000
index 0000000..2834ef6
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFObjectConstants.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Object/Constants/PFObjectConstants.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFObjectController.h b/iOS/Pods/Headers/Private/Parse/PFObjectController.h
new file mode 120000
index 0000000..19d572b
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFObjectController.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Object/Controller/PFObjectController.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFObjectController_Private.h b/iOS/Pods/Headers/Private/Parse/PFObjectController_Private.h
new file mode 120000
index 0000000..3df14b2
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFObjectController_Private.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Object/Controller/PFObjectController_Private.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFObjectControlling.h b/iOS/Pods/Headers/Private/Parse/PFObjectControlling.h
new file mode 120000
index 0000000..facfd09
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFObjectControlling.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Object/Controller/PFObjectControlling.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFObjectEstimatedData.h b/iOS/Pods/Headers/Private/Parse/PFObjectEstimatedData.h
new file mode 120000
index 0000000..2627e92
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFObjectEstimatedData.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Object/EstimatedData/PFObjectEstimatedData.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFObjectFileCoder.h b/iOS/Pods/Headers/Private/Parse/PFObjectFileCoder.h
new file mode 120000
index 0000000..4d9fc61
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFObjectFileCoder.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Object/Coder/File/PFObjectFileCoder.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFObjectFileCodingLogic.h b/iOS/Pods/Headers/Private/Parse/PFObjectFileCodingLogic.h
new file mode 120000
index 0000000..c5bb3c6
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFObjectFileCodingLogic.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Object/Coder/File/PFObjectFileCodingLogic.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFObjectFilePersistenceController.h b/iOS/Pods/Headers/Private/Parse/PFObjectFilePersistenceController.h
new file mode 120000
index 0000000..b2f5bb6
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFObjectFilePersistenceController.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Object/FilePersistence/PFObjectFilePersistenceController.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFObjectLocalIdStore.h b/iOS/Pods/Headers/Private/Parse/PFObjectLocalIdStore.h
new file mode 120000
index 0000000..e2cbdf8
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFObjectLocalIdStore.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Object/LocalIdStore/PFObjectLocalIdStore.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFObjectPrivate.h b/iOS/Pods/Headers/Private/Parse/PFObjectPrivate.h
new file mode 120000
index 0000000..849167d
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFObjectPrivate.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Object/PFObjectPrivate.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFObjectState.h b/iOS/Pods/Headers/Private/Parse/PFObjectState.h
new file mode 120000
index 0000000..8835423
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFObjectState.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Object/State/PFObjectState.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFObjectState_Private.h b/iOS/Pods/Headers/Private/Parse/PFObjectState_Private.h
new file mode 120000
index 0000000..0068676
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFObjectState_Private.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Object/State/PFObjectState_Private.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFObjectSubclassInfo.h b/iOS/Pods/Headers/Private/Parse/PFObjectSubclassInfo.h
new file mode 120000
index 0000000..f408e73
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFObjectSubclassInfo.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Object/Subclassing/PFObjectSubclassInfo.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFObjectSubclassingController.h b/iOS/Pods/Headers/Private/Parse/PFObjectSubclassingController.h
new file mode 120000
index 0000000..6f54ea8
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFObjectSubclassingController.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Object/Subclassing/PFObjectSubclassingController.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFObjectUtilities.h b/iOS/Pods/Headers/Private/Parse/PFObjectUtilities.h
new file mode 120000
index 0000000..ca1e591
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFObjectUtilities.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Object/Utilities/PFObjectUtilities.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFOfflineObjectController.h b/iOS/Pods/Headers/Private/Parse/PFOfflineObjectController.h
new file mode 120000
index 0000000..2450581
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFOfflineObjectController.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Object/Controller/OfflineController/PFOfflineObjectController.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFOfflineQueryController.h b/iOS/Pods/Headers/Private/Parse/PFOfflineQueryController.h
new file mode 120000
index 0000000..61522e9
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFOfflineQueryController.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Query/Controller/PFOfflineQueryController.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFOfflineQueryLogic.h b/iOS/Pods/Headers/Private/Parse/PFOfflineQueryLogic.h
new file mode 120000
index 0000000..51de493
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFOfflineQueryLogic.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/LocalDataStore/OfflineQueryLogic/PFOfflineQueryLogic.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFOfflineStore.h b/iOS/Pods/Headers/Private/Parse/PFOfflineStore.h
new file mode 120000
index 0000000..e2a28d5
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFOfflineStore.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/LocalDataStore/OfflineStore/PFOfflineStore.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFOperationSet.h b/iOS/Pods/Headers/Private/Parse/PFOperationSet.h
new file mode 120000
index 0000000..b62dded
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFOperationSet.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Object/OperationSet/PFOperationSet.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFPaymentTransactionObserver.h b/iOS/Pods/Headers/Private/Parse/PFPaymentTransactionObserver.h
new file mode 120000
index 0000000..0cf1120
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFPaymentTransactionObserver.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Purchase/PaymentTransactionObserver/PFPaymentTransactionObserver.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFPaymentTransactionObserver_Private.h b/iOS/Pods/Headers/Private/Parse/PFPaymentTransactionObserver_Private.h
new file mode 120000
index 0000000..80578e3
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFPaymentTransactionObserver_Private.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Purchase/PaymentTransactionObserver/PFPaymentTransactionObserver_Private.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFPersistenceController.h b/iOS/Pods/Headers/Private/Parse/PFPersistenceController.h
new file mode 120000
index 0000000..6345f30
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFPersistenceController.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Persistence/PFPersistenceController.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFPersistenceGroup.h b/iOS/Pods/Headers/Private/Parse/PFPersistenceGroup.h
new file mode 120000
index 0000000..59ac869
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFPersistenceGroup.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Persistence/Group/PFPersistenceGroup.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFPin.h b/iOS/Pods/Headers/Private/Parse/PFPin.h
new file mode 120000
index 0000000..a7301b9
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFPin.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/LocalDataStore/Pin/PFPin.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFPinningEventuallyQueue.h b/iOS/Pods/Headers/Private/Parse/PFPinningEventuallyQueue.h
new file mode 120000
index 0000000..5481dca
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFPinningEventuallyQueue.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PFPinningEventuallyQueue.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFPinningObjectStore.h b/iOS/Pods/Headers/Private/Parse/PFPinningObjectStore.h
new file mode 120000
index 0000000..5ac2044
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFPinningObjectStore.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Object/PinningStore/PFPinningObjectStore.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFProduct+Private.h b/iOS/Pods/Headers/Private/Parse/PFProduct+Private.h
new file mode 120000
index 0000000..d698072
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFProduct+Private.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Product/PFProduct+Private.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFProduct.h b/iOS/Pods/Headers/Private/Parse/PFProduct.h
new file mode 120000
index 0000000..f4f4940
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFProduct.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFProduct.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFProductsRequestHandler.h b/iOS/Pods/Headers/Private/Parse/PFProductsRequestHandler.h
new file mode 120000
index 0000000..b06ea1d
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFProductsRequestHandler.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Product/ProductsRequestHandler/PFProductsRequestHandler.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFPropertyInfo.h b/iOS/Pods/Headers/Private/Parse/PFPropertyInfo.h
new file mode 120000
index 0000000..3571a7e
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFPropertyInfo.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PropertyInfo/PFPropertyInfo.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFPropertyInfo_Private.h b/iOS/Pods/Headers/Private/Parse/PFPropertyInfo_Private.h
new file mode 120000
index 0000000..3568406
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFPropertyInfo_Private.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PropertyInfo/PFPropertyInfo_Private.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFPropertyInfo_Runtime.h b/iOS/Pods/Headers/Private/Parse/PFPropertyInfo_Runtime.h
new file mode 120000
index 0000000..6c7c2b3
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFPropertyInfo_Runtime.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PropertyInfo/PFPropertyInfo_Runtime.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFPurchase.h b/iOS/Pods/Headers/Private/Parse/PFPurchase.h
new file mode 120000
index 0000000..8d7cb4a
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFPurchase.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFPurchase.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFPurchaseController.h b/iOS/Pods/Headers/Private/Parse/PFPurchaseController.h
new file mode 120000
index 0000000..91f42f4
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFPurchaseController.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Purchase/Controller/PFPurchaseController.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFPush+Deprecated.h b/iOS/Pods/Headers/Private/Parse/PFPush+Deprecated.h
new file mode 120000
index 0000000..3c0a3f9
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFPush+Deprecated.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFPush+Deprecated.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFPush+Synchronous.h b/iOS/Pods/Headers/Private/Parse/PFPush+Synchronous.h
new file mode 120000
index 0000000..c19bdf0
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFPush+Synchronous.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFPush+Synchronous.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFPush.h b/iOS/Pods/Headers/Private/Parse/PFPush.h
new file mode 120000
index 0000000..930cb47
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFPush.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFPush.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFPushChannelsController.h b/iOS/Pods/Headers/Private/Parse/PFPushChannelsController.h
new file mode 120000
index 0000000..84a2d30
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFPushChannelsController.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Push/ChannelsController/PFPushChannelsController.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFPushController.h b/iOS/Pods/Headers/Private/Parse/PFPushController.h
new file mode 120000
index 0000000..3f11f0e
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFPushController.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Push/Controller/PFPushController.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFPushManager.h b/iOS/Pods/Headers/Private/Parse/PFPushManager.h
new file mode 120000
index 0000000..04cbb0d
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFPushManager.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Push/Manager/PFPushManager.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFPushPrivate.h b/iOS/Pods/Headers/Private/Parse/PFPushPrivate.h
new file mode 120000
index 0000000..d25e5ff
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFPushPrivate.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Push/PFPushPrivate.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFPushState.h b/iOS/Pods/Headers/Private/Parse/PFPushState.h
new file mode 120000
index 0000000..686f491
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFPushState.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Push/State/PFPushState.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFPushState_Private.h b/iOS/Pods/Headers/Private/Parse/PFPushState_Private.h
new file mode 120000
index 0000000..87e61e5
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFPushState_Private.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Push/State/PFPushState_Private.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFPushUtilities.h b/iOS/Pods/Headers/Private/Parse/PFPushUtilities.h
new file mode 120000
index 0000000..e6460a3
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFPushUtilities.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Push/Utilites/PFPushUtilities.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFQuery+Deprecated.h b/iOS/Pods/Headers/Private/Parse/PFQuery+Deprecated.h
new file mode 120000
index 0000000..44a2ce7
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFQuery+Deprecated.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFQuery+Deprecated.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFQuery+Synchronous.h b/iOS/Pods/Headers/Private/Parse/PFQuery+Synchronous.h
new file mode 120000
index 0000000..3f92cdc
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFQuery+Synchronous.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFQuery+Synchronous.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFQuery.h b/iOS/Pods/Headers/Private/Parse/PFQuery.h
new file mode 120000
index 0000000..1ea0442
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFQuery.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFQuery.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFQueryController.h b/iOS/Pods/Headers/Private/Parse/PFQueryController.h
new file mode 120000
index 0000000..5635d68
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFQueryController.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Query/Controller/PFQueryController.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFQueryPrivate.h b/iOS/Pods/Headers/Private/Parse/PFQueryPrivate.h
new file mode 120000
index 0000000..2f1bf2f
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFQueryPrivate.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Query/PFQueryPrivate.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFQueryState.h b/iOS/Pods/Headers/Private/Parse/PFQueryState.h
new file mode 120000
index 0000000..381352e
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFQueryState.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Query/State/PFQueryState.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFQueryState_Private.h b/iOS/Pods/Headers/Private/Parse/PFQueryState_Private.h
new file mode 120000
index 0000000..97a6657
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFQueryState_Private.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Query/State/PFQueryState_Private.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFQueryUtilities.h b/iOS/Pods/Headers/Private/Parse/PFQueryUtilities.h
new file mode 120000
index 0000000..f5c92e2
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFQueryUtilities.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Query/Utilities/PFQueryUtilities.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFRESTAnalyticsCommand.h b/iOS/Pods/Headers/Private/Parse/PFRESTAnalyticsCommand.h
new file mode 120000
index 0000000..6fe355e
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFRESTAnalyticsCommand.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Commands/PFRESTAnalyticsCommand.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFRESTCloudCommand.h b/iOS/Pods/Headers/Private/Parse/PFRESTCloudCommand.h
new file mode 120000
index 0000000..46f5e1f
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFRESTCloudCommand.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Commands/PFRESTCloudCommand.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFRESTCommand.h b/iOS/Pods/Headers/Private/Parse/PFRESTCommand.h
new file mode 120000
index 0000000..4fe070b
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFRESTCommand.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Commands/PFRESTCommand.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFRESTCommand_Private.h b/iOS/Pods/Headers/Private/Parse/PFRESTCommand_Private.h
new file mode 120000
index 0000000..df23738
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFRESTCommand_Private.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Commands/PFRESTCommand_Private.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFRESTConfigCommand.h b/iOS/Pods/Headers/Private/Parse/PFRESTConfigCommand.h
new file mode 120000
index 0000000..f671a72
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFRESTConfigCommand.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Commands/PFRESTConfigCommand.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFRESTFileCommand.h b/iOS/Pods/Headers/Private/Parse/PFRESTFileCommand.h
new file mode 120000
index 0000000..e31ba58
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFRESTFileCommand.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Commands/PFRESTFileCommand.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFRESTObjectBatchCommand.h b/iOS/Pods/Headers/Private/Parse/PFRESTObjectBatchCommand.h
new file mode 120000
index 0000000..828b203
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFRESTObjectBatchCommand.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Commands/PFRESTObjectBatchCommand.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFRESTObjectCommand.h b/iOS/Pods/Headers/Private/Parse/PFRESTObjectCommand.h
new file mode 120000
index 0000000..7de026d
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFRESTObjectCommand.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Commands/PFRESTObjectCommand.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFRESTPushCommand.h b/iOS/Pods/Headers/Private/Parse/PFRESTPushCommand.h
new file mode 120000
index 0000000..d2a676e
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFRESTPushCommand.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Commands/PFRESTPushCommand.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFRESTQueryCommand.h b/iOS/Pods/Headers/Private/Parse/PFRESTQueryCommand.h
new file mode 120000
index 0000000..82f2793
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFRESTQueryCommand.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Commands/PFRESTQueryCommand.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFRESTSessionCommand.h b/iOS/Pods/Headers/Private/Parse/PFRESTSessionCommand.h
new file mode 120000
index 0000000..e3651cb
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFRESTSessionCommand.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Commands/PFRESTSessionCommand.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFRESTUserCommand.h b/iOS/Pods/Headers/Private/Parse/PFRESTUserCommand.h
new file mode 120000
index 0000000..9a13083
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFRESTUserCommand.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Commands/PFRESTUserCommand.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFReachability.h b/iOS/Pods/Headers/Private/Parse/PFReachability.h
new file mode 120000
index 0000000..ac4e8fa
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFReachability.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PFReachability.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFRelation.h b/iOS/Pods/Headers/Private/Parse/PFRelation.h
new file mode 120000
index 0000000..a3e8444
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFRelation.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFRelation.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFRelationPrivate.h b/iOS/Pods/Headers/Private/Parse/PFRelationPrivate.h
new file mode 120000
index 0000000..0115a6f
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFRelationPrivate.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Relation/PFRelationPrivate.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFRelationState.h b/iOS/Pods/Headers/Private/Parse/PFRelationState.h
new file mode 120000
index 0000000..f2659be
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFRelationState.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Relation/State/PFRelationState.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFRelationState_Private.h b/iOS/Pods/Headers/Private/Parse/PFRelationState_Private.h
new file mode 120000
index 0000000..ac2cfe1
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFRelationState_Private.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Relation/State/PFRelationState_Private.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFRole.h b/iOS/Pods/Headers/Private/Parse/PFRole.h
new file mode 120000
index 0000000..26cd86c
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFRole.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFRole.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFSQLiteDatabase.h b/iOS/Pods/Headers/Private/Parse/PFSQLiteDatabase.h
new file mode 120000
index 0000000..787b1e8
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFSQLiteDatabase.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/LocalDataStore/SQLite/PFSQLiteDatabase.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFSQLiteDatabaseController.h b/iOS/Pods/Headers/Private/Parse/PFSQLiteDatabaseController.h
new file mode 120000
index 0000000..37b616f
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFSQLiteDatabaseController.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/LocalDataStore/SQLite/PFSQLiteDatabaseController.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFSQLiteDatabaseResult.h b/iOS/Pods/Headers/Private/Parse/PFSQLiteDatabaseResult.h
new file mode 120000
index 0000000..a2c98a3
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFSQLiteDatabaseResult.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/LocalDataStore/SQLite/PFSQLiteDatabaseResult.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFSQLiteDatabase_Private.h b/iOS/Pods/Headers/Private/Parse/PFSQLiteDatabase_Private.h
new file mode 120000
index 0000000..3165b80
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFSQLiteDatabase_Private.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/LocalDataStore/SQLite/PFSQLiteDatabase_Private.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFSQLiteStatement.h b/iOS/Pods/Headers/Private/Parse/PFSQLiteStatement.h
new file mode 120000
index 0000000..3ef2050
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFSQLiteStatement.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/LocalDataStore/SQLite/PFSQLiteStatement.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFSession.h b/iOS/Pods/Headers/Private/Parse/PFSession.h
new file mode 120000
index 0000000..4c43360
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFSession.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFSession.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFSessionController.h b/iOS/Pods/Headers/Private/Parse/PFSessionController.h
new file mode 120000
index 0000000..19acd46
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFSessionController.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Session/Controller/PFSessionController.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFSessionUtilities.h b/iOS/Pods/Headers/Private/Parse/PFSessionUtilities.h
new file mode 120000
index 0000000..13ac6c5
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFSessionUtilities.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Session/Utilities/PFSessionUtilities.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFSession_Private.h b/iOS/Pods/Headers/Private/Parse/PFSession_Private.h
new file mode 120000
index 0000000..077e55a
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFSession_Private.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Session/PFSession_Private.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFSubclassing.h b/iOS/Pods/Headers/Private/Parse/PFSubclassing.h
new file mode 120000
index 0000000..901cadc
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFSubclassing.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFSubclassing.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFTaskQueue.h b/iOS/Pods/Headers/Private/Parse/PFTaskQueue.h
new file mode 120000
index 0000000..d7ccda7
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFTaskQueue.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PFTaskQueue.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFThreadsafety.h b/iOS/Pods/Headers/Private/Parse/PFThreadsafety.h
new file mode 120000
index 0000000..d670b07
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFThreadsafety.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/ThreadSafety/PFThreadsafety.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFURLConstructor.h b/iOS/Pods/Headers/Private/Parse/PFURLConstructor.h
new file mode 120000
index 0000000..6760b55
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFURLConstructor.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/HTTPRequest/PFURLConstructor.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFURLSession.h b/iOS/Pods/Headers/Private/Parse/PFURLSession.h
new file mode 120000
index 0000000..767bbbf
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFURLSession.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Commands/CommandRunner/URLSession/Session/PFURLSession.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFURLSessionCommandRunner.h b/iOS/Pods/Headers/Private/Parse/PFURLSessionCommandRunner.h
new file mode 120000
index 0000000..a5bcf23
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFURLSessionCommandRunner.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Commands/CommandRunner/URLSession/PFURLSessionCommandRunner.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFURLSessionCommandRunner_Private.h b/iOS/Pods/Headers/Private/Parse/PFURLSessionCommandRunner_Private.h
new file mode 120000
index 0000000..4079814
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFURLSessionCommandRunner_Private.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Commands/CommandRunner/URLSession/PFURLSessionCommandRunner_Private.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFURLSessionDataTaskDelegate.h b/iOS/Pods/Headers/Private/Parse/PFURLSessionDataTaskDelegate.h
new file mode 120000
index 0000000..c0c5ccb
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFURLSessionDataTaskDelegate.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Commands/CommandRunner/URLSession/Session/TaskDelegate/PFURLSessionDataTaskDelegate.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFURLSessionDataTaskDelegate_Private.h b/iOS/Pods/Headers/Private/Parse/PFURLSessionDataTaskDelegate_Private.h
new file mode 120000
index 0000000..8d6abcf
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFURLSessionDataTaskDelegate_Private.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Commands/CommandRunner/URLSession/Session/TaskDelegate/PFURLSessionDataTaskDelegate_Private.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFURLSessionFileDownloadTaskDelegate.h b/iOS/Pods/Headers/Private/Parse/PFURLSessionFileDownloadTaskDelegate.h
new file mode 120000
index 0000000..61d5d80
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFURLSessionFileDownloadTaskDelegate.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Commands/CommandRunner/URLSession/Session/TaskDelegate/PFURLSessionFileDownloadTaskDelegate.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFURLSessionJSONDataTaskDelegate.h b/iOS/Pods/Headers/Private/Parse/PFURLSessionJSONDataTaskDelegate.h
new file mode 120000
index 0000000..1933d5b
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFURLSessionJSONDataTaskDelegate.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Commands/CommandRunner/URLSession/Session/TaskDelegate/PFURLSessionJSONDataTaskDelegate.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFURLSessionUploadTaskDelegate.h b/iOS/Pods/Headers/Private/Parse/PFURLSessionUploadTaskDelegate.h
new file mode 120000
index 0000000..5327ead
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFURLSessionUploadTaskDelegate.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Commands/CommandRunner/URLSession/Session/TaskDelegate/PFURLSessionUploadTaskDelegate.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFURLSession_Private.h b/iOS/Pods/Headers/Private/Parse/PFURLSession_Private.h
new file mode 120000
index 0000000..d3c1649
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFURLSession_Private.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Commands/CommandRunner/URLSession/Session/PFURLSession_Private.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFUser+Deprecated.h b/iOS/Pods/Headers/Private/Parse/PFUser+Deprecated.h
new file mode 120000
index 0000000..cc3ce3e
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFUser+Deprecated.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFUser+Deprecated.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFUser+Synchronous.h b/iOS/Pods/Headers/Private/Parse/PFUser+Synchronous.h
new file mode 120000
index 0000000..ed409bc
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFUser+Synchronous.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFUser+Synchronous.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFUser.h b/iOS/Pods/Headers/Private/Parse/PFUser.h
new file mode 120000
index 0000000..01e4199
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFUser.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFUser.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFUserAuthenticationController.h b/iOS/Pods/Headers/Private/Parse/PFUserAuthenticationController.h
new file mode 120000
index 0000000..3b222ff
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFUserAuthenticationController.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/User/AuthenticationProviders/Controller/PFUserAuthenticationController.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFUserAuthenticationDelegate.h b/iOS/Pods/Headers/Private/Parse/PFUserAuthenticationDelegate.h
new file mode 120000
index 0000000..3b6b473
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFUserAuthenticationDelegate.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFUserAuthenticationDelegate.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFUserConstants.h b/iOS/Pods/Headers/Private/Parse/PFUserConstants.h
new file mode 120000
index 0000000..2ad9193
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFUserConstants.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/User/Constants/PFUserConstants.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFUserController.h b/iOS/Pods/Headers/Private/Parse/PFUserController.h
new file mode 120000
index 0000000..ed6c494
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFUserController.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/User/Controller/PFUserController.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFUserDefaultsPersistenceGroup.h b/iOS/Pods/Headers/Private/Parse/PFUserDefaultsPersistenceGroup.h
new file mode 120000
index 0000000..aaa4848
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFUserDefaultsPersistenceGroup.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Persistence/Group/PFUserDefaultsPersistenceGroup.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFUserFileCodingLogic.h b/iOS/Pods/Headers/Private/Parse/PFUserFileCodingLogic.h
new file mode 120000
index 0000000..ca0302d
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFUserFileCodingLogic.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/User/Coder/File/PFUserFileCodingLogic.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFUserPrivate.h b/iOS/Pods/Headers/Private/Parse/PFUserPrivate.h
new file mode 120000
index 0000000..114e09a
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFUserPrivate.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/User/PFUserPrivate.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFUserState.h b/iOS/Pods/Headers/Private/Parse/PFUserState.h
new file mode 120000
index 0000000..f18a548
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFUserState.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/User/State/PFUserState.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFUserState_Private.h b/iOS/Pods/Headers/Private/Parse/PFUserState_Private.h
new file mode 120000
index 0000000..b5b0d81
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFUserState_Private.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/User/State/PFUserState_Private.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/PFWeakValue.h b/iOS/Pods/Headers/Private/Parse/PFWeakValue.h
new file mode 120000
index 0000000..7cc66d2
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/PFWeakValue.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/PFWeakValue.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/Parse.h b/iOS/Pods/Headers/Private/Parse/Parse.h
new file mode 120000
index 0000000..699c11c
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/Parse.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Parse.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/ParseClientConfiguration.h b/iOS/Pods/Headers/Private/Parse/ParseClientConfiguration.h
new file mode 120000
index 0000000..5b14ff8
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/ParseClientConfiguration.h
@@ -0,0 +1 @@
+../../../Parse/Parse/ParseClientConfiguration.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/ParseClientConfiguration_Private.h b/iOS/Pods/Headers/Private/Parse/ParseClientConfiguration_Private.h
new file mode 120000
index 0000000..91f2a18
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/ParseClientConfiguration_Private.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/ParseClientConfiguration_Private.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/ParseInternal.h b/iOS/Pods/Headers/Private/Parse/ParseInternal.h
new file mode 120000
index 0000000..96a779a
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/ParseInternal.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/ParseInternal.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/ParseManager.h b/iOS/Pods/Headers/Private/Parse/ParseManager.h
new file mode 120000
index 0000000..1644f32
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/ParseManager.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/ParseManager.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/ParseModule.h b/iOS/Pods/Headers/Private/Parse/ParseModule.h
new file mode 120000
index 0000000..9f00abd
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/ParseModule.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/ParseModule.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Private/Parse/Parse_Private.h b/iOS/Pods/Headers/Private/Parse/Parse_Private.h
new file mode 120000
index 0000000..c149580
--- /dev/null
+++ b/iOS/Pods/Headers/Private/Parse/Parse_Private.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Internal/Parse_Private.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Bolts/BFCancellationToken.h b/iOS/Pods/Headers/Public/Bolts/BFCancellationToken.h
new file mode 120000
index 0000000..0b69486
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Bolts/BFCancellationToken.h
@@ -0,0 +1 @@
+../../../Bolts/Bolts/Common/BFCancellationToken.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Bolts/BFCancellationTokenRegistration.h b/iOS/Pods/Headers/Public/Bolts/BFCancellationTokenRegistration.h
new file mode 120000
index 0000000..c587ca7
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Bolts/BFCancellationTokenRegistration.h
@@ -0,0 +1 @@
+../../../Bolts/Bolts/Common/BFCancellationTokenRegistration.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Bolts/BFCancellationTokenSource.h b/iOS/Pods/Headers/Public/Bolts/BFCancellationTokenSource.h
new file mode 120000
index 0000000..d3d5985
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Bolts/BFCancellationTokenSource.h
@@ -0,0 +1 @@
+../../../Bolts/Bolts/Common/BFCancellationTokenSource.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Bolts/BFExecutor.h b/iOS/Pods/Headers/Public/Bolts/BFExecutor.h
new file mode 120000
index 0000000..c071e8c
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Bolts/BFExecutor.h
@@ -0,0 +1 @@
+../../../Bolts/Bolts/Common/BFExecutor.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Bolts/BFTask.h b/iOS/Pods/Headers/Public/Bolts/BFTask.h
new file mode 120000
index 0000000..5468334
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Bolts/BFTask.h
@@ -0,0 +1 @@
+../../../Bolts/Bolts/Common/BFTask.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Bolts/BFTaskCompletionSource.h b/iOS/Pods/Headers/Public/Bolts/BFTaskCompletionSource.h
new file mode 120000
index 0000000..c74760f
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Bolts/BFTaskCompletionSource.h
@@ -0,0 +1 @@
+../../../Bolts/Bolts/Common/BFTaskCompletionSource.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Bolts/Bolts.h b/iOS/Pods/Headers/Public/Bolts/Bolts.h
new file mode 120000
index 0000000..146ac6e
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Bolts/Bolts.h
@@ -0,0 +1 @@
+../../../Bolts/Bolts/Common/Bolts.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Bolts/BoltsVersion.h b/iOS/Pods/Headers/Public/Bolts/BoltsVersion.h
new file mode 120000
index 0000000..0fa0e2d
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Bolts/BoltsVersion.h
@@ -0,0 +1 @@
+../../../Bolts/Bolts/Common/BoltsVersion.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Parse/PFACL.h b/iOS/Pods/Headers/Public/Parse/PFACL.h
new file mode 120000
index 0000000..7c3c14f
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Parse/PFACL.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFACL.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Parse/PFAnalytics.h b/iOS/Pods/Headers/Public/Parse/PFAnalytics.h
new file mode 120000
index 0000000..7751f45
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Parse/PFAnalytics.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFAnalytics.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Parse/PFAnonymousUtils+Deprecated.h b/iOS/Pods/Headers/Public/Parse/PFAnonymousUtils+Deprecated.h
new file mode 120000
index 0000000..f263bed
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Parse/PFAnonymousUtils+Deprecated.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFAnonymousUtils+Deprecated.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Parse/PFAnonymousUtils.h b/iOS/Pods/Headers/Public/Parse/PFAnonymousUtils.h
new file mode 120000
index 0000000..7b9b437
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Parse/PFAnonymousUtils.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFAnonymousUtils.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Parse/PFCloud+Deprecated.h b/iOS/Pods/Headers/Public/Parse/PFCloud+Deprecated.h
new file mode 120000
index 0000000..6d17f8b
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Parse/PFCloud+Deprecated.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFCloud+Deprecated.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Parse/PFCloud+Synchronous.h b/iOS/Pods/Headers/Public/Parse/PFCloud+Synchronous.h
new file mode 120000
index 0000000..937840e
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Parse/PFCloud+Synchronous.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFCloud+Synchronous.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Parse/PFCloud.h b/iOS/Pods/Headers/Public/Parse/PFCloud.h
new file mode 120000
index 0000000..4070bb1
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Parse/PFCloud.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFCloud.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Parse/PFConfig+Synchronous.h b/iOS/Pods/Headers/Public/Parse/PFConfig+Synchronous.h
new file mode 120000
index 0000000..8de455f
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Parse/PFConfig+Synchronous.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFConfig+Synchronous.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Parse/PFConfig.h b/iOS/Pods/Headers/Public/Parse/PFConfig.h
new file mode 120000
index 0000000..919b834
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Parse/PFConfig.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFConfig.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Parse/PFConstants.h b/iOS/Pods/Headers/Public/Parse/PFConstants.h
new file mode 120000
index 0000000..3b96186
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Parse/PFConstants.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFConstants.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Parse/PFFile+Deprecated.h b/iOS/Pods/Headers/Public/Parse/PFFile+Deprecated.h
new file mode 120000
index 0000000..b80cf91
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Parse/PFFile+Deprecated.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFFile+Deprecated.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Parse/PFFile+Synchronous.h b/iOS/Pods/Headers/Public/Parse/PFFile+Synchronous.h
new file mode 120000
index 0000000..ceb1ad8
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Parse/PFFile+Synchronous.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFFile+Synchronous.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Parse/PFFile.h b/iOS/Pods/Headers/Public/Parse/PFFile.h
new file mode 120000
index 0000000..05ca154
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Parse/PFFile.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFFile.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Parse/PFGeoPoint.h b/iOS/Pods/Headers/Public/Parse/PFGeoPoint.h
new file mode 120000
index 0000000..e9079fe
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Parse/PFGeoPoint.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFGeoPoint.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Parse/PFInstallation.h b/iOS/Pods/Headers/Public/Parse/PFInstallation.h
new file mode 120000
index 0000000..1f2d37a
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Parse/PFInstallation.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFInstallation.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Parse/PFNetworkActivityIndicatorManager.h b/iOS/Pods/Headers/Public/Parse/PFNetworkActivityIndicatorManager.h
new file mode 120000
index 0000000..1ae2fdb
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Parse/PFNetworkActivityIndicatorManager.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFNetworkActivityIndicatorManager.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Parse/PFObject+Deprecated.h b/iOS/Pods/Headers/Public/Parse/PFObject+Deprecated.h
new file mode 120000
index 0000000..32421d4
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Parse/PFObject+Deprecated.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFObject+Deprecated.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Parse/PFObject+Subclass.h b/iOS/Pods/Headers/Public/Parse/PFObject+Subclass.h
new file mode 120000
index 0000000..ccbad16
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Parse/PFObject+Subclass.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFObject+Subclass.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Parse/PFObject+Synchronous.h b/iOS/Pods/Headers/Public/Parse/PFObject+Synchronous.h
new file mode 120000
index 0000000..a7baaf9
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Parse/PFObject+Synchronous.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFObject+Synchronous.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Parse/PFObject.h b/iOS/Pods/Headers/Public/Parse/PFObject.h
new file mode 120000
index 0000000..b00d5bb
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Parse/PFObject.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFObject.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Parse/PFProduct.h b/iOS/Pods/Headers/Public/Parse/PFProduct.h
new file mode 120000
index 0000000..f4f4940
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Parse/PFProduct.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFProduct.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Parse/PFPurchase.h b/iOS/Pods/Headers/Public/Parse/PFPurchase.h
new file mode 120000
index 0000000..8d7cb4a
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Parse/PFPurchase.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFPurchase.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Parse/PFPush+Deprecated.h b/iOS/Pods/Headers/Public/Parse/PFPush+Deprecated.h
new file mode 120000
index 0000000..3c0a3f9
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Parse/PFPush+Deprecated.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFPush+Deprecated.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Parse/PFPush+Synchronous.h b/iOS/Pods/Headers/Public/Parse/PFPush+Synchronous.h
new file mode 120000
index 0000000..c19bdf0
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Parse/PFPush+Synchronous.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFPush+Synchronous.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Parse/PFPush.h b/iOS/Pods/Headers/Public/Parse/PFPush.h
new file mode 120000
index 0000000..930cb47
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Parse/PFPush.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFPush.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Parse/PFQuery+Deprecated.h b/iOS/Pods/Headers/Public/Parse/PFQuery+Deprecated.h
new file mode 120000
index 0000000..44a2ce7
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Parse/PFQuery+Deprecated.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFQuery+Deprecated.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Parse/PFQuery+Synchronous.h b/iOS/Pods/Headers/Public/Parse/PFQuery+Synchronous.h
new file mode 120000
index 0000000..3f92cdc
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Parse/PFQuery+Synchronous.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFQuery+Synchronous.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Parse/PFQuery.h b/iOS/Pods/Headers/Public/Parse/PFQuery.h
new file mode 120000
index 0000000..1ea0442
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Parse/PFQuery.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFQuery.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Parse/PFRelation.h b/iOS/Pods/Headers/Public/Parse/PFRelation.h
new file mode 120000
index 0000000..a3e8444
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Parse/PFRelation.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFRelation.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Parse/PFRole.h b/iOS/Pods/Headers/Public/Parse/PFRole.h
new file mode 120000
index 0000000..26cd86c
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Parse/PFRole.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFRole.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Parse/PFSession.h b/iOS/Pods/Headers/Public/Parse/PFSession.h
new file mode 120000
index 0000000..4c43360
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Parse/PFSession.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFSession.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Parse/PFSubclassing.h b/iOS/Pods/Headers/Public/Parse/PFSubclassing.h
new file mode 120000
index 0000000..901cadc
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Parse/PFSubclassing.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFSubclassing.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Parse/PFUser+Deprecated.h b/iOS/Pods/Headers/Public/Parse/PFUser+Deprecated.h
new file mode 120000
index 0000000..cc3ce3e
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Parse/PFUser+Deprecated.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFUser+Deprecated.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Parse/PFUser+Synchronous.h b/iOS/Pods/Headers/Public/Parse/PFUser+Synchronous.h
new file mode 120000
index 0000000..ed409bc
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Parse/PFUser+Synchronous.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFUser+Synchronous.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Parse/PFUser.h b/iOS/Pods/Headers/Public/Parse/PFUser.h
new file mode 120000
index 0000000..01e4199
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Parse/PFUser.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFUser.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Parse/PFUserAuthenticationDelegate.h b/iOS/Pods/Headers/Public/Parse/PFUserAuthenticationDelegate.h
new file mode 120000
index 0000000..3b6b473
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Parse/PFUserAuthenticationDelegate.h
@@ -0,0 +1 @@
+../../../Parse/Parse/PFUserAuthenticationDelegate.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Parse/Parse.h b/iOS/Pods/Headers/Public/Parse/Parse.h
new file mode 120000
index 0000000..699c11c
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Parse/Parse.h
@@ -0,0 +1 @@
+../../../Parse/Parse/Parse.h
\ No newline at end of file
diff --git a/iOS/Pods/Headers/Public/Parse/ParseClientConfiguration.h b/iOS/Pods/Headers/Public/Parse/ParseClientConfiguration.h
new file mode 120000
index 0000000..5b14ff8
--- /dev/null
+++ b/iOS/Pods/Headers/Public/Parse/ParseClientConfiguration.h
@@ -0,0 +1 @@
+../../../Parse/Parse/ParseClientConfiguration.h
\ No newline at end of file
diff --git a/iOS/Pods/Manifest.lock b/iOS/Pods/Manifest.lock
new file mode 100644
index 0000000..4b3a050
--- /dev/null
+++ b/iOS/Pods/Manifest.lock
@@ -0,0 +1,13 @@
+PODS:
+ - Bolts/Tasks (1.6.0)
+ - Parse (1.12.0):
+ - Bolts/Tasks (~> 1.5)
+
+DEPENDENCIES:
+ - Parse
+
+SPEC CHECKSUMS:
+ Bolts: f52a250053bb517ca874523c3913776359ab3def
+ Parse: de2c52a9a1421b91ae7594ab8ce191afd184f19b
+
+COCOAPODS: 0.39.0
diff --git a/iOS/Pods/Parse/LICENSE b/iOS/Pods/Parse/LICENSE
new file mode 100644
index 0000000..d98b0e0
--- /dev/null
+++ b/iOS/Pods/Parse/LICENSE
@@ -0,0 +1,30 @@
+BSD License
+
+For Parse iOS/OSX SDK software
+
+Copyright (c) 2015-present, Parse, LLC. All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification,
+are permitted provided that the following conditions are met:
+
+ * Redistributions of source code must retain the above copyright notice, this
+ list of conditions and the following disclaimer.
+
+ * Redistributions in binary form must reproduce the above copyright notice,
+ this list of conditions and the following disclaimer in the documentation
+ and/or other materials provided with the distribution.
+
+ * Neither the name Parse nor the names of its contributors may be used to
+ endorse or promote products derived from this software without specific
+ prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/iOS/Pods/Parse/Parse/Internal/ACL/DefaultACLController/PFDefaultACLController.h b/iOS/Pods/Parse/Parse/Internal/ACL/DefaultACLController/PFDefaultACLController.h
new file mode 100644
index 0000000..c3abae7
--- /dev/null
+++ b/iOS/Pods/Parse/Parse/Internal/ACL/DefaultACLController/PFDefaultACLController.h
@@ -0,0 +1,57 @@
+/**
+ * Copyright (c) 2015-present, Parse, LLC.
+ * All rights reserved.
+ *
+ * This source code is licensed under the BSD-style license found in the
+ * LICENSE file in the root directory of this source tree. An additional grant
+ * of patent rights can be found in the PATENTS file in the same directory.
+ */
+
+#import
+
+#import
+
+#import "PFCoreDataProvider.h"
+
+@class BFTask<__covariant BFGenericType>;
+@class PFACL;
+
+NS_ASSUME_NONNULL_BEGIN
+
+@interface PFDefaultACLController : NSObject
+
+@property (nonatomic, weak, readonly) id