blob: 9e0799694c7a7bfd9b9ba05e491ee7fdc8716c58 [file] [log] [blame]
Chuck Liaof6b4b192020-08-07 02:31:32 +08001/*
2 * Copyright (C) 2020 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package com.android.wallpaper.picker;
17
Wesley.CW Wang484cdf32020-09-25 19:18:51 +080018import static com.android.wallpaper.util.LaunchSourceUtils.LAUNCH_SOURCE_DEEP_LINK;
19import static com.android.wallpaper.util.LaunchSourceUtils.WALLPAPER_LAUNCH_SOURCE;
20
Chuck Liaof6b4b192020-08-07 02:31:32 +080021import android.app.Activity;
Wesley.CW Wang484cdf32020-09-25 19:18:51 +080022import android.content.Intent;
Chuck Liaof6b4b192020-08-07 02:31:32 +080023import android.os.Bundle;
24
25import androidx.annotation.Nullable;
26
27import com.android.wallpaper.module.InjectorProvider;
28
29/**
30 * An intermediate activity to redirect to a brand new target activity when the user clicks
31 * the url link to deep link.
32 */
33public class DeepLinkActivity extends Activity {
Wesley.CW Wang484cdf32020-09-25 19:18:51 +080034
Chuck Liaof6b4b192020-08-07 02:31:32 +080035 @Override
36 protected void onCreate(@Nullable Bundle savedInstanceState) {
37 super.onCreate(savedInstanceState);
38
Wesley.CW Wang484cdf32020-09-25 19:18:51 +080039 Intent intent = InjectorProvider.getInjector().getDeepLinkRedirectIntent(
40 this, getIntent().getData());
41 intent.putExtra(WALLPAPER_LAUNCH_SOURCE, LAUNCH_SOURCE_DEEP_LINK);
42
43 startActivity(intent);
Chuck Liaof6b4b192020-08-07 02:31:32 +080044 finish();
45 }
46}