| <?xml version="1.0" encoding="utf-8"?> |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| package="com.example.creation"> |
| <application |
| android:allowBackup="true" |
| android:icon="@mipmap/ic_launcher"> |
| <activity |
| android:name=".AnotherActivity" |
| android:label="@string/app_name" > |
| </activity> |
| <activity |
| android:name=".MainActivity" |
| android:label="@string/app_name" > |
| <intent-filter> |
| <action android:name="android.intent.action.VIEW" /> |
| <category android:name="android.intent.category.DEFAULT" /> |
| <category android:name="android.intent.category.BROWSABLE" /> |
| <data |
| android:host="www.example.com" |
| android:pathPrefix="/main" |
| android:scheme="http" /> |
| </intent-filter> |
| </activity> |
| <!-- ATTENTION: This was auto-generated to add Google Play services to your project for |
| App Indexing. See https://g.co/AppIndexing/AndroidStudio for more information. --> |
| <meta-data |
| android:name="com.google.android.gms.version" |
| android:value="@integer/google_play_services_version" /> |
| </application> |
| </manifest> |