I'm unable to understand how Google Appindexin works on ios. I'll be more specific: In Google's Appindexing guide for Android they say we can put data in the activity, and Google will be able to index this content, for example:
public class MainActivity extends Activity {
private GoogleApiClient mClient;
private Uri mUrl;
private String mTitle;
private String mDescription;
@Override
protected void onCreate(Bundle savedInstanceState) {
mClient = new GoogleApiClient.Builder(this).addApi(AppIndex.API).build();
mUrl = "http://examplepetstore.com/dogs/standard-poodle";
mTitle = "Standard Poodle";
mDescription = "The Standard Poodle stands at least 18 inches at the withers";
}
My first question is how do we do the same in iOS? why don't they talk about it?
My second question is: At the end of the same Appindexing guide for ios they say You're all set! Once our crawlers discover the URLs in your association file, Google automatically begins indexing any existing or new HTTP URLs to your app. Does Google read the content of my application? In Android? iOS?