Changes

Jump to: navigation, search

A Kotlin Android Studio App Links Tutorial

514 bytes added, 19:31, 29 November 2017
The Database Schema
The goal of this chapter is to enhance the app to add support for app linking so that URLs can be used to display specific landmark records within the app.
== The The Database Schema ==
The data for the example app is contained within a file named landmarks.db located in the app -> assets –> databases folder of the project hierarchy. The database contains a single table named locations, the structure of which is outlined in Table 80-7:
�{| class="wikitable"|-! Column !! Type !! Description|-| _id || String || The primary index, this column contains string values that uniquely identify the landmarks in the database.|-| title || String || The name of the landmark (e.g. London Bridge).|-| description || String || A description of the landmark.|-| personal || Boolean || Indicates whether the record is personal or public. This value is set to true for all records added by the user. Existing records provided with the database are set to false.|}


Navigation menu