Attributes: android:name
Attribute value: android.intent.action.MAIN
Attributes: android:name
Attribute value: android.intent.action.VIEW
Manifest:
{
   manifest:
      {
         uses-permission:
            [
               {
                  android:name:
                     android.permission.FOREGROUND_SERVICE
               },
               {
                  android:name:
                     android.permission.ACCESS_FINE_LOCATION
               }
            ],
         xmlns:android:
            http://schemas.android.com/apk/res/android,
         package:
            com.tourism.app,
         application:
            {
               android:icon:
                  @mipmap/ic_launcher,
               activity:
                  {
                     intent-filter:
                        {
                           action:
                              [
                                 {
                                    android:name:
                                       newValue
                                 },
                                 {
                                    android:name:
                                       newValue
                                 }
                              ],
                           category:
                              {
                                 android:name:
                                    android.intent.category.LAUNCHER
                              }
                        },
                     android:theme:
                        @style/AppTheme.NoActionBar,
                     android:label:
                        @string/app_name,
                     android:name:
                        .MainActivity
                  },
               android:allowBackup:
                  true,
               service:
                  {
                     android:enabled:
                        true,
                     android:exported:
                        false,
                     android:name:
                        .service.Track_Service
                  },
               android:supportsRtl:
                  true,
               android:theme:
                  @style/AppTheme,
               android:label:
                  @string/app_name,
               android:roundIcon:
                  @mipmap/ic_launcher_round,
               android:fullBackupContent:
                  true
            }
      }
}