36.18 A Pinch Gesture Example Project
Select the Create New Project quick start option from the welcome screen and, within the resulting new project dialog, choose the Empty Activity template before clicking on the Next button.
Enter PinchExample into the Name field and specify com.ebookfrenzy.pinchexample as the package name. Before clicking on the Finish button, change the Minimum API level setting to API 26: Android 8.0 (Oreo) and the Language menu to Kotlin.
Locate and open the app -> Gradle Scripts - > build.gradle (Module: PinchExample.app) file in the project tool window and modify the plugins section so that reads as follows before clicking the Sync Now link in the toolbar to commit the change:
plugins {
id 'com.android.application
id 'kotlin-android'
id 'kotlin-android-extensions'
}
Within the activity_main.xml file, select the default TextView object...